/* Fonts */
@font-face {
    font-family: 'Gotham Bold';
    src: url('fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('fonts/Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Exo';
    src: url('fonts/Exo-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Exo';
    src: url('fonts/Exo-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    /* Velocity Vortex Color System */
    --primary: #38ADE1; /* Sky Blue (The Origin) */
    --primary-dark: #2a8ab5;
    --primary-light: #7ecdf1;
    --secondary: #FF0000; /* Vibrant Red (The Destination) */
    --secondary-hover: #cc0000;
    --accent: #060444; /* Cockpit Deep Blue (Foundation) */
    --text-dark: #060444;
    --text-body: #1f2937;
    --text-muted: #6b7280;
    --bg-white: #FFFFFF;
    --bg-light: #f3f7fa;
    --bg-soft: #eef2f6;
    --vortex-gradient: linear-gradient(45deg, #38ADE1, #FF0000);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px 0;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham Book', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Gotham Bold', 'Montserrat', sans-serif;
    font-weight: bold;
    color: var(--text-dark);
    text-transform: capitalize;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px; /* Fully rounded buttons */
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--secondary); /* Default red border for all buttons as requested */
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--bg-white); /* White border on hover for contrast */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-ghost:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
    border-color: var(--secondary);
}

/* Global Layout Elements */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-body);
}

.section-header-left {
    text-align: left;
    margin-bottom: 50px;
}

.section-tag {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header-left h2 {
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

/* Hero Section - Short & Sample Matched */
.hero {
    position: relative;
    background: linear-gradient(rgba(6, 4, 68, 0.65), rgba(6, 4, 68, 0.5)), url('/IMG_1025.JPG.jpeg');
    background-size: cover;
    background-position: right top;
    color: var(--bg-white);
    min-height: 70vh; /* Reduced height for 'short' feel */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    border-bottom: 4px solid;
    border-image: var(--vortex-gradient) 1; /* Gradient border bottom for Hero */
}

/* Wide Screen Adjustment for Hero Focal Point */
@media (min-width: 992px) {
    .hero {
        background-position: right -100px;
    }
}

.hero-content {
    max-width: 850px;
    padding: 0 40px;
    margin-left: 5%;
    animation: fadeInUp 1s ease-out;
}

.hero-welcome {
    display: block;
    font-family: 'Gotham Bold', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-light);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 3.5rem; /* Reduced from 5rem to be more like H3 scale relative to the page */
    line-height: 1.0;
    margin: 0 0 30px 0;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.4rem;
    max-width: 650px;
    line-height: 1.4;
    margin: 0 0 50px 0;
    opacity: 0.95;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

.btn-brand {
    border-radius: 4px !important; /* Blocky buttons like sample */
    padding: 16px 36px;
    font-size: 1.1rem;
    text-transform: none;
    min-width: 180px;
}

.badge {
    display: none; /* Replaced by hero-welcome */
}

/* Grids */
.course-grid, .testimonial-grid, .services-grid, .join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Header Re-alignment */
.header {
    background-color: transparent; /* Transparent initially */
    backdrop-filter: none;
    position: absolute; /* Float over hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    color: var(--bg-white);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(6, 4, 68, 0.9); /* Glassmorphic deep blue on scroll */
    backdrop-filter: blur(10px);
    position: sticky;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px; /* Slightly taller for more breath */
}

.logo-image {
    height: 60px; /* Larger logo */
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */ /* Removed to show original logo colors */
    transition: var(--transition);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}



/* Course Cards */
.course-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid var(--primary); /* Sky Blue accent */
}

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

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.course-content p {
    margin-bottom: 20px;
    color: var(--text-body);
}

.course-btn {
    margin-top: auto;
}

/* About Us Section */
.about-us {
    padding: var(--section-padding);
}

.about-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.about-block {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-soft);
}

/* Service Teasers */
.service-teaser {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-box i {
    width: 28px;
    height: 28px;
}

.benefit-list-mini {
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list-mini li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-list-mini i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.about-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary); /* Vibrant Red on hover */
}

/* About Summary Grid (Homepage) */
.about-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-summary-text p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--text-body);
}

.image-frame-vortex {
    position: relative;
    padding: 15px;
}

.image-frame-vortex::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid;
    border-image: var(--vortex-gradient) 1;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 20px;
}

.image-frame-vortex img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* White text for subpages */
.about-detailed, 
.highlights-gallery {
    color: #FFFFFF;
    background-color: var(--accent); /* Deep blue background for white text */
}

.about-detailed h2,
.about-detailed h3,
.about-detailed p,
.about-detailed li,
.about-detailed i,
.highlights-gallery h2,
.highlights-gallery p {
    color: #FFFFFF !important;
}

.about-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Page Hero (Sub-pages) */
.page-hero {
    min-height: 40vh;
    background: var(--accent);
    display: flex;
    align-items: center;
    padding-top: 100px;
    border-bottom: 4px solid;
    border-image: var(--vortex-gradient) 1;
    position: relative;
}

.page-hero .hero-content h1,
.page-hero .hero-content .hero-welcome,
.page-hero .hero-content .hero-sub {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.7));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero {
    background: url('/IMG_1025.JPG.jpeg');
    background-size: cover;
    background-position: center top;
}

@media (min-width: 992px) {
    .about-hero {
        background-position: center -100px;
    }
}

.highlights-hero {
    background: url('/Gemini_Generated_Image_vvfcdkvvfcdkvvfc.png');
    background-size: cover;
    background-position: center;
}

.highlights-gallery {
    padding: var(--section-padding);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.highlight-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4 / 3;
}

.highlight-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.about-detailed {
    padding: var(--section-padding);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-body);
}

.cta-mini-left {
    margin-top: 32px;
}


.about-block i {
    width: 60px;
    height: 60px;
    color: var(--secondary); /* Vibrant Red for icons */
    margin-bottom: 24px;
}

/* Consultation Section */
.consultation {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.consultation-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.consultation-card i {
    width: 50px;
    height: 50px;
    color: var(--primary); /* Sky Blue for icons */
    margin-bottom: 24px;
}

/* Sky Dream Section */
.sky-dream {
    padding: var(--section-padding);
}

.sky-dream-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sky-dream-image {
    position: relative;
}

.sky-dream-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.sky-dream-image span {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary); /* Sky Blue for checkmarks */
}

/* Community Detailed */
.community-detailed {
    padding: var(--section-padding);
    background-color: var(--bg-soft);
}

.community-banner {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 32px;
    padding: 60px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.community-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

@media (max-width: 640px) {
    .community-benefits {
        grid-template-columns: 1fr;
    }
}

.community-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* Facilitators */
.facilitators, .coaches {
    padding: var(--section-padding);
}

.facilitator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.facilitator-card {
    background: var(--bg-white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

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

.fac-image-frame {
    padding: 24px 24px 0;
}

.fac-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50% !important; /* Forces perfect circle */
    border: 4px solid var(--bg-soft);
    transition: var(--transition);
}

.facilitator-card:hover .fac-image {
    border-color: var(--primary);
}

.fac-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.facilitator-card:hover .fac-image img {
    transform: scale(1.1);
}

.fac-info {
    padding: 30px;
}

.fac-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.fac-info p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-read-bio {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: var(--transition);
}

.btn-read-bio:hover {
    gap: 10px;
    color: var(--secondary);
}

.impact {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-soft);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modal Stylings */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(6, 4, 68, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--bg-white);
    margin: 2% auto;
    width: 100%;
    max-width: 900px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--accent);
    cursor: pointer;
    z-index: 20;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-body-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

.modal-image {
    background: var(--bg-soft);
}

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

.modal-text {
    padding: 80px 60px;
}

.modal-text h3 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.modal-text p#modalTitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.bio-full-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-body);
}

@media (max-width: 850px) {
    .modal-body-content {
        grid-template-columns: 1fr;
    }
    .modal-image {
        height: 400px;
    }
    .modal-text {
        padding: 50px 40px;
    }
}


/* CEO Spotlight */
.ceo-spotlight {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.ceo-text span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.ceo-frame {
    position: relative;
    padding: 20px;
}

.ceo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-top: 10px solid var(--accent);
    border-left: 10px solid var(--accent);
    border-radius: 40px 0 0 0;
}

.ceo-frame img {
    width: 100%;
    border-radius: 30px;
}

/* Who Can Join */
.who-can-join {
    padding: var(--section-padding);
}

.join-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid var(--bg-soft);
    transition: var(--transition);
}

.join-card:hover {
    border-color: var(--primary);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--bg-soft);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #FFB300;
}

.rating i {
    width: 18px;
    height: 18px;
    fill: #FFB300;
}

/* Video Section */
.video-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* FAQ Accordion */
.faq {
    padding: var(--section-padding);
}

.faq-item {
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid transparent;
}

.faq-item.active {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px;
    max-height: 500px;
}

/* Contact Section (Homepage) */
.contact {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 40px; /* Reduced from 80px */
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 22px;
    height: 22px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--accent);
}

.contact-text p {
    font-size: 1rem;
    color: var(--text-muted);
}

.contact-form-container {
    flex: 1.2;
    min-width: 320px;
    background: var(--bg-light);
    padding: 40px; /* Reduced from 50px */
    border-radius: 24px;
    border: 1px solid var(--bg-soft);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-underline {
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin-bottom: 16px;
}

.form-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56, 173, 225, 0.1);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: #0c095e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.full-width {
    width: 100%;
}

/* CTA Card */
.cta {
    padding: var(--section-padding);
    background: var(--vortex-gradient);
    color: var(--bg-white);
    text-align: center;
}

/* Footer Section */
.footer {
    background-color: var(--accent); /* Cockpit Deep Blue */
    padding: 80px 0 40px;
    color: var(--bg-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Media Queries */
@media (max-width: 992px) {
    :root { --section-padding: 60px 0; }
    .about-grid, .sky-dream-grid, .ceo-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links, .check-list li { justify-content: center; }
    .hero-text-side { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-actions { display: none; }

    /* Centering Layout Improvements */
    .about-summary-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .cta-mini-left {
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .service-teaser {
        align-items: center;
        text-align: center;
    }

    .service-icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-list-mini {
        align-items: center;
    }
    
    /* Hero Responsiveness Fix */
    .hero {
        justify-content: flex-start;
        text-align: left;
        min-height: 60vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 20px;
        margin-left: 0;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem; /* Reduced scale for mobile */
        margin-bottom: 20px;
    }
    
    .hero-sub {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .hero-btns {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; /* Revert to left-aligned */
        width: 100%;
        gap: 12px;
    }
    
    .btn-brand {
        width: 100%;
        max-width: 300px;
    }

    .contact-grid {
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        width: 100%;
        min-width: auto;
    }

    .contact-info {
        min-width: auto;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: var(--bg-white);
        padding: 40px;
        box-shadow: var(--shadow-lg);
        gap: 20px;
    }

    .nav-links.active a {
        color: var(--text-dark); /* Ensure text is visible on white background */
    }
    .mobile-menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .about-grid-refined, .course-grid, .testimonial-grid, .services-grid, .join-grid, .footer-grid, .video-grid { grid-template-columns: 1fr; }
    .footer-grid { text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text-side h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
}

/* School Outreach Card */
.school-outreach-card {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.school-outreach-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--vortex-gradient);
    opacity: 0.05;
    z-index: 0;
}

.outreach-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.outreach-text h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.outreach-text h3 span {
    color: var(--secondary);
}

.outreach-text p {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 600px;
}

@media (max-width: 768px) {
    .outreach-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .outreach-text h3 {
        font-size: 1.5rem;
    }
}

/* Course Launch Section */
.course-launch {
    padding: var(--section-padding);
    background-color: var(--bg-white);
    overflow: hidden;
}

.launch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.launch-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.launch-image img:hover {
    transform: scale(1.02);
}

.launch-details h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.launch-details h2 span {
    color: var(--primary);
}

.launch-desc {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 30px;
}

.launch-features {
    margin-bottom: 40px;
}

.launch-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.launch-features i {
    color: var(--primary);
}

/* Launch Modal */
.launch-modal {
    display: none;
    position: fixed;
    z-index: 10001; /* Above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 4, 68, 0.062); /* Very transparent background */
    backdrop-filter: blur(4px);
    overflow: auto;
    animation: fadeInModal 0.4s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.launch-modal-content {
    position: relative;
    background-color: transparent;
    margin: 5% auto;
    padding: 0;
    width: 70%;
    max-width: 600px;
    animation: zoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.launch-modal-body {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.launch-modal-body img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.launch-modal-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 14px 32px;
    border-radius: 50px;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 2px solid white;
    white-space: nowrap;
}

.launch-modal-body:hover .launch-modal-overlay {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(-50%) translateY(-5px);
}

.launch-modal-body:hover img {
    transform: scale(1.02);
}

.close-launch-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-launch-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Modal Responsiveness */
@media (max-width: 992px) {
    .launch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .launch-features li {
        justify-content: center;
    }
    
    .launch-details h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .launch-modal-content {
        margin: 15% auto;
    }
    
    .launch-modal-overlay {
        transform: translateY(0);
        padding: 15px;
    }
    
    .launch-modal-overlay h3 {
        font-size: 1rem;
    }
}

