*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clr-accent: #ffffff;
    --clr-accent-dark: #ffffff;
    --clr-white: #ffffff;
    --clr-dark: #0a0a0a;
    --clr-glass-bg: rgba(0, 0, 0, 0.185);
    --clr-glass-border: rgba(255, 255, 255, 0.22);
    --nav-height: 60px;
    --nav-height-scrolled: 60px;
    --font: 'Archivo', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--clr-dark);
    color: var(--clr-white);
    overflow-x: hidden;
}

.higherindex {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    /* Or whatever your main site bg is */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ─── SCROLL REVEAL ANIMATION */

/* The Initial State (Hidden) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    /* Slides up from 50px below */
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    /* Ultra smooth easing */
    transition-property: opacity, transform;
    will-change: opacity, transform;
}

/* The Visible State (Triggered by JS) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Stagger delay for children (e.g., cards inside a section) */
.reveal.active .proc-card,
.reveal.active .fac-card {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ─── NAVBAR ─────────────────────────────────────────── */

.navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 5%;
    transition: padding var(--transition-smooth) 0.3s;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 28px;
    background: var(--clr-glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--clr-glass-border);
    border-radius: 10px;
    transition: height 0.35s var(--transition-smooth),
        background 0.35s var(--transition-smooth),
        box-shadow 0.35s var(--transition-smooth);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--clr-white);
    text-transform: uppercase;
    line-height: 1.1;
}

.nav-logo-text span {
    color: var(--clr-accent);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--clr-white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ─── NAVBAR CTA (Updated for SVG Div) */

.nav-cta {
    display: inline-flex;
    align-items: center;
    text-decoration: none;

    /* Asymmetric padding: Space on left, tight on right for the arrow circle */
    padding: 6px 6px 6px 20px;

    background: var(--clr-accent);
    color: var(--clr-dark);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 12px;
}

/* The circular container for the arrow */
.nav-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 25px;
    background: rgba(0, 0, 0, 0.08);
    /* Subtle dark "pocket" */
    border-radius: 50%;
    transition: all 0.4s ease;
}

.nav-cta-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.4s ease;
}

/* ─── HOVER INTERACTIONS */

.nav-cta:hover {
    background: var(--clr-dark);
    color: var(--clr-accent);
    /* Subtle lift effect */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-cta:hover .nav-cta-arrow {
    background: var(--clr-accent);
    color: var(--clr-dark);
    /* Optional: Makes the circle feel like it's "popping" out */
    transform: scale(1.05);
}

/* ─── ACTIVE STATE (When clicked) */
.nav-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Small screen adjustment */
@media (max-width: 1024px) {
    .nav-cta {
        padding: 5px 5px 5px 16px;
        font-size: 12px;
    }

    .nav-cta::after {
        width: 28px;
        height: 28px;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform 0.35s var(--transition-smooth),
        opacity 0.35s var(--transition-smooth),
        width 0.35s var(--transition-smooth);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 300px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 100px 36px 48px;
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.42s var(--transition-smooth),
        opacity 0.42s var(--transition-smooth);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s var(--transition-smooth),
        transform 0.35s var(--transition-smooth);
}

.mobile-menu.open .mobile-menu-links li:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.10s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.16s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.22s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.28s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.34s;
}

.mobile-menu-links a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 0.2s, padding-left 0.25s;
}

.mobile-menu-links a:hover {
    color: var(--clr-accent);
    padding-left: 8px;
}

.mobile-menu-cta {
    margin-top: 36px;
    padding: 14px 24px;
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s 0.38s var(--transition-smooth),
        transform 0.35s 0.38s var(--transition-smooth),
        background 0.2s;
}

.mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: none;
}

.mobile-menu-cta:hover {
    background: var(--clr-accent-dark);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─── HERO */

.hero {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background-image: url('https://images.pexels.com/photos/12585886/pexels-photo-12585886.jpeg'); */
    background-image: url('https://images.pexels.com/photos/32101308/pexels-photo-32101308.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(70deg,
            rgba(0, 0, 0, 0.534) 0%,
            rgba(0, 0, 0, 0.151) 60%,
            rgba(0, 0, 0, 0) 100%);
}

.hero-overlay-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    display: flex;
    justify-content: flex-start;
}

.hero-content-inner {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.9s 0.5s ease-out forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--clr-accent);
}

.hero-heading {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
}

.hero-heading em {
    font-style: normal;
    color: var(--clr-accent);
}

.hero-para {
    font-size: 18px;
    /* Slightly larger for readability */
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    /* FIXED: Better width for paragraph flow */
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    /* Extra right padding to make room for the arrow "box" */
    padding: 8px 8px 8px 24px;

    background: var(--clr-accent);
    color: var(--clr-dark);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;

    /* Fully rounded "Pill" shape */
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 16px;
}

.btn-primary svg {
    /* This creates the "different rounded container" look */
    width: 42px;
    height: 42px;
    padding: 10px;
    background: rgb(0, 0, 0);
    /* Subtle dark circle */
    border-radius: 50%;
    /* Makes the arrow container a perfect circle */

    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* ─── HOVER EFFECTS */

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 8, 8, 0.4);
    background: #ffffff;
}

.btn-primary:hover svg {
    transform: translateX(3px);
    /* Arrow nudges forward */
    background: grey;
    color: black;
}

/* ─── MOBILE FIXES */

@media (max-width: 768px) {
    .hero {
        padding-top: 190px;
        /* Extra space for mobile nav */
        align-items: flex-start;
        /* Stacks to top on small phones if content is long */
    }

    .hero-content {
        padding: 40px 6%;
    }

    .hero-heading {
        font-size: clamp(40px, 15vw, 64px);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-content {
        justify-content: flex-start;
    }

    .hero-content-inner {
        max-width: 100%;
    }

    .hero-heading {
        font-size: clamp(38px, 12vw, 60px);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .mobile-menu {
        width: 100%;
        max-width: 320px;
    }

    .btn-ghost {
        display: none;
    }
}

/* ─── ABOUT SECTION */

.about {
    width: 100%;
    min-height: 80vh;
    background-color: #ffffff;
    padding: 90px 5%;
    display: flex;
    align-items: center;
    /* Vertically centers the two-column container */
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    /* Space between image and text */
    width: 100%;
}

/* Image Column */
.about-image-wrap {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Column */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

/* ─── ABOUT BADGE */

.about-badge {
    padding: 6px 16px;
    border: 1px solid rgba(0, 0, 0, 0.452);
    /* Subtle dark border */
    border-radius: 100px;
    /* Perfect Pill */

    /* Spacing */
    width: fit-content;
    margin-bottom: 8px;
    /* Snug against the "Apex" heading */
    background: transparent;
}

.about-badge span {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    /* Muted but readable */
}

/* ─── RESPONSIVE FIX */
@media (max-width: 768px) {
    .about-badge {
        margin-bottom: 12px;
    }
}

.about-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 500;
    line-height: 0.8;
    text-transform: uppercase;
    color: #1a1a1a;
    /* Dark, premium black */
    margin: 0;
    letter-spacing: -0.04em;
    text-align: right;
}

.about-text-wrapper {
    max-width: 650px;
}

.about-para {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: right;
}

/* ─── ABOUT STATS */

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    width: 100%;
    justify-content: flex-end;
    /* Keeps stats aligned to the right */
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Aligns text within each stat to the right */
    text-align: right;
}

.about-stat-number {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: black;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: #4d4b4b;
}

/* ─── RESPONSIVE FIX */

@media (max-width: 768px) {
    .about-content {
        align-items: flex-start;
    }
    .about-para {
         text-align: left;
    }
    .about-stats {
        justify-content: flex-start;
        gap: 30px;
        flex-wrap: wrap;

    }

    .about-stat-item {
        align-items: flex-start;
        text-align: left;
    }

    .about-stat-number {
        font-size: 28px;
    }
}

/* ─── RESPONSIVE */

@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }

    .about-heading {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .about {
        height: auto;
        padding: 80px 5%;
    }

    .about-container {
        flex-direction: column;
        /* Stacks image on top, text below */
        text-align: left;
        gap: 40px;
    }

    .about-image-wrap {
        width: 100%;
        height: 350px;
        border-radius: 30px;
    }

    .about-content {
        width: 100%;
    }

    .about-heading {
        font-size: 64px;
    }
}


/* ─── PROGRAMS NEW SECTION */

.programs-new {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    overflow: hidden;
}

.prog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* LEFT SIDE */
.prog-left {
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #243a1d;
}

.prog-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.prog-main-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 50px;
}

/* Accordion Logic */
.prog-accordion {
    display: flex;
    flex-direction: column;
}

.prog-item {
    border-top: 1px solid rgba(151, 149, 149, 0.699);
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prog-item:last-child {
    border-bottom: 1px solid rgba(145, 145, 145, 0.603);
}

.prog-trigger {
    display: flex;
    align-items: center;
    gap: 24px;
}

.prog-num {
    font-size: 14px;
    font-weight: 800;
    color: #929292;
}

.prog-title {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    flex: 1;
}

.prog-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.prog-content p {
    padding-top: 20px;
    padding-left: 45px;
    color: #f5f5f5;
    line-height: 1.6;
    max-width: 450px;
}

/* Active State Accordion */
.prog-item.active .prog-content {
    max-height: 200px;
    opacity: 1;
}

.prog-item.active .prog-title {
    color: #ffffff;
}

/* RIGHT SIDe IMAGES */
.prog-right {
    position: relative;
    background: #222;
}

.prog-img-container {
    width: 100%;
    height: 100%;
}

.prog-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease, transform 1.2s ease;
    transform: scale(1.1);
}

.prog-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* ─── RESPONSIVE */
@media (max-width: 900px) {
    .prog-grid {
        grid-template-columns: 1fr;
    }

    .prog-right {
        height: 400px;
        order: -1;
    }

    .prog-left {
        padding: 60px 5%;
    }
}

/* PROCESS SECTION STYLE */

.process-pathway {
    width: 100%;
    z-index: 10;
    position: relative;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 120px 5%;
    overflow: hidden;
    /* box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1); */
}

/* The Strip in Background */
.process-stripe {
    position: absolute;
    top: 0;
    right: 15%;
    width: 120px;
    height: 100%;
    background: #243a1d;
    z-index: 1;
}

.process-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styling */
.process-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.process-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 0, 0, 0.699);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 35px;
    color: #243a1d;
}

.process-main-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(50px, 6.5vw, 70px);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 35px;
    color: #000;
    letter-spacing: -0.03em;
}

.process-intro-bold {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    max-width: 700px;
}

/* Process Cards Grid */
.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.proc-card {
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.274);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.proc-card:hover {
    transform: translateY(-10px);
    border-color: #243a1d;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.proc-number {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #5d6b41;
    margin-bottom: 20px;
}

.proc-title {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #243a1d;
}

.proc-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ─── RESPONSIVE */

@media (max-width: 1024px) {
    .process-pathway {
        padding-top: 90px;
    }
    .process-cards {
        grid-template-columns: 1fr;
    }

    .process-stripe {
        display: none;
    }
}

/* ─── FACILITIES SECTION */

.facilities {
    width: 100%;
    background-color: #243a1d;
    padding: 120px 5%;
    overflow: hidden;
}


.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header: Right Stacked */
.fac-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;

    margin-bottom: 80px;
}

.fac-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.678);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
}

.fac-main-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(40px, 6vw, 82px);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: rgb(255, 255, 255);
}

.fac-intro {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    max-width: 700px;
}

/* Cards Layout */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fac-card {
    position: relative;
    height: 600px;
    /* Taller editorial height */
    border-radius: 24px;
    /* Curved modern border */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Dark Overlay for Readability */
.fac-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Large Faded Number */
.fac-bg-num {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: 'Archivo', sans-serif;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Content Bottom Aligned */
.fac-content {
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.fac-title {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fac-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 280px;
}

/* Hover Effects */
.fac-card:hover {
    transform: translateY(-12px);
}

.fac-card:hover .fac-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.fac-card:hover .fac-content {
    transform: translateY(-5px);
}

/* ─── RESPONSIVE */

@media (max-width: 1024px) {
    .fac-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 30px;
    }

    .fac-card {
        height: 520px;
        /* Adjusted height for mobile */
    }

    .fac-header {
        align-items: flex-start;
        text-align: left;
    }

    .fac-intro {
        max-width: 100%;
    }
}

/* ─── COACH SHOWCASE SECTION */

.showcase {
    width: 100%;
    height: 100vh;
    /* Using VH for height, VW is for width bestie! */
    overflow: hidden;
    background: #0000006b;
}

.showcase-grid {
    display: flex;
    width: 100%;
    height: 100%;
}

.showcase-item {
    position: relative;
    flex: 1;
    /* 3 equal columns */
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1),
        filter 0.6s ease;
}

/* White Container Overlay */
.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: rgb(233, 233, 233);
    transform: translateY(101%);
    /* Hidden by default below the edge */
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.showcase-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.showcase-title {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 8px 0;
}

.showcase-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ─── HOVER / ACTIVE STATES */

/* Desktop Hover & Mobile JS-Active class */
.showcase-item:hover .showcase-img,
.showcase-item.active .showcase-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.showcase-item:hover .showcase-overlay,
.showcase-item.active .showcase-overlay {
    transform: translateY(0);
}

.showcase-item:hover .showcase-info,
.showcase-item.active .showcase-info {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE */

@media (max-width: 768px) {
    .showcase {
        height: auto;
    }

    .showcase-grid {
        flex-direction: column;
    }

    .showcase-item {
        width: 100%;
        height: 100vh;
    }

    .showcase-overlay {
        padding: 30px 20px;
    }
}

/* ─── HOVER / ACTIVE STATES */

/* Desktop: Only trigger on actual Hover */
@media (min-width: 769px) {
    .showcase-item:hover .showcase-img {
        filter: grayscale(0%) brightness(1);
        transform: scale(1.1);
    }

    .showcase-item:hover .showcase-overlay {
        transform: translateY(0);
    }

    .showcase-item:hover .showcase-info {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile: Trigger via the .active class from JS */
@media (max-width: 768px) {
    .showcase-item.active .showcase-img {
        filter: grayscale(0%) brightness(1);
        transform: scale(1.1);
    }

    .showcase-item.active .showcase-overlay {
        transform: translateY(0);
    }

    .showcase-item.active .showcase-info {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── REVIEWS SECTION (FIXED) */

.reviews {
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.reviews-container {
    max-width: 1400px;
    padding: 0 5%;
}

.reviews-header {
    margin-bottom: 40px;
    /* Reduced to pull cards closer */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #000;
}

.reviews-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 600;
    /* Bumped to 900 for that "Elite" look */
    text-transform: uppercase;
    margin-bottom: 15px;
    color: black;
    line-height: 1;
}

.reviews-helper {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.1em;
}

/* ─── NAVIGATION (THE FIX) */
.reviews-nav {
    position: relative;

    display: flex;
    gap: 12px;
    margin-top: 24px;
    z-index: 10;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #000;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* The Scroll Track */
.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar Chrome/Safari */

/* Card Design */
.review-card {
    flex: 0 0 400px;
    /* Fixed width on desktop */
    scroll-snap-align: start;
    /* Snap point */
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.027);
    border: 1px solid rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.rev-stars {
    color: #f5a200;
    /* Your Accent Color */
    font-size: 18px;
    margin-bottom: 20px;
}

.rev-text {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rev-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.rev-info {
    display: flex;
    flex-direction: column;
}

.rev-name {
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
}

.rev-meta {
    font-size: 12px;
    color: #888;
}

/* ─── RESPONSIVE */

@media (max-width: 900px) {
    .reviews-nav {
        display: none;
    }

    /* Hide arrows on mobile */
    .review-card {
        flex: 0 0 85%;
        /* Cards take up most of the screen on mobile */
    }
}

/* ─── CTA SECTION */

.cta-section {
    width: 100vw;
    min-height: 100vh;
    background: #1a2a15;
    /* Deep Football Green */
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* LEFT: IMAGE */
.cta-image-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.1);
}

.cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 70%, #1a2a15 100%);
}

/* RIGHT: FORM */
.cta-form-wrap {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a2a15;
}

.cta-form-container {
    width: 100%;
    max-width: 550px;
}

.form-header {
    margin-bottom: 40px;
}

.form-badge {
    color: white;
    /* Accent Orange */
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

.form-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
}

.form-sub {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Form Elements */
.academy-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.academy-form input,
.academy-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.academy-form input:focus,
.academy-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-submit {
    margin-top: 10px;
    padding: 20px;
    background: rgb(255, 255, 255);
    color: #1a2a15;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: #e2ffd9;
    transform: translateY(-3px);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Status Messages */
.form-status {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 700;
    text-align: center;
}

.form-status.success {
    display: block;
    background: #2ecc71;
    color: #fff;
}

.form-status.error {
    display: block;
    background: #e74c3c;
    color: #fff;
}

/* ─── RESPONSIVE */

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-image-wrap {
        height: 400px;
    }

    .cta-image-overlay {
        background: linear-gradient(to bottom, transparent 70%, #1a2a15 100%);
    }

    .input-group {
        grid-template-columns: 1fr;
    }
}

/* ─── FOOTER REVEAL LOGIC */

/* 1. Ensure the CTA section has a higher z-index to cover the footer */
.cta-section {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

/* 2. Style the Footer as a 'sticky' base */
.main-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 450px;

    background: #ffffff;

    color: #000000;
    z-index: 1;

    display: flex;
    align-items: center;
}

/* ─── FOOTER STYLING */

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 90px;
    padding-top: 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.452);

}

.footer-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #132e0d;
}

.footer-tagline {
    max-width: 350px;
    color: rgba(37, 37, 37, 0.692);
    line-height: 1.6;
    font-size: 14px;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    color: #104217;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(17, 17, 17, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(34, 34, 34, 0.815);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-left: 20px;
}

/* ─── RESPONSIVE FIX */
@media (max-width: 768px) {
    .main-footer {
        position: relative;
        /* Disable reveal on mobile for better UX */
        height: auto;
        padding: 60px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-grid {
        gap: 40px;
    }
}