/* ===========================================
   WCS Teachers Landing — Styles
   =========================================== */

/* CSS Variables */
:root {
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* Dark Theme (Night Mode - Default) */
:root, [data-theme="dark"] {
    /* Colors - Warm dark theme inspired by dance floor ambiance */
    --color-bg: #0a0908;
    --color-bg-elevated: #151311;
    --color-bg-card: #1a1815;
    --color-bg-card-hover: #211e1a;
    
    --color-text: #f5f2ed;
    --color-text-muted: #a39e94;
    --color-text-subtle: #6b665c;
    
    /* Accent - Warm amber/gold */
    --color-accent: #d4a853;
    --color-accent-light: #e8c678;
    --color-accent-dark: #b8923f;
    --color-accent-glow: rgba(212, 168, 83, 0.15);
    
    /* Secondary */
    --color-secondary: #8b3a3a;
    --color-secondary-light: #a84848;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a0908 0%, #1a1510 50%, #0a0908 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    --gradient-card: linear-gradient(180deg, var(--color-bg-card) 0%, rgba(26, 24, 21, 0.5) 100%);
    
    /* Fit section colors */
    --color-fit-yes-bg: rgba(76, 139, 76, 0.1);
    --color-fit-yes-border: rgba(76, 139, 76, 0.3);
    --color-fit-yes-text: #6ab06a;
    --color-fit-no-bg: rgba(139, 100, 76, 0.1);
    --color-fit-no-border: rgba(139, 100, 76, 0.3);
    --color-fit-no-text: #b08a6a;
}

/* Light Theme (Day Mode) */
[data-theme="light"] {
    /* Colors - Warm light orange theme */
    --color-bg: #fef9f3;
    --color-bg-elevated: #fff5eb;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #fff8f0;
    
    --color-text: #2d2418;
    --color-text-muted: #5c4d3d;
    --color-text-subtle: #8a7a68;
    
    /* Accent - Deeper orange for contrast on light bg */
    --color-accent: #c4842d;
    --color-accent-light: #d4a853;
    --color-accent-dark: #a66b1a;
    --color-accent-glow: rgba(196, 132, 45, 0.15);
    
    /* Secondary */
    --color-secondary: #a84848;
    --color-secondary-light: #c45858;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #fef9f3 0%, #fff5eb 50%, #fef9f3 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    --gradient-card: linear-gradient(180deg, var(--color-bg-card) 0%, rgba(255, 245, 235, 0.5) 100%);
    
    /* Fit section colors */
    --color-fit-yes-bg: rgba(76, 139, 76, 0.1);
    --color-fit-yes-border: rgba(76, 139, 76, 0.4);
    --color-fit-yes-text: #3d8b3d;
    --color-fit-no-bg: rgba(180, 120, 80, 0.1);
    --color-fit-no-border: rgba(180, 120, 80, 0.4);
    --color-fit-no-text: #8b5a2b;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--color-text-muted);
}

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

a:hover {
    color: var(--color-accent-light);
}

strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-bg);
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
    color: var(--color-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text-subtle);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-full {
    width: 100%;
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.lang-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: var(--radius-md);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    border-color: var(--color-accent);
}

.theme-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Show/hide icons based on theme */
[data-theme="dark"] .theme-icon-dark,
:root:not([data-theme="light"]) .theme-icon-dark {
    display: none;
}

[data-theme="dark"] .theme-icon-light,
:root:not([data-theme="light"]) .theme-icon-light {
    display: block;
}

[data-theme="light"] .theme-icon-light {
    display: none;
}

[data-theme="light"] .theme-icon-dark {
    display: block;
}

.lang-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.lang-link.active {
    color: var(--color-accent);
}

.lang-link:hover {
    color: var(--color-text);
}

.lang-divider {
    color: var(--color-text-subtle);
}

/* Sticky CTA - Bottom position for better mobile UX */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    padding: var(--space-sm);
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    width: 100%;
    max-width: 300px;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl) 0 var(--space-xl);
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--color-accent) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--color-accent) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.25rem;
    color: var(--color-text-muted);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text-subtle);
    font-size: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-subtle);
    border-bottom: 2px solid var(--color-text-subtle);
    transform: rotate(45deg);
}

/* ===========================================
   VIDEO SECTION
   =========================================== */
.video-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-elevated);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-card-main {
        grid-column: span 2;
    }
}

.video-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* ===========================================
   WHY WCS SECTION
   =========================================== */
.why-section {
    padding: var(--space-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-lg);
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.feature-title {
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.feature-text {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===========================================
   FOR TEACHERS SECTION
   =========================================== */
.teachers-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-elevated);
}

.teachers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 900px) {
    .teachers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.teachers-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-list {
    margin-top: var(--space-lg);
}

.benefit-list-icons {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.benefit-item-icon {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-item-icon:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateX(4px);
}

.benefit-icon-img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

@media (max-width: 600px) {
    .benefit-icon-img {
        width: 60px;
    }
    
    .benefit-item-icon {
        gap: var(--space-md);
    }
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 300;
}

.benefit-content h4 {
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.benefit-content p {
    font-size: 0.9375rem;
}

.teachers-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teachers-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--color-text-subtle);
}

.placeholder-icon {
    display: block;
    font-size: 4rem;
    margin-bottom: var(--space-sm);
}

.placeholder-text {
    font-size: 0.875rem;
}

/* ===========================================
   PROGRAM SECTION
   =========================================== */
.program-section {
    padding: var(--space-3xl) 0;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.program-card {
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.program-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 168, 83, 0.2);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.program-title {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.program-list {
    list-style: none;
}

.program-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.program-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.detail-card {
    padding: var(--space-md);
    background: rgba(212, 168, 83, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
}

.detail-card h4 {
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
}

.detail-card p {
    font-size: 0.9375rem;
}

/* ===========================================
   FIT SECTION
   =========================================== */
.fit-section {
    padding: var(--space-2xl) 0;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fit-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.fit-yes {
    background: var(--color-fit-yes-bg);
    border: 1px solid var(--color-fit-yes-border);
}

.fit-no {
    background: var(--color-fit-no-bg);
    border: 1px solid var(--color-fit-no-border);
}

.fit-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.fit-yes .fit-card-title {
    color: var(--color-fit-yes-text);
}

.fit-no .fit-card-title {
    color: var(--color-fit-no-text);
}

.fit-list {
    list-style: none;
}

.fit-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.fit-yes .fit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-fit-yes-text);
}

.fit-no .fit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-fit-no-text);
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-elevated);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: auto 1fr;
    }
}

.about-image-placeholder {
    width: 180px;
    height: 180px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bg);
    margin: 0 auto;
}

.about-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 3px solid var(--color-accent);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.2);
}

.benefits-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(212, 168, 83, 0.15));
}

.about-eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.about-name {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.about-role {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.about-bio p {
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.about-social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(212, 168, 83, 0.2);
    border-color: var(--color-accent);
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    cursor: pointer;
    list-style: none;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-text-muted);
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding-bottom: var(--space-md);
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===========================================
   APPLICATION FORM SECTION
   =========================================== */
.apply-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-elevated);
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .apply-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

.apply-text {
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
}

.apply-contact {
    padding: var(--space-md);
    background: rgba(212, 168, 83, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
}

.apply-contact p {
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.contact-link {
    font-weight: 500;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-subtle);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a39e94' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-sm) center;
    padding-right: var(--space-lg);
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

.apply-form .btn {
    margin-top: var(--space-sm);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-subtle);
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll animations */
.feature-card,
.program-card,
.benefit-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.animate,
.program-card.animate,
.benefit-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    :root {
        --space-3xl: 6rem;
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ===========================================
   FORM SUCCESS STATE
   =========================================== */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-xl);
}

.form-success.show {
    display: block;
}

.form-success-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.apply-form.hidden {
    display: none;
}

