/* ============================================================
   NAKDEF — ZIJIN Akyem Development Foundation
   Landing Page Styles
   Colors: Teal #0D7377 | Gold #F4C430 | Charcoal #1E293B
============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary:       #0D7377;
    --primary-dark:  #095D61;
    --primary-light: #14919B;
    --accent:        #F4C430;
    --accent-dark:   #D4A820;
    --bg:            #F8FAFC;
    --text:          #1E293B;
    --text-light:    #64748B;
    --white:         #FFFFFF;
    --success:       #10B981;
    --danger:        #EF4444;
    --border:        #E2E8F0;
    --shadow:        0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg:     0 20px 40px rgba(0,0,0,0.12);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-badge {
    display: inline-block;
    background: rgba(13,115,119,0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
}
.section-header p { color: var(--text-light); font-size: 1rem; }

.gold-text { color: #4DD9E0; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244,196,48,0.45);
}

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.75);
    color: var(--white);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-primary-light {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-primary-light:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline-light {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ===== PLACEHOLDERS ===== */
.hero-img-placeholder,
.img-placeholder,
.gallery-placeholder,
.testi-photo-placeholder,
.video-thumb {
    background: linear-gradient(135deg, #dde3ec 0%, #c8d3e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    gap: 8px;
    width: 100%;
    height: 100%;
}
.hero-img-placeholder i { font-size: 3.5rem; color: rgba(255,255,255,0.25); }
.hero-img-placeholder span { font-size: 0.9rem; color: rgba(255,255,255,0.35); }
.img-placeholder i, .gallery-placeholder i { font-size: 2rem; }
.img-placeholder span, .gallery-placeholder span { font-size: 0.75rem; text-align: center; padding: 0 8px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 14px 0;
}
.navbar .container { display: flex; align-items: center; gap: 32px; }

.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.logo-placeholder {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.7rem;
    color: var(--primary-dark);
    border: 3px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.logo-placeholder.small { width: 42px; height: 42px; font-size: 0.6rem; }

.logo-img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.logo-img.logo-img-sm { width: 42px; height: 42px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 700; font-size: 1rem; color: var(--white); transition: var(--transition); }
.brand-sub  { font-size: 0.65rem; color: rgba(255,255,255,0.75); transition: var(--transition); }
.navbar.scrolled .brand-name { color: var(--primary); }
.navbar.scrolled .brand-sub  { color: var(--text-light); }

.nav-links { display: flex; list-style: none; gap: 28px; flex: 1; justify-content: center; }
.nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 0.875rem; font-weight: 500;
    transition: var(--transition);
    position: relative; padding-bottom: 2px;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.lang-switcher { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.navbar.scrolled .lang-switcher { color: var(--border); }

.lang-btn {
    background: none; border: none; cursor: pointer;
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    padding: 3px 5px; border-radius: 4px;
    transition: var(--transition);
}
.navbar.scrolled .lang-btn { color: var(--text-light); }
.lang-btn.active, .lang-btn:hover { color: var(--accent) !important; }

.btn-apply {
    background: var(--accent); color: var(--text);
    padding: 10px 24px; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
    transition: var(--transition);
}
.btn-apply:hover { background: var(--accent-dark); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed; top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: var(--white); z-index: 1100;
    padding: 70px 32px 32px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 1050; opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

.mobile-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--bg); border: none; cursor: pointer;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text); font-size: 1rem;
    transition: var(--transition);
}
.mobile-close:hover { background: var(--border); }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a { color: var(--text); font-weight: 500; font-size: 1rem; transition: var(--transition); }
.mobile-menu a:hover { color: var(--primary); }

.mobile-lang { display: flex; align-items: center; gap: 8px; }
.mobile-lang .lang-btn { color: var(--text-light) !important; }
.mobile-lang span { color: var(--border); }

.btn-apply-mobile {
    display: block; text-align: center;
    background: var(--accent); color: var(--text) !important;
    padding: 14px; border-radius: 50px;
    font-weight: 700;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: none;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0%   { transform: scale(1)    translateX(0)    translateY(0); }
    100% { transform: scale(1.08) translateX(-1%)  translateY(-1%); }
}

/* Placeholder for each slide before images are added */
.slide-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; color: rgba(255,255,255,0.25);
}
.slide-placeholder:nth-child(1) { background: linear-gradient(135deg, #063d40 0%, #0D7377 100%); }

/* Give each placeholder a slightly different teal shade so they're distinct */
.hero-slide:nth-child(1) .slide-placeholder { background: linear-gradient(135deg, #063d40 0%, #0D7377 100%); }
.hero-slide:nth-child(2) .slide-placeholder { background: linear-gradient(135deg, #095D61 0%, #14919B 100%); }
.hero-slide:nth-child(3) .slide-placeholder { background: linear-gradient(135deg, #0a2e30 0%, #0D7377 100%); }
.slide-placeholder i    { font-size: 3.5rem; }
.slide-placeholder span { font-size: 0.9rem; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,40,42,0.60) 0%, rgba(13,115,119,0.30) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 720px; padding: 130px 24px 90px;
    margin: 0 auto; text-align: center; width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;
    padding: 8px 22px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600;
    margin-bottom: 24px; letter-spacing: 1px;
}

.hero-title {
    font-size: 3.6rem; font-weight: 800;
    color: var(--white); line-height: 1.2;
    margin-bottom: 22px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.84);
    font-size: 1.1rem; margin-bottom: 42px;
    max-width: 560px; margin-left: auto; margin-right: auto;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 64px; flex-wrap: wrap; }

.hero-stats {
    display: flex; align-items: center;
    gap: 0; justify-content: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 20px 40px; flex-wrap: wrap;
    max-width: 500px; margin: 0 auto;
}
.hero-stat { text-align: center; flex: 1; min-width: 100px; padding: 8px 16px; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

.scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot {
    width: 28px; height: 46px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 14px; position: relative;
}
.scroll-dot::after {
    content: ''; position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px;
    background: var(--accent); border-radius: 50%;
    animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
    0%   { top: 6px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

/* ============================================================
   ABOUT
============================================================ */
.about { padding: 110px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-content .section-badge { margin-bottom: 12px; }
.about-content p { color: var(--text-light); margin-bottom: 18px; font-size: 0.975rem; line-height: 1.85; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 36px; }
.feature { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; color: var(--text); }
.feature i { color: var(--primary); font-size: 1rem; width: 22px; flex-shrink: 0; }

.about-image { position: relative; height: 520px; }
.img-placeholder.main { height: 390px; border-radius: var(--radius-lg); }
.img-placeholder.small-img {
    position: absolute; bottom: 0; right: -24px;
    width: 185px; height: 185px;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.about-badge-float {
    position: absolute; top: 24px; left: -24px;
    background: var(--primary); color: var(--white);
    padding: 18px 22px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge-float strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.about-badge-float span { font-size: 0.72rem; opacity: 0.85; }

/* ============================================================
   STATS
============================================================ */
.stats { background: var(--primary); padding: 90px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-card { text-align: center; color: var(--white); }
.stat-card i { font-size: 2.4rem; color: var(--accent); margin-bottom: 16px; display: block; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-number::after { content: '+'; font-size: 2rem; }
.stat-label { color: rgba(255,255,255,0.78); font-size: 0.875rem; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { padding: 110px 0; background: var(--bg); }
.steps-grid { display: flex; align-items: flex-start; gap: 16px; }

.step-card {
    flex: 1; background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 28px; text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.step-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: var(--transition);
    transform-origin: left;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.step-number {
    font-size: 4rem; font-weight: 800;
    color: rgba(13,115,119,0.08);
    position: absolute; top: 12px; right: 16px;
    line-height: 1; user-select: none;
}
.step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
}
.step-icon i { font-size: 1.8rem; color: var(--white); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.75; }

.step-arrow { color: var(--accent); font-size: 1.4rem; flex-shrink: 0; margin-top: 80px; }

/* ============================================================
   ELIGIBILITY
============================================================ */
.eligibility { padding: 110px 0; background: var(--white); }
.eligibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }

.elig-card {
    background: var(--bg); border-radius: var(--radius-lg);
    padding: 40px 24px; text-align: center;
    transition: var(--transition); border: 2px solid transparent;
}
.elig-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.elig-icon {
    width: 66px; height: 66px;
    background: rgba(13,115,119,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.elig-icon i { font-size: 1.6rem; color: var(--primary); }
.elig-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.elig-card p { color: var(--text-light); font-size: 0.85rem; line-height: 1.75; }

.elig-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 56px; border-radius: var(--radius-lg);
    color: var(--white);
}
.elig-cta p { font-size: 1.2rem; margin-bottom: 28px; opacity: 0.9; }

/* ============================================================
   GALLERY
============================================================ */
.gallery { padding: 110px 0; background: var(--bg); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 14px;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-placeholder { transition: transform 0.4s ease; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,40,42,0.82) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 18px;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: var(--white); font-weight: 600; font-size: 0.875rem; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { padding: 110px 0; background: var(--white); }

.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--border);
    transition: var(--transition);
    display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(13,115,119,0.2); }

.testi-top { display: flex; align-items: center; justify-content: space-between; }
.testi-photo-placeholder {
    width: 66px; height: 66px; border-radius: 50%;
    border: 3px solid var(--primary); flex-shrink: 0;
}
.testi-photo-placeholder i { font-size: 1.8rem; }
.testi-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; }
.testi-quote { color: var(--text-light); font-size: 0.875rem; line-height: 1.85; font-style: italic; flex: 1; }
.testi-name { display: block; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.testi-community { font-size: 0.78rem; color: var(--primary); font-weight: 500; }

.testi-video-placeholder {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: var(--white);
    border-radius: var(--radius); border: 1px solid var(--border);
    cursor: pointer; transition: var(--transition);
}
.testi-video-placeholder:hover { border-color: var(--primary); background: rgba(13,115,119,0.04); }
.video-thumb { width: 52px; height: 38px; border-radius: 6px; flex-shrink: 0; }
.video-thumb i { font-size: 1rem; }
.video-play-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.video-play-btn:hover { background: var(--primary-dark); transform: scale(1.1); }
.video-play-btn i { color: var(--white); font-size: 0.7rem; margin-left: 2px; }
.testi-video-placeholder > span { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 44px; }
.slider-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--border); background: var(--white);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); color: var(--text); font-size: 0.9rem;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 110px 0; background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition);
}
.faq-item:hover { border-color: rgba(13,115,119,0.25); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 15px rgba(13,115,119,0.1); }

.faq-question {
    width: 100%; padding: 20px 24px;
    background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--text); text-align: left; gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-question i { flex-shrink: 0; color: var(--primary); transition: transform 0.3s ease; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 250px; }
.faq-answer p { padding: 0 24px 22px; color: var(--text-light); font-size: 0.9rem; line-height: 1.85; }

/* ============================================================
   CTA
============================================================ */
.cta-section {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.cta-content { text-align: center; color: var(--white); }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #0a1628; color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--white); font-size: 0.95rem; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.55); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.85; margin-bottom: 22px; }
.footer-lang { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-lang .lang-btn { color: rgba(255,255,255,0.55) !important; }

.footer-links h4, .footer-contact h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 22px; color: var(--white); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-item i { color: var(--accent); font-size: 0.875rem; margin-top: 3px; flex-shrink: 0; }
.contact-item span { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ============================================================
   VIDEO MODAL
============================================================ */
.modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.82); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal.open { opacity: 1; visibility: visible; }
.modal-content {
    background: #1e293b; border-radius: var(--radius-lg);
    width: 90%; max-width: 680px;
    position: relative; overflow: hidden;
}
.modal-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,0.12); border: none;
    color: var(--white); width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.22); }
.modal-video-placeholder {
    width: 100%; height: 380px;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); gap: 16px;
}
.modal-video-placeholder i { font-size: 4rem; color: rgba(255,255,255,0.15); }
.modal-video-placeholder p { font-size: 0.95rem; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .about-grid { gap: 48px; }
    .eligibility-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .testimonial-card { min-width: calc(50% - 12px); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; }
    .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }

    .hero-title { font-size: 2.4rem; }
    .hero-stats { padding: 16px 20px; }
    .hero-stat-divider { display: none; }
    .hero-stat { min-width: 80px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image { height: 320px; }
    .about-badge-float { left: 0; }
    .img-placeholder.small-img { right: 0; }

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

    .steps-grid { flex-direction: column; gap: 12px; }
    .step-arrow { transform: rotate(90deg); align-self: center; margin-top: 0; }

    .eligibility-grid { grid-template-columns: 1fr; }
    .elig-cta { padding: 36px 24px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }

    .testimonial-card { min-width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-title { font-size: 1.85rem; }
    .cta-content h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item { height: 200px; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
    .hero-actions { flex-direction: column; align-items: center; }
}
