/* ===== CSS VARIABLES & DESIGN TOKENS ===== */
:root {
    /* Colors */
    --navy-900: #0a1932;
    --navy-800: #0f2345;
    --navy-700: #142d58;
    --navy-600: #1b3a6b;
    --navy-500: #1e4d8c;
    --navy-400: #2a6cb5;
    --navy-300: #4a8ed4;

    --gold-500: #c9a84c;
    --gold-400: #d4b85c;
    --gold-300: #e0c96e;
    --gold-200: #ebd98c;
    --gold-100: #f5eabc;

    --cream-100: #faf8f2;
    --cream-200: #f0ece0;
    --cream-300: #e6e0d0;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-detail: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1280px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--cream-100);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.text-gold {
    color: var(--gold-500);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-ring {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold-500);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 24px;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-400);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out-expo);
}

#navbar.scrolled {
    background: rgba(10, 25, 50, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--gold-500);
    font-size: 1.4rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-detail);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--gold-400);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.35s var(--ease-out-expo);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 25, 50, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.6s var(--ease-out-expo);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 24px 0;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold-400);
}

/* ===== HERO SECTION ===== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 25, 50, 0.65) 0%,
        rgba(10, 25, 50, 0.45) 40%,
        rgba(10, 25, 50, 0.55) 70%,
        rgba(10, 25, 50, 0.85) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-detail);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 32px;
}

.badge-star {
    font-size: 0.6rem;
    opacity: 0.6;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.title-line:first-child {
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: white;
}

.title-line.accent {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    color: var(--gold-400);
    font-weight: 400;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.divider-icon {
    color: var(--gold-500);
    font-size: 0.7rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.06em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 60px;
    padding: 12px 36px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.cs-label {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cs-year {
    font-family: var(--font-detail);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: var(--gold-500);
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-detail);
    font-size: 0.82rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.hero-cta:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold-500);
    color: var(--gold-400);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS COMMON ===== */
.section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.section-dark {
    background: var(--navy-900);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-label {
    display: inline-block;
    font-family: var(--font-detail);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--gold-400);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--navy-800);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate-500);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-divider .divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--navy-300), transparent);
}

.section-divider .divider-line.gold {
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* ===== PARALLAX BACKGROUNDS ===== */
.parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 50, 0.88), rgba(15, 30, 60, 0.92));
}

.section-dark .container,
.coming-soon-section .container,
.partnerships-section .container {
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.about-text {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.8;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy-700);
    line-height: 1.65;
    margin-bottom: 24px;
}

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

.about-text strong {
    color: var(--navy-800);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out-expo);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-300);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy-800);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-unit {
    display: block;
    font-family: var(--font-detail);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-family: var(--font-detail);
    font-size: 0.78rem;
    color: var(--slate-400);
    font-weight: 400;
}

/* ===== MISSION CARDS ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-8px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--gold-400);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-400);
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 14px;
}

.mission-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== DIVISIONS SECTION ===== */
.division-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.division-showcase:last-child {
    margin-bottom: 0;
}

.division-showcase.reverse {
    direction: rtl;
}

.division-showcase.reverse > * {
    direction: ltr;
}

.division-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.division-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.division-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.division-tag {
    display: inline-block;
    font-family: var(--font-detail);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    background: rgba(201, 168, 76, 0.85);
    padding: 6px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.division-content {
    padding: 10px 0;
}

.division-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 500;
    color: var(--navy-800);
    margin-bottom: 16px;
}

.division-lead {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.division-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.division-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.feature-icon {
    color: var(--gold-500);
    font-size: 0.6rem;
    margin-top: 6px;
    flex-shrink: 0;
}

/* ===== PARTNERSHIPS ===== */
.partnerships-section {
    background: var(--navy-900);
    color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.partner-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}

.partner-item:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.partner-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 6px;
}

.partner-desc {
    font-family: var(--font-detail);
    font-size: 0.75rem;
    color: var(--gold-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.partners-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-weight: 300;
}

/* ===== LEADERSHIP ===== */
.leadership-category {
    margin-bottom: 56px;
}

.leadership-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy-700);
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-500);
    margin: 10px auto 0;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.leader-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-300);
}

.leader-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--gold-500);
}

.leader-avatar span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-400);
}

.leader-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
    line-height: 1.3;
}

.leader-role {
    font-family: var(--font-detail);
    font-size: 0.72rem;
    color: var(--slate-400);
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* ===== COMING SOON CTA ===== */
.coming-soon-section {
    text-align: center;
    background: var(--navy-900);
    color: white;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: white;
    margin: 16px 0 20px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Countdown */
.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 90px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-family: var(--font-detail);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-500);
    opacity: 0.5;
    font-weight: 300;
}

/* Notify Form */
.notify-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
    border-radius: 60px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.notify-form input {
    flex: 1;
    padding: 16px 28px;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-detail);
    font-size: 0.88rem;
    outline: none;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.notify-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--gold-500);
    border: none;
    color: var(--navy-900);
    font-family: var(--font-detail);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    background: var(--gold-400);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-900);
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 1.2rem;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
    max-width: 360px;
}

.footer-contact h4,
.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    font-weight: 300;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: white !important;
    font-weight: 500 !important;
}

.footer-phone svg {
    color: var(--gold-500);
}

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

.footer-links-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links-col a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.footer-legal {
    margin-top: 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.68rem !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s var(--ease-out-expo);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .division-showcase {
        grid-template-columns: 1fr;
    }

    .division-showcase.reverse {
        direction: ltr;
    }

    .division-image img {
        height: 320px;
    }

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

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

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

    .nav-toggle {
        display: block;
    }

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

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

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

    .countdown-container {
        flex-wrap: wrap;
        gap: 8px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-item {
        min-width: calc(50% - 8px);
        flex: 1;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .notify-form input {
        padding: 16px 20px;
    }

    .notify-form button {
        justify-content: center;
        padding: 14px 20px;
    }

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

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

    .hero-title .title-line:first-child {
        font-size: 3rem;
    }

    .hero-title .title-line.accent {
        font-size: 2.2rem;
    }

    .coming-soon-badge {
        flex-direction: column;
        gap: 10px;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .leaders-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .leader-card {
        padding: 20px 12px;
    }

    .leader-card h4 {
        font-size: 0.92rem;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}
