/* =========================================
   IPES Huy - Intranet Premium Design System
   ========================================= */

:root {
    /* Province de Liège Colors */
    --color-red: #E30613;
    --color-red-hover: #C1040F;
    --color-red-light: rgba(227, 6, 19, 0.1);
    
    --color-orange: #F2A900;
    --color-orange-hover: #D99600;
    --color-orange-light: rgba(242, 169, 0, 0.1);
    
    /* Teal from new logo */
    --color-teal: #008C99;
    --color-teal-light: rgba(0, 140, 153, 0.1);
    
    /* Neutrals */
    --color-bg: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-text: #1E293B;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(227, 6, 19, 0.15);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Base
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* =========================================
   Typography & Utilities
   ========================================= */
.text-red { color: var(--color-red); }
.text-orange { color: var(--color-orange); }
.bg-red-light { background-color: var(--color-red-light); color: var(--color-red); }
.bg-orange-light { background-color: var(--color-orange-light); color: var(--color-orange); }
.bg-teal-light { background-color: var(--color-teal-light); color: var(--color-teal); }
.bg-gray-light { background-color: #F1F5F9; color: var(--color-text-muted); }
.text-teal { color: var(--color-teal); }
.text-sm { font-size: 0.875rem; color: var(--color-text-muted); }
.p-0 { padding: 0 !important; }

/* =========================================
   Layout
   ========================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.bg-light-gradient {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(227,6,19,0.03) 100%);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-2-1 { grid-template-columns: 1.5fr 1fr; gap: 4rem; }

@media (max-width: 992px) {
    .grid-2-1 { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================
   Background Shapes (Premium Aesthetic)
   ========================================= */
.bg-shape {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}
.bg-shape-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--color-red-light) 0%, transparent 70%);
}
.bg-shape-2 {
    top: 20%; right: -20%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--color-teal-light) 0%, transparent 70%);
}

/* =========================================
   Header & Navigation
   ========================================= */
.glass-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: all var(--transition-fast);
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.brand-text h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.01em;
}

.brand-text .subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width var(--transition-fast);
}

.nav-link:not(.btn-primary):hover {
    color: var(--color-orange);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: block; }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red) 0%, #B9000A 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 6, 19, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-orange-light);
    color: var(--color-orange);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 576px) {
    .hero-actions { flex-direction: column; }
}

/* =========================================
   Cards & Glassmorphism
   ========================================= */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.9);
}

/* =========================================
   Sections General
   ========================================= */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-icon {
    width: 32px;
    height: 32px;
}

.section-title {
    font-size: 2rem;
}

/* =========================================
   News Slider Carousel & Cards
   ========================================= */
.news-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slider-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.slider-arrow-btn:hover {
    background: var(--color-red);
    color: #ffffff;
    border-color: var(--color-red);
    transform: scale(1.06);
    box-shadow: var(--shadow-md);
}

.news-carousel-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.75rem 0;
    margin: 0 -0.5rem;
    padding: 0.75rem 0.5rem;
}

.news-carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    gap: 1.5rem;
}

/* Individual Slide Container */
.news-slide-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
    box-sizing: border-box;
    display: flex;
}

@media (max-width: 992px) {
    .news-slide-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .news-slide-item {
        flex: 0 0 100%;
    }
}

.news-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    padding: 0;
}

.news-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--color-red);
}

/* News Cards */
.news-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.news-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img {
    transform: scale(1.06);
}

.news-photo-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    color: var(--color-text);
}

.news-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-red);
    margin-top: auto;
    font-size: 0.9rem;
}
.news-link:hover {
    color: var(--color-red-hover);
    gap: 0.75rem;
}

/* Pop-up Modal (Affichage Grand Format) */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.news-modal-box {
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 2.25rem;
}

.news-modal-overlay.active .news-modal-box {
    transform: scale(1);
}

.news-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.news-modal-close:hover {
    background: var(--color-red);
    color: #ffffff;
    transform: rotate(90deg) scale(1.05);
}

.popup-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.popup-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.popup-desc {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.popup-gallery-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.popup-gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
}

.popup-gallery-item {
    height: 105px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.popup-gallery-item:hover {
    border-color: var(--color-red);
    transform: scale(1.04);
}

.popup-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   Facebook-style Lightbox Photo Viewer
   ========================================= */
.fb-lightbox-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    user-select: none;
}

.fb-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Top bar with counter, title and close */
.fb-lightbox-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 10;
}

.fb-lightbox-counter {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.fb-lightbox-title {
    color: #f8fafc;
    font-size: 1.05rem;
    font-weight: 600;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.fb-lightbox-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.fb-lightbox-close:hover {
    background: var(--color-red);
    transform: rotate(90deg) scale(1.08);
}

/* Main stage */
.fb-lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.fb-lightbox-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 72vh;
    padding: 0 1rem;
}

.fb-lightbox-img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
    animation: fbZoomIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fbZoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.fb-lightbox-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    z-index: 10;
    flex-shrink: 0;
}

.fb-lightbox-nav:hover {
    background: var(--color-red);
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
}

/* Bottom thumbnail strip */
.fb-lightbox-bottom {
    padding: 1.25rem 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 10;
}

.fb-lightbox-thumbnails {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.fb-thumb-item {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.fb-thumb-item:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.fb-thumb-item.active {
    opacity: 1;
    border-color: var(--color-red);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.5);
}

.fb-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   Informations
   ========================================= */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.info-card .link {
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* =========================================
   Documents List
   ========================================= */
.doc-list {
    list-style: none;
}

.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
}

.doc-item:last-child {
    border-bottom: none;
}

.doc-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.doc-info-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-grow: 1;
    cursor: pointer;
    color: inherit;
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.doc-icon {
    color: var(--color-red);
    transition: transform var(--transition-fast);
}

.doc-info-link:hover .doc-icon {
    transform: scale(1.1);
}

.doc-name {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.doc-info-link:hover .doc-name {
    color: var(--color-red);
}

.doc-size {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
}

.doc-download {
    color: var(--color-text-muted);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    background: var(--color-bg);
}

.doc-item:hover .doc-download {
    color: var(--color-red);
    background: var(--color-red-light);
}

/* =========================================
   Agenda Carousel
   ========================================= */
.agenda-carousel-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.75rem 0;
    margin: 0 -0.5rem;
    padding: 0.75rem 0.5rem;
}

.agenda-carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    gap: 1.5rem;
}

.agenda-slide-item {
    flex: 0 0 100%;
    box-sizing: border-box;
    display: flex;
}

.agenda-card {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda-date {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.agenda-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.agenda-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.agenda-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #0F172A;
    color: white;
    padding: 4rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; }
}

.footer-logo {
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: white;
    padding: 2px;
}

.footer-brand p {
    color: #94A3B8;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94A3B8;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-contact p {
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #64748B;
    font-size: 0.875rem;
}

/* =========================================
   Animations
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
