/**
 * ACADNI - Main Stylesheet
 * Association des Commissionnaires Agrees en Douane du Niger
 * Design: Institutional, Professional, Modern
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --parchment: #F3EDE4;
    --navy: #1A2A3A;
    --navy-light: #2A4055;
    --brand-red: #E63B2E;
    --brand-red-dark: #c92d21;
    --gold: #C9A227;
    --gold-light: #ddb94f;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --border: #D5CFC6;
    --success: #2E7D4F;
    --warning: #D4A017;
    --danger: #C0392B;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --nav-height: 72px;
    --nav-height-mobile: 64px;
    --max-width: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 100px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 48px rgba(0,0,0,0.16);

    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-enter: 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 16px);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--parchment);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================
   SKIP LINK (ACCESSIBILITY)
   ========================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    z-index: 10000;
    transition: top var(--transition-base);
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}

/* ==========================================
   FLASH MESSAGES
   ========================================== */
.flash-message {
    position: fixed;
    top: calc(var(--nav-height) + 16px);
    right: 16px;
    z-index: 9999;
    max-width: 400px;
    animation: flashSlideIn 300ms ease;
}

@keyframes flashSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border-left: 4px solid var(--brand-red);
}

.flash-success .flash-content { border-left-color: var(--success); }
.flash-error .flash-content { border-left-color: var(--danger); }
.flash-info .flash-content { border-left-color: var(--navy); }

.flash-content i {
    font-size: 20px;
    flex-shrink: 0;
}
.flash-success i { color: var(--success); }
.flash-error i { color: var(--danger); }
.flash-info i { color: var(--navy); }

.flash-close {
    margin-left: auto;
    font-size: 20px;
    color: var(--text-secondary);
    padding: 4px;
    line-height: 1;
    transition: color var(--transition-fast);
}
.flash-close:hover { color: var(--text-primary); }

/* ==========================================
   NAVIGATION
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(243, 237, 228, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 42, 58, 0.08);
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-acadni {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 200px;
    line-height: 1.3;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background var(--transition-base);
}

.nav-link:hover {
    color: var(--brand-red);
    background: rgba(230, 59, 46, 0.04);
}

.nav-item.active > .nav-link {
    color: var(--brand-red);
}

.nav-item.active > .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand-red);
    border-radius: 1px;
}

.nav-arrow {
    font-size: 10px;
    transition: transform var(--transition-base);
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--navy);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: var(--brand-red);
    background: var(--cream);
}

/* CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: background var(--transition-base), transform var(--transition-base);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--brand-red);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    padding: 24px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-close {
    font-size: 28px;
    color: var(--navy);
    padding: 4px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--brand-red);
    background: var(--cream);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 42, 58, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.mobile-overlay.active {
    opacity: 1;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand-red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(230, 59, 46, 0.25);
}

.btn-primary:hover {
    background: var(--brand-red-dark);
    box-shadow: 0 6px 20px rgba(230, 59, 46, 0.35);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--navy-light);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

/* ==========================================
   TYPOGRAPHY HELPERS
   ========================================== */
.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 560px;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.4) 50%, rgba(26, 42, 58, 0.2) 100%);
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    color: var(--white);
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms 300ms, transform 700ms 300ms;
}

.hero-slide.active .hero-slide-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-desc {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: opacity 700ms 500ms, transform 700ms 500ms;
}

.hero-slide.active .hero-slide-desc {
    opacity: 0.9;
    transform: translateY(0);
}

.hero-slide-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms 700ms, transform 700ms 700ms;
}

.hero-slide.active .hero-slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--brand-red);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all var(--transition-base);
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Scroll chevron */
.scroll-chevron {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}


/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.section {
    padding: var(--section-padding) 32px;
}

.section-parchment { background: var(--parchment); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-red { background: var(--brand-red); color: var(--white); }

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   ABOUT / PRESENTATION SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-top: 20px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 16px;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--gold);
    opacity: 0.4;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(250, 247, 242, 0.8);
}

/* ==========================================
   BENTO GRID (MISSIONS)
   ========================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
    color: var(--brand-red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   CONTENT CARDS
   ========================================== */
.content-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   DOCUMENT CARDS
   ========================================== */
.document-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.document-card:hover {
    background: var(--cream);
    border-left: 3px solid var(--brand-red);
    padding-left: 17px;
}

.document-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--white);
}

.document-icon.pdf { background: var(--brand-red); }
.document-icon.word { background: var(--navy); }
.document-icon.excel { background: var(--success); }
.document-icon.image { background: var(--gold); }
.document-icon.default { background: var(--text-secondary); }

.document-content {
    flex: 1;
    min-width: 0;
}

.document-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.document-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.document-category {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.document-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.document-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.document-btn.download {
    background: var(--brand-red);
    color: var(--white);
}

.document-btn.download:hover {
    background: var(--brand-red-dark);
}

.document-btn.preview {
    border: 1px solid var(--border);
    color: var(--navy);
    background: transparent;
}

.document-btn.preview:hover {
    border-color: var(--navy);
}

/* ==========================================
   NEWS CARDS
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-body {
    padding: 20px;
}

.news-category {
    display: inline-block;
    padding: 3px 10px;
    background: var(--brand-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.news-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-red);
    transition: gap var(--transition-fast);
}

.news-link:hover {
    gap: 10px;
}

/* ==========================================
   PAGE HEADER BANNER
   ========================================== */
.page-banner {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--nav-height);
    background: var(--navy);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.02) 20px,
        rgba(255,255,255,0.02) 21px
    );
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner-breadcrumb {
    font-size: 13px;
    color: var(--gold);
}

.page-banner-breadcrumb a:hover {
    text-decoration: underline;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter var(--transition-slow);
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
    text-align: center;
    padding: 56px 24px;
}

.cta-band .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--navy);
    color: var(--cream);
    padding: 64px 32px 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    gap: 32px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-address i {
    color: var(--gold);
    width: 20px;
}

.footer-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.85;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-contact-item {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-contact-item a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--cream);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--brand-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.7;
}

/* ==========================================
   SECTION ENTRANCE ANIMATIONS
   ========================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-enter), transform var(--transition-enter);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 560ms; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item + .stat-item::before {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slide-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
        --nav-height: 64px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-tagline {
        display: none;
    }

    .section {
        padding: var(--section-padding) 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 480px;
    }

    .hero-slide-title {
        font-size: 32px;
    }

    .hero-slide-desc {
        font-size: 15px;
    }

    .hero-slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-slide-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        height: 280px;
    }

    .page-banner-title {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .slider-arrow {
        display: none !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-slide-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .site-header,
    .site-footer,
    .slider-controls,
    .scroll-chevron,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}
