:root {
    /* Official PDF Brand Colors */
    --primary: #0B1F3A; /* Navy Blue */
    --secondary: #FFFFFF; /* White */
    --accent: #C8A24D; /* Gold */
    --accent-hover: #E5BE65; /* Lighter Gold */
    --font-family: 'Google Sans', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--secondary);
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 31, 58, 0.98); /* Deep Navy Blue */
    border-bottom: 1px solid rgba(200, 162, 77, 0.2); /* Subtle gold border */
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: var(--primary); /* Solid Navy Blue */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-container {
    height: 70px;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
    z-index: 1002;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent); /* Gold */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-subtle {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-link-subtle:hover {
    color: var(--accent);
}

.btn-nav {
    padding: 0.7rem 2rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002; /* ensure it stays above mobile menu */
    padding: 10px; /* larger tap target */
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px; /* Space for absolute stats on desktop */
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.tagline {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.display-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.action-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-solid {
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 162, 77, 0.4);
}

.btn-outline {
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* =========================================
   FLOATING STATS BAR
   ========================================= */
.stats-container {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--secondary);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
    overflow: hidden;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card .icon {
    font-size: 2.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
    .display-title { font-size: 3.5rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .stat-value { font-size: 1.2rem; }
}

@media (max-width: 968px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem 2rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-actions {
        flex-direction: row; /* Side by side on mobile */
        align-items: center;
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .nav-link-subtle { font-size: 0.95rem; }
    .btn-nav { padding: 0.6rem 1rem; font-size: 0.9rem; }

    .nav-links a { font-size: 1.2rem; }
    
    .display-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    /* Make stats static on tablet so they don't break out awkwardly */
    .hero {
        height: auto;
        padding-bottom: 60px;
    }
    
    .stats-container {
        position: static;
        margin-top: 4rem;
        padding: 0; 
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* darker shadow for contrast */
    }
    
    .stat-card {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .stat-card:nth-child(even) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .display-title { font-size: 1.8rem; } /* Text smaller to fit 2 lines */
    .tagline { font-size: 0.8rem; letter-spacing: 1px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 2rem; } /* Text smaller */
    
    .action-group { flex-direction: column; gap: 0.8rem; }
    /* Button height reduced */
    .btn-solid, .btn-outline { width: 100%; font-size: 1rem; padding: 0.8rem 1rem;} 
    
    /* Stats strictly one column on mobile to prevent squishing */
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { border-right: none; padding: 1.5rem; justify-content: flex-start; }
    .stat-info { text-align: left; }
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* =========================================
   ABOUT LCA SECTION
   ========================================= */
.about-section {
    background-color: var(--secondary);
    padding-top: 150px; /* Extra padding because of floating stats bar */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    padding: 20px 0 0 20px;
    max-width: 500px;
    margin: 0 auto;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80%;
    height: 90%;
    border: 4px solid var(--accent);
    border-radius: 8px;
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: var(--secondary);
    padding: 2rem;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--accent);
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0.5rem;
}

/* =========================================
   FEATURES (WHY CHOOSE LCA) SECTION
   ========================================= */
.features-section {
    background-color: #f8fafc; /* Very light slate for contrast */
}

.section-header {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.1);
    border-bottom: 3px solid var(--accent);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Section Responsive */
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrapper { margin-top: 2rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .about-section { padding-top: 100px; }
    .experience-badge { left: 0; bottom: -20px; padding: 1.5rem; }
}

/* =========================================
   OUR PROGRAMS SECTION (Modern Dark Glassmorphism)
   ========================================= */
.programs-section {
    background-color: var(--primary); /* Dark Navy Blue */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.text-white {
    color: var(--secondary) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.modern-card {
    background: rgba(255, 255, 255, 0.03); /* Glass background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.modern-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 162, 77, 0.3); /* Subtle gold border on hover */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.watermark {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 10rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    line-height: 1;
    transition: all 0.4s ease;
}

.modern-card:hover .watermark {
    color: rgba(200, 162, 77, 0.08); /* Gold hint on hover */
    transform: scale(1.05);
}

.program-age {
    display: inline-block;
    background: rgba(200, 162, 77, 0.15); /* Gold tint */
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(200, 162, 77, 0.2);
}

.elite-badge {
    background: var(--accent);
    color: var(--primary);
}

.modern-card h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.modern-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 1rem;
}

.highlight-modern {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.1) 0%, rgba(200, 162, 77, 0.02) 100%);
    border: 1px solid rgba(200, 162, 77, 0.3);
}

.highlight-modern:hover {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.15) 0%, rgba(200, 162, 77, 0.05) 100%);
    border-color: var(--accent);
}

.highlight-modern h3 {
    color: var(--accent);
}

@media (max-width: 968px) {
    .programs-grid { grid-template-columns: 1fr; }
    .modern-card { padding: 2.5rem; }
}
@media (max-width: 768px) {
    .modern-card h3 { font-size: 1.6rem; }
    .programs-section { padding: 80px 0; }
}

/* =========================================
   IMPACT / ACHIEVEMENTS SECTION
   ========================================= */
.impact-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary);
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    opacity: 0.15;
    z-index: 1;
}

.z-10 { z-index: 10; position: relative; }
.text-gold { color: var(--accent) !important; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.impact-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.impact-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-number .plus {
    color: var(--accent);
}

.impact-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =========================================
   PARENTS TRUST SECTION
   ========================================= */
.parents-section {
    background-color: #f8fafc;
    padding: 120px 0;
}

.trust-image-wrapper {
    position: relative;
    border-radius: 12px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.trust-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80%;
    height: 90%;
    background: rgba(11, 31, 58, 0.05);
    border-radius: 12px;
    z-index: 1;
}

.trust-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.safety-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent);
}

.safety-icon {
    font-size: 2.5rem;
}

.safety-text {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.trust-list {
    list-style: none;
    margin-top: 2rem;
}

.trust-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-list li strong {
    color: var(--primary);
}

.check-icon {
    color: var(--secondary);
    background: var(--accent);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 968px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .order-mobile-2 { order: 2; margin-top: 2rem; }
    .order-mobile-1 { order: 1; }
}

@media (max-width: 768px) {
    .impact-grid { grid-template-columns: 1fr; }
    .safety-badge { left: 0; top: -20px; }
}

/* =========================================
   CALL TO ACTION SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 100px 0;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta-solid {
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.4);
}

.btn-cta-outline {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #05101F; /* Extra dark navy */
    padding: 80px 0 30px 0;
    color: var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-address {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .cta-title { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cta-title { font-size: 2.2rem; }
    .cta-actions { flex-direction: column; }
    .btn-cta-solid, .btn-cta-outline { width: 100%; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================
   PAGE HERO (For inner pages like About Us)
   ========================================= */
.page-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    background-color: var(--primary);
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.95));
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
}

/* =========================================
   HISTORY & FOUNDER SECTIONS
   ========================================= */
.history-section {
    padding: 120px 0;
    background: var(--secondary);
}

.founder-section {
    padding: 120px 0;
    background: #f8fafc;
}

.founder-image {
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 90%;
    border: 4px solid var(--accent);
    border-radius: 12px;
    z-index: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.founder-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.founder-signature {
    margin-top: 2.5rem;
    font-size: 1.1rem;
}

.founder-signature strong {
    color: var(--primary);
    font-size: 1.3rem;
}

/* =========================================
   DEVELOPMENT PILLARS GRID
   ========================================= */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pillar-card {
    background: var(--secondary);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--accent);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.08);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pillar-list {
    list-style: none;
    text-align: left;
    padding-left: 10px;
}

.pillar-list li {
    padding: 1rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.pillar-list li:last-child {
    border-bottom: none;
}

.pillar-list li::before {
    content: '→';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* =========================================
   PLAYER JOURNEY TIMELINE
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 4px;
    background: rgba(11, 31, 58, 0.1);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 0 6px var(--secondary), 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.timeline-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-left: 4px solid transparent;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-left-color: var(--accent);
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-dot { left: 2px; width: 36px; height: 36px; font-size: 1rem; }
    .timeline-item { padding-left: 60px; }
    .timeline-content { padding: 1.5rem; }
}

/* =========================================
   COACHES SECTION
   ========================================= */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.coach-card {
    background: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.1);
}

.coach-img {
    height: 300px;
    overflow: hidden;
}

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

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

.coach-info {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.coach-card:hover .coach-info {
    border-bottom-color: var(--accent);
}

.coach-info h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.coach-role {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 968px) {
    .coaches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .coaches-grid { grid-template-columns: 1fr; }
    .coach-img { height: 350px; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--secondary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.1);
    background: var(--secondary);
}

textarea.form-control {
    resize: vertical;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    background: rgba(200, 162, 77, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-wrapper { order: 2; }
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrapper { padding: 2rem; }
}

/* =========================================
   APPLY FORM SECTION
   ========================================= */
.apply-container {
    max-width: 900px;
    margin: 60px auto 100px auto;
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 6px solid var(--accent);
}
.form-section-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(11, 31, 58, 0.1);
}
.form-section-title:first-child {
    margin-top: 0;
}
@media (max-width: 768px) {
    .apply-container { padding: 2rem; margin-top: 30px; }
    .form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
}
