/* =========================================================
   APEX SPORTS ACADEMY
   MAIN STYLE SHEET
========================================================= */

:root {
    --primary: #159ee3;
    --primary-dark: #087fbe;
    --sky-light: #eaf8ff;
    --sky-soft: #f4fbff;

    --white: #ffffff;
    --black: #101820;

    --text: #344454;
    --muted: #718092;

    --border: #dceaf2;

    --container: 1200px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 8px 25px rgba(25, 89, 120, .08);
    --shadow-md: 0 18px 50px rgba(25, 89, 120, .12);

    --transition: .35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

ul {
    list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5 {
    font-family: "Outfit", sans-serif;
    color: var(--primary);
    line-height: 1.15;
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
}

h2 span,
h1 span {
    color: var(--primary);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 50px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(21, 158, 227, .22);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
}

.btn-outline-white {
    border-color: rgba(255,255,255,.7);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-dark);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(20,70,100,.10);
    border-color: var(--border);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background:var(--primary);
    color: var(--white);
    
    border-radius: 12px;
    font-size: 19px;
    
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--black);
}

.logo-text small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
}


/* NAV */

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    border: 0;
    background: transparent;
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.dropdown-toggle i {
    font-size: 9px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}


/* DROPDOWN */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.dropdown-menu a i {
    width: 18px;
    color: var(--primary);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--sky-light);
    color: var(--primary-dark);
}


/* NAV ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.theme-toggle,
.rtl-toggle {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover,
.rtl-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.rtl-toggle {
    font-size: 11px;
    font-weight: 800;
}

.login-link {
    padding: 9px 8px;
    font-size: 14px;
    font-weight: 700;
}

.login-link:hover {
    color: var(--primary);
}

.nav-btn {
    min-height: 43px;
    padding: 10px 17px;
    font-size: 13px;
}


/* MOBILE MENU */

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    cursor: pointer;
}


/* =========================================================
   HERO ONE
========================================================= */

.hero-one {
    min-height: 760px;
    padding-top: 82px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=2000&q=90")
        center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 30, 50, .90) 0%,
            rgba(3, 30, 50, .72) 48%,
            rgba(3, 30, 50, .20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 720px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #bdeaff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(46px, 6vw, 78px);
    margin-bottom: 22px;
}

.hero h1 span {
    color: #55c9ff;
}

.hero p {
    max-width: 640px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.9;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 35px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 600;
}

.hero-features i {
    color: #55c9ff;
}

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    writing-mode: vertical-rl;
}

.hero-scroll i {
    animation: bounceDown 1.5s infinite;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;
    margin-top: -65px;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-card {
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    background: var(--sky-light);
    color: var(--primary);
    border-radius: 50%;
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 2px;
}

.stat-card p {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 105px 0;
}

.section-light {
    background: var(--sky-soft);
}

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
}

.light-tag {
    color: #aee7ff;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading p {
    margin-top: 18px;
    color: var(--muted);
}

.center-action {
    margin-top: 40px;
    text-align: center;
}


/* =========================================================
   INTRO
========================================================= */

.intro-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 85px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.image-frame img {
    height: 550px;
    object-fit: cover;
    transition: .7s ease;
}

.intro-image:hover img {
    transform: scale(1.04);
}

.experience-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 22px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.experience-card strong {
    color: var(--primary);
    font-family: "Outfit";
    font-size: 38px;
}

.experience-card span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}

.intro-content p {
    margin-top: 18px;
    color: var(--muted);
    text-align: justify;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 27px 0;
}

.check-list div {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.check-list i {
    color: var(--primary);
    margin-top: 4px;
}

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 13px;
}

.text-btn i {
    transition: var(--transition);
}

.text-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PROGRAMS
========================================================= */

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.program-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.program-image {
    position: relative;
    overflow: hidden;
}

.program-image img {
    height: 220px;
    object-fit: cover;
    transition: .6s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-icon {
    position: absolute;
    left: 15px;
    bottom: -20px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    border: 4px solid var(--white);
}

.program-content {
    padding: 28px 20px 22px;
}

.program-content > span {
    color: #9aa9b5;
    font-size: 11px;
    font-weight: 800;
}

.program-content h3 {
    margin: 5px 0 10px;
    font-size: 23px;
}

.program-content p {
    color: var(--muted);
    font-size: 13px;
    text-align: justify;
}

.program-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}

.program-content a i {
    transition: var(--transition);
}

.program-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    position: relative;
    overflow: hidden;
    padding: 32px 25px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(21,158,227,.35);
    box-shadow: var(--shadow-sm);
}

.why-card i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 25px 0 18px;
    background: var(--sky-light);
    color: var(--primary);
    border-radius: 12px;
    font-size: 19px;
}

.why-card h3 {
    font-size: 21px;
}

.why-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    text-align: justify;
}

.why-number {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #d7edf7;
    font-family: "Outfit";
    font-size: 30px;
    font-weight: 800;
}


/* =========================================================
   ACHIEVEMENT BANNER
========================================================= */

.achievement-banner {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;

    background:
        url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=90")
        center/cover no-repeat;
}

.achievement-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,34,55,.77);
}

.achievement-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: var(--white);
}

.achievement-content h2 {
    color: var(--primary);
    font-size: clamp(38px, 5vw, 62px);
}

.achievement-content p {
    max-width: 620px;
    margin: 20px auto 28px;
    color: rgba(255,255,255,.78);
}


/* =========================================================
   COACHES
========================================================= */

.coach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.coach-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.coach-image {
    position: relative;
    overflow: hidden;
}

.coach-image img {
    height: 390px;
    object-fit: cover;
    transition: .6s ease;
}

.coach-card:hover img {
    transform: scale(1.05);
}

.coach-social {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: flex;
    gap: 7px;
}

.coach-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition);
}

.coach-card:hover .coach-social a {
    opacity: 1;
    transform: translateY(0);
}

.coach-content {
    padding: 20px;
}

.coach-content span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coach-content h3 {
    margin-top: 5px;
    font-size: 23px;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {
    background: var(--sky-light);
}

.testimonial-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.quote-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

.testimonial-text {
    color: var(--black);
    font-family: "Outfit";
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.45;
}

.testimonial-person {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
}

.testimonial-person div:last-child {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-person strong {
    font-size: 13px;
}

.testimonial-person span {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    background: var(--primary);
    padding: 75px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    color: var(--white);
}

.cta-content p {
    max-width: 620px;
    margin-top: 12px;
    color: rgba(255,255,255,.78);
}

.cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


/* =========================================================
   HOME TWO
========================================================= */

.home2-hero {
    min-height: 800px;
    padding-top: 82px;
    display: grid;
    grid-template-columns: 52% 48%;
    background: var(--sky-soft);
}

.home2-image {
    overflow: hidden;
}

.home2-image img {
    height: 100%;
    object-fit: cover;
    animation: heroZoom 8s ease-out forwards;
}

.home2-content {
    display: flex;
    align-items: center;
    padding: 80px 7vw;
}

.home2-content-inner {
    max-width: 590px;
}

.home2-content h1 {
    font-size: clamp(50px, 6vw, 85px);
    margin-bottom: 25px;
}

.home2-content > p,
.home2-content-inner > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.home2-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.home2-mini-stats {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.home2-mini-stats div {
    display: flex;
    flex-direction: column;
}

.home2-mini-stats strong {
    font-family: "Outfit";
    font-size: 28px;
    color: var(--black);
}

.home2-mini-stats span {
    color: var(--muted);
    font-size: 11px;
}


/* MARQUEE */

.sport-marquee {
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    padding: 22px 0;
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marquee 25s linear infinite;
}

.marquee-track span {
    font-family: "Outfit";
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
}

.marquee-track i {
    color: var(--primary);
    font-size: 9px;
}


/* HOME 2 SPORTS */

.split-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 50px;
}

.split-heading > p {
    color: var(--muted);
    max-width: 500px;
}

.sport-feature-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 270px 270px;
    gap: 15px;
}

.sport-feature {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.sport-large {
    grid-row: span 2;
}

.sport-feature img {
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.sport-feature:hover img {
    transform: scale(1.08);
}

.sport-feature-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(
            transparent 20%,
            rgba(3,25,40,.82)
        );
    color: var(--white);
}

.sport-feature-overlay > span {
    color: #9cddfa;
    font-size: 11px;
    font-weight: 800;
}

.sport-feature-overlay h3 {
    color: var(--white);
    margin-top: 4px;
    font-size: 28px;
}

.sport-feature-overlay p {
    color: rgba(255,255,255,.75);
    font-size: 11px;
}

.sport-feature-overlay > i {
    position: absolute;
    right: 25px;
    bottom: 28px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    transition: var(--transition);
}

.sport-feature:hover .sport-feature-overlay > i {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(-45deg);
}


/* PERFORMANCE */

.performance-section {
    background: var(--sky-light);
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.performance-content > p {
    color: var(--muted);
    margin-top: 20px;
    max-width: 580px;
}

.performance-list {
    margin-top: 30px;
    display: grid;
    gap: 22px;
}

.performance-list > div {
    display: flex;
    gap: 17px;
}

.performance-list > div > span {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.performance-list h4 {
    font-size: 17px;
}

.performance-list p {
    color: var(--muted);
    font-size: 12px;
}

.performance-visual {
    position: relative;
}

.performance-image {
    overflow: hidden;
    border-radius: 24px;
}

.performance-image img {
    height: 560px;
    object-fit: cover;
}

.performance-badge {
    position: absolute;
    left: -25px;
    bottom: 35px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 42px auto;
    gap: 2px 12px;
}

.performance-badge i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--sky-light);
    color: var(--primary);
    border-radius: 50%;
}

.performance-badge strong {
    font-family: "Outfit";
    font-size: 22px;
}

.performance-badge span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.3;
}


/* EVENTS */

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.event-card {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-sm);
}

.event-date {
    flex-shrink: 0;
    width: 58px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--sky-light);
    color: var(--primary-dark);
    border-radius: 10px;
}

.event-date strong {
    font-family: "Outfit";
    font-size: 22px;
    line-height: 1;
}

.event-date span {
    font-size: 9px;
    font-weight: 800;
}

.event-content > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-content h3 {
    margin: 5px 0;
    font-size: 18px;
}

.event-content p {
    color: var(--muted);
    font-size: 11px;
}

.event-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
}


/* HOME TWO CTA */

.home2-final-cta {
    padding: 110px 0;
    text-align: center;
    background:
        linear-gradient(rgba(2,35,56,.88), rgba(2,35,56,.88)),
        url("https://images.unsplash.com/photo-1517466787929-bc90951d0974?auto=format&fit=crop&w=1800&q=90")
        center/cover;
}

.home2-final-cta h2 {
    color: var(--white);
    font-size: clamp(42px, 6vw, 70px);
}

.home2-final-cta p {
    max-width: 650px;
    margin: 18px auto 30px;
    color: rgba(255,255,255,.78);
}

.home2-final-cta > div > div {
    display: flex;
    justify-content: center;
    gap: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #071923;
    color: rgba(255,255,255,.72);
}

.footer-grid {
    padding: 75px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo .logo-text strong {
    color: var(--primary);
}

.footer-about p {
    max-width: 330px;
    margin-top: 20px;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-column a {
    font-size: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #5acaff;
    transform: translateX(3px);
}

.footer-column p {
    display: flex;
    gap: 9px;
    font-size: 12px;
}

.footer-column p i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 10px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: translate(0);
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width: 1200px) {

    .navbar {
        gap: 15px;
    }

    .nav-wrapper {
        gap: 10px;
    }

    .nav-link {
        padding-inline: 8px;
        font-size: 13px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — 1024
========================================================= */

@media (max-width: 1024px) {

    .menu-toggle {
        display: grid;
        place-items: center;
        position: relative;
        z-index: 10001;
    }

    .nav-wrapper {
        position: fixed;
        top: 82px;
        right: 0;
        width: min(390px, 100%);
        height: calc(100vh - 82px);

        padding: 25px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        background: var(--white);
        box-shadow: -10px 0 35px rgba(10,50,70,.12);

        overflow-y: auto;

        transform: translateX(110%);
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-wrapper.menu-open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 12px 8px;
        border-bottom: 1px solid var(--border);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        display: none;

        opacity: 1;
        visibility: visible;
        transform: none;

        box-shadow: none;
        border: 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        padding: 5px 10px;
    }

    .dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown.dropdown-open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .nav-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        flex-wrap: wrap;
    }

    .login-link {
        flex: 1;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 8px;
    }

    .nav-btn {
        flex: 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .intro-image {
        max-width: 700px;
    }

    .coach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coach-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin-inline: auto;
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .home2-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home2-image {
        height: 520px;
    }

    .home2-content {
        padding: 80px 6%;
    }

    .sport-feature-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 250px 250px;
    }

    .sport-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .performance-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVE — 768
========================================================= */

@media (max-width: 768px) {

    .navbar {
        min-height: 72px;
    }

    .nav-wrapper {
        top: 72px;
        height: calc(100vh - 72px);
    }

    .hero-one {
        min-height: 680px;
        padding-top: 72px;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 58px);
    }

    .hero p {
        font-size: 14px;
    }

    .hero-scroll {
        display: none;
    }

    .stats-section {
        margin-top: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .program-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .coach-grid {
        grid-template-columns: 1fr;
    }

    .coach-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .coach-image img {
        height: 430px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        padding: 15px 0;
        text-align: center;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home2-image {
        height: 430px;
    }

    .home2-content {
        padding: 65px 5%;
    }

    .home2-content h1 {
        font-size: clamp(45px, 11vw, 65px);
    }

    .sport-feature-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px);
    }

    .sport-large {
        grid-column: auto;
    }

    .performance-image img {
        height: 450px;
    }

    .performance-badge {
        left: 15px;
    }

}


/* =========================================================
   RESPONSIVE — 480
========================================================= */

@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .container {
        width: min(92%, 100%);
    }

    .logo-icon {
        width: 39px;
        height: 39px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text small {
        font-size: 7px;
    }

    .nav-wrapper {
        width: 100%;
    }

    .hero-one {
        min-height: 650px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-card h3 {
        font-size: 23px;
    }

    .section {
        padding: 65px 0;
    }

    h2 {
        font-size: 34px;
    }

    .image-frame img {
        height: 420px;
    }

    .experience-card {
        right: 10px;
        bottom: 15px;
        padding: 14px;
    }

    .experience-card strong {
        font-size: 30px;
    }

    .program-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .program-image img {
        height: 240px;
    }

    .achievement-banner {
        min-height: 450px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home2-image {
        height: 340px;
    }

    .home2-content {
        padding: 55px 4%;
    }

    .home2-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home2-actions .btn {
        width: 100%;
    }

    .home2-mini-stats {
        gap: 18px;
    }

    .home2-mini-stats strong {
        font-size: 22px;
    }

    .marquee-track {
        gap: 18px;
    }

    .marquee-track span {
        font-size: 13px;
    }

    .sport-feature-grid {
        grid-template-rows: repeat(4, 260px);
    }

    .performance-image img {
        height: 390px;
    }

    .event-card {
        padding: 18px;
    }

}
/* =========================================================
   UNIQUE HOME ONE SECTIONS
========================================================= */


/* =========================================================
   ATHLETE JOURNEY
========================================================= */

.athlete-journey-section {
    background: var(--white);
}

.journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 65px;
}

.journey-line {
    position: absolute;
    top: 28px;
    left: 11%;
    right: 11%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary),
        #bdeaff
    );
}

.journey-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.journey-number {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: #cceefa;
    font-size: 11px;
    font-weight: 800;
}

.journey-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin: auto;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--sky-light);
    transition: var(--transition);
}

.journey-item:hover .journey-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
}

.journey-content {
    margin-top: 30px;
    padding: 0 12px;
}

.journey-content span {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.journey-content h3 {
    margin: 7px 0 9px;
    font-size: 22px;
}

.journey-content p {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   PERFORMANCE LAB
========================================================= */

.performance-lab-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.performance-lab-content p {
    max-width: 520px;
    margin: 20px 0 28px;
    color: var(--muted);
    text-align: justify;
}

.performance-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.metric-card {
    position: relative;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21,158,227,.4);
}

.metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-top span {
    color: #a7b6c0;
    font-size: 10px;
    font-weight: 800;
}

.metric-top i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--sky-light);
    color: var(--primary);
    border-radius: 9px;
}

.metric-card h3 {
    margin-top: 18px;
    font-size: 21px;
}

.metric-card p {
    margin: 6px 0 18px;
    color: var(--muted);
    font-size: 13px;
}

.metric-bar {
    height: 6px;
    overflow: hidden;
    background: #e4eef3;
    border-radius: 20px;
}

.metric-bar span {
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: inherit;
    transition: width 1.2s ease;
}

.metric-card > strong {
    display: block;
    margin-top: 8px;
    text-align: right;
    color: var(--primary-dark);
    font-size: 11px;
}


/* =========================================================
   WEEKLY TRAINING
========================================================= */

.weekly-section {
    background: var(--white);
}

.training-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.training-day {
    min-height: 230px;
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.training-day:last-child {
    border-right: 0;
}

.training-day:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
}

.day-number {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.training-day:hover .day-number {
    color: #b9ebff;
}

.training-day > i {
    width: 54px;
    height: 54px;
    margin: 25px auto 18px;
    display: grid;
    place-items: center;
    background: var(--sky-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.training-day:hover > i {
    background: var(--white);
}

.training-day h3 {
    font-size: 20px;
}

.training-day:hover h3 {
    color: var(--white);
}

.training-day p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.training-day:hover p {
    color: rgba(255,255,255,.75);
}


/* =========================================================
   CHAMPION WALL
========================================================= */

.champion-wall {
    position: relative;
    padding: 110px 0;
    background:
        url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1800&q=90")
        center/cover no-repeat;
}

.champion-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,32,50,.87);
}

.champion-content {
    position: relative;
    z-index: 2;
}

.champion-heading {
    max-width: 700px;
}

.champion-heading h2 {
    color: var(--white);
}

.champion-heading p {
    margin-top: 18px;
    color: rgba(255,255,255,.72);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
    border: 1px solid rgba(255,255,255,.14);
}

.achievement-box {
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.14);
}

.achievement-box:last-child {
    border-right: 0;
}

.achievement-box i {
    color: #58caff;
    font-size: 22px;
    margin-bottom: 15px;
}

.achievement-box strong {
    display: block;
    color: var(--primary);
    font-family: "Outfit";
    font-size: 40px;
}

.achievement-box span {
    color: rgba(255,255,255,.65);
    font-size: 11px;
}

.champion-quote {
    max-width: 720px;
    margin: 55px auto 0;
    text-align: center;
}

.champion-quote > i {
    color: var(--primary);
    font-size: 25px;
}

.champion-quote p {
    margin-top: 15px;
    color: var(--white);
    font-family: "Outfit";
    font-size: 21px;
    line-height: 1.5;
}


/* =========================================================
   PARENT CONFIDENCE
========================================================= */

.parent-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.parent-content > p {
    margin: 20px 0 28px;
    max-width: 520px;
    color: var(--muted);
    text-align: justify;
}

.parent-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.parent-feature {
    display: flex;
    gap: 15px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: var(--transition);
}

.parent-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.parent-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--sky-light);
    color: var(--primary);
    border-radius: 10px;
}

.parent-feature h3 {
    font-size: 17px;
}

.parent-feature p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   ATHLETE OF MONTH
========================================================= */

.athlete-month-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.athlete-month-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.athlete-month-image img {
    height: 520px;
    object-fit: cover;
    transition: .7s ease;
}

.athlete-month-image:hover img {
    transform: scale(1.05);
}

.athlete-month-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 10px 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 6px;
}

.athlete-month-content > p {
    max-width: 570px;
    margin: 20px 0;
    color: var(--muted);
    text-align: justify;
}

.athlete-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.athlete-details div {
    padding: 18px;
    background: var(--sky-light);
    border-radius: 10px;
}

.athlete-details span {
    display: block;
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.athlete-details strong {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.athlete-month-content blockquote {
    padding-left: 18px;
    border-left: 3px solid var(--primary);
    color: var(--text);
    font-family: "Outfit";
    font-size: 17px;
    font-weight: 600;
}


/* =========================================================
   TOURNAMENT COUNTDOWN
========================================================= */

.tournament-section {
    position: relative;
    padding: 105px 0;
    text-align: center;
    background:
        url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=90")
        center/cover no-repeat;
}

.tournament-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,33,51,.86);
}

.tournament-content {
    position: relative;
    z-index: 2;
}

.tournament-content h2 {
    color: var(--white);
}

.tournament-content > p {
    max-width: 600px;
    margin: 18px auto 30px;
    color: rgba(255,255,255,.72);
}

.countdown-box {
    max-width: 650px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.2);
}

.countdown-box div {
    padding: 22px 10px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.countdown-box div:last-child {
    border-right: 0;
}

.countdown-box strong {
    display: block;
    color: var(--white);
    font-family: "Outfit";
    font-size: 38px;
}

.countdown-box span {
    color: rgba(255,255,255,.6);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   UNIQUE SECTION RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .journey-track {
        grid-template-columns: 1fr 1fr;
        gap: 55px 25px;
    }

    .journey-line {
        display: none;
    }

    .performance-lab-grid,
    .parent-grid,
    .athlete-month-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .training-week {
        grid-template-columns: repeat(3, 1fr);
    }

    .training-day {
        border-bottom: 1px solid var(--border);
    }

    .training-day:nth-child(3) {
        border-right: 0;
    }

    .achievement-grid {
        grid-template-columns: 1fr 1fr;
    }

    .achievement-box:nth-child(2) {
        border-right: 0;
    }

    .achievement-box:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.14);
    }

}


@media (max-width: 768px) {

    .journey-track {
        grid-template-columns: 1fr 1fr;
    }

    .performance-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .training-week {
        grid-template-columns: 1fr 1fr;
    }

    .training-day:nth-child(2n) {
        border-right: 0;
    }

    .training-day:nth-child(3) {
        border-right: 1px solid var(--border);
    }

    .parent-features {
        grid-template-columns: 1fr 1fr;
    }

    .athlete-month-image img {
        height: 450px;
    }

}


@media (max-width: 480px) {

    .journey-track {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-number {
        position: static;
        transform: none;
        margin-bottom: 8px;
    }

    .performance-metrics {
        grid-template-columns: 1fr;
    }

    .training-week {
        grid-template-columns: 1fr;
    }

    .training-day,
    .training-day:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .training-day:last-child {
        border-bottom: 0;
    }

    .achievement-grid {
        grid-template-columns: 1fr 1fr;
    }

    .achievement-box {
        padding: 25px 10px;
    }

    .achievement-box strong {
        font-size: 30px;
    }

    .parent-features {
        grid-template-columns: 1fr;
    }

    .athlete-month-image img {
        height: 380px;
    }

    .athlete-details {
        grid-template-columns: 1fr;
    }

    .countdown-box {
        grid-template-columns: 1fr 1fr;
    }

    .countdown-box div:nth-child(2) {
        border-right: 0;
    }

    .countdown-box div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

}
/* =========================================================
   APEX SPORTS ACADEMY
   ADVANCED ANIMATION SYSTEM
========================================================= */


/* =========================================================
   GLOBAL SCROLL PROGRESS
========================================================= */

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #59d8ff,
        #159ee3,
        #0077b6
    );
    z-index: 99999;
    transform-origin: left;
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.apex-cursor-glow {
    position: fixed;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;

    background:
        radial-gradient(
            circle,
            rgba(67, 201, 255, .12) 0%,
            rgba(67, 201, 255, .05) 35%,
            transparent 70%
        );

    transform: translate(-50%, -50%);
    transition:
        width .25s ease,
        height .25s ease,
        opacity .3s ease;

    opacity: 0;
}

body.cursor-active .apex-cursor-glow {
    opacity: 1;
}

body.cursor-hover .apex-cursor-glow {
    width: 260px;
    height: 260px;
}


/* =========================================================
   HERO REVEAL
========================================================= */

.hero-animate .hero-content > * {
    opacity: 0;
    transform: translateY(50px);
    animation: apexHeroReveal 1s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-animate .hero-content > *:nth-child(1) {
    animation-delay: .15s;
}

.hero-animate .hero-content > *:nth-child(2) {
    animation-delay: .3s;
}

.hero-animate .hero-content > *:nth-child(3) {
    animation-delay: .45s;
}

.hero-animate .hero-content > *:nth-child(4) {
    animation-delay: .6s;
}

.hero-animate .hero-content > *:nth-child(5) {
    animation-delay: .75s;
}

@keyframes apexHeroReveal {

    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


/* =========================================================
   HERO IMAGE ZOOM
========================================================= */

.hero-animate .hero-image img,
.hero-animate .hero-media img {
    transform: scale(1.12);
    animation: heroImageZoom 1.8s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes heroImageZoom {

    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }

}


/* =========================================================
   SCROLL REVEAL BASE
========================================================= */

.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale,
.reveal-blur {

    opacity: 0;
    will-change: transform, opacity, filter;

}


.reveal {
    transform: translateY(70px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-up {
    transform: translateY(100px);
}

.reveal-scale {
    transform: scale(.75);
}

.reveal-blur {
    transform: translateY(50px);
    filter: blur(12px);
}


.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active,
.reveal-blur.active {

    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);

    transition:
        opacity 1s cubic-bezier(.16,1,.3,1),
        transform 1s cubic-bezier(.16,1,.3,1),
        filter 1s ease;

}


/* =========================================================
   STAGGER CHILDREN
========================================================= */

.stagger > * {
    opacity: 0;
    transform: translateY(45px);
}

.stagger.active > * {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.16,1,.3,1);
}

.stagger.active > *:nth-child(1) {
    transition-delay: .05s;
}

.stagger.active > *:nth-child(2) {
    transition-delay: .15s;
}

.stagger.active > *:nth-child(3) {
    transition-delay: .25s;
}

.stagger.active > *:nth-child(4) {
    transition-delay: .35s;
}

.stagger.active > *:nth-child(5) {
    transition-delay: .45s;
}

.stagger.active > *:nth-child(6) {
    transition-delay: .55s;
}

.stagger.active > *:nth-child(7) {
    transition-delay: .65s;
}

.stagger.active > *:nth-child(8) {
    transition-delay: .75s;
}


/* =========================================================
   SECTION HEADING ANIMATION
========================================================= */

.section-heading h2,
.champion-heading h2 {

    overflow: hidden;

}

.section-heading h2,
.champion-heading h2 {

    clip-path: inset(0 0 100% 0);
    transform: translateY(25px);

}

.section-heading.active h2,
.champion-heading.active h2 {

    clip-path: inset(0 0 0 0);
    transform: translateY(0);

    transition:
        clip-path 1s cubic-bezier(.16,1,.3,1),
        transform 1s cubic-bezier(.16,1,.3,1);

}


/* =========================================================
   SECTION TAG
========================================================= */

.section-tag {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.section-tag::after {

    content: "";

    position: absolute;
    left: -120%;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: currentColor;

    transition:
        left .9s cubic-bezier(.16,1,.3,1);

}

.section-tag.active::after {
    left: 0;
}


/* =========================================================
   CARD 3D TILT
========================================================= */

.tilt-card {

    position: relative;

    transform-style: preserve-3d;

    transition:
        transform .18s ease,
        box-shadow .3s ease;

}

.tilt-card::before {

    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255,255,255,.35),
            transparent 80%
        );

    opacity: 0;

    pointer-events: none;

    transition: opacity .3s ease;

}

.tilt-card:hover::before {
    opacity: 1;
}


/* =========================================================
   CARD FLOAT
========================================================= */

.float-animation {
    animation: apexFloat 4s ease-in-out infinite;
}

@keyframes apexFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   JOURNEY ICON PULSE
========================================================= */

.journey-icon {

    animation:
        journeyPulse 3s ease-in-out infinite;

}

@keyframes journeyPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 8px var(--sky-light);
    }

    50% {
        box-shadow:
            0 0 0 13px rgba(21,158,227,.08),
            0 0 30px rgba(21,158,227,.12);
    }

}


/* =========================================================
   PERFORMANCE BAR ANIMATION
========================================================= */

.metric-bar span {

    width: 0 !important;

}

.metric-card.active .metric-bar span {

    width: var(--metric-width) !important;

    transition:
        width 1.5s cubic-bezier(.16,1,.3,1);

}


/* =========================================================
   PERFORMANCE CARD ICON ROTATION
========================================================= */

.metric-card:hover .metric-top i {

    transform:
        rotate(12deg)
        scale(1.1);

}

.metric-top i {

    transition:
        transform .4s cubic-bezier(.16,1,.3,1);

}


/* =========================================================
   TRAINING DAY HOVER
========================================================= */

.training-day {

    position: relative;
    overflow: hidden;

}

.training-day::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    top: -100px;
    right: -100px;

    transform: scale(0);

    transition:
        transform .6s cubic-bezier(.16,1,.3,1);

}

.training-day:hover::before {
    transform: scale(2);
}


/* =========================================================
   CHAMPION WALL FLOATING LIGHT
========================================================= */

.champion-wall {

    overflow: hidden;

}

.champion-wall::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(76,210,255,.12),
            transparent 70%
        );

    top: -180px;
    left: -180px;

    animation:
        championGlow 8s ease-in-out infinite;

}

@keyframes championGlow {

    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(250px,180px);
    }

    100% {
        transform: translate(0,0);
    }

}


/* =========================================================
   ACHIEVEMENT CARD HOVER
========================================================= */

.achievement-box {

    position: relative;
    overflow: hidden;

    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        background .4s ease;

}

.achievement-box::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12),
            transparent
        );

    transform: skewX(-20deg);

}

.achievement-box:hover::after {

    left: 150%;

    transition:
        left .9s ease;

}

.achievement-box:hover {

    transform:
        translateY(-8px);

}


/* =========================================================
   COUNTER POP
========================================================= */

.counter {

    display: inline-block;

}

.counter.counter-done {

    animation:
        counterPop .6s cubic-bezier(.16,1,.3,1);

}

@keyframes counterPop {

    0% {
        transform: scale(.7);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }

}


/* =========================================================
   ATHLETE IMAGE PARALLAX
========================================================= */

.parallax-image {

    overflow: hidden;

}

.parallax-image img {

    transform:
        scale(1.12);

    transition:
        transform .2s linear;

    will-change: transform;

}


/* =========================================================
   IMAGE REVEAL
========================================================= */

.image-reveal {

    position: relative;
    overflow: hidden;

}

.image-reveal::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--primary, #159ee3);

    transform:
        translateX(0);

    z-index: 3;

}

.image-reveal.active::after {

    transform:
        translateX(101%);

    transition:
        transform 1.1s cubic-bezier(.77,0,.18,1);

}


/* =========================================================
   BUTTON MAGNETIC FEEL
========================================================= */

.btn {

    position: relative;
    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .3s ease;

}

.btn::before {

    content: "";

    position: absolute;

    width: 0;
    height: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.16);

    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);

    transform:
        translate(-50%,-50%);

    transition:
        width .5s ease,
        height .5s ease;

}

.btn:hover::before {

    width: 300px;
    height: 300px;

}

.btn > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TOURNAMENT COUNTDOWN
========================================================= */

.countdown-box div {

    position: relative;

}

.countdown-box strong {

    transition:
        transform .3s ease;

}

.countdown-box strong.tick {

    animation:
        secondTick .4s ease;

}

@keyframes secondTick {

    0% {
        transform: translateY(-8px);
        opacity: .3;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}


/* =========================================================
   BACKGROUND PARTICLES
========================================================= */

.apex-particle {

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        rgba(74,205,255,.4);

    pointer-events: none;

    animation:
        particleFloat var(--particle-duration)
        ease-in-out infinite;

}

@keyframes particleFloat {

    0% {
        transform:
            translate3d(0,0,0)
            scale(.7);

        opacity: .2;
    }

    50% {
        transform:
            translate3d(
                var(--particle-x),
                var(--particle-y),
                0
            )
            scale(1.3);

        opacity: .8;
    }

    100% {
        transform:
            translate3d(0,0,0)
            scale(.7);

        opacity: .2;
    }

}


/* =========================================================
   MARQUEE
========================================================= */

.apex-marquee {

    overflow: hidden;
    white-space: nowrap;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

}

.apex-marquee-track {

    display: inline-flex;

    width: max-content;

    animation:
        apexMarquee 25s linear infinite;

}

.apex-marquee span {

    padding: 22px 35px;

    font-family:
        "Outfit",
        sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--primary);

}

@keyframes apexMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   GLOW HOVER
========================================================= */

.glow-hover {

    transition:
        box-shadow .4s ease,
        transform .4s ease;

}

.glow-hover:hover {

    box-shadow:
        0 20px 60px rgba(21,158,227,.15);

    transform:
        translateY(-8px);

}


/* =========================================================
   FLOATING BADGE
========================================================= */

.floating-badge {

    animation:
        badgeFloat 4s ease-in-out infinite;

}

@keyframes badgeFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(2deg);
    }

}


/* =========================================================
   HORIZONTAL LINE REVEAL
========================================================= */

.animated-line {

    width: 0;
    height: 2px;
    background: var(--primary);

}

.animated-line.active {

    width: 100%;

    transition:
        width 1.2s cubic-bezier(.16,1,.3,1);

}


/* =========================================================
   MOBILE OPTIMIZATION
========================================================= */

@media (max-width: 768px) {

    .apex-cursor-glow {
        display: none;
    }

    .hero-animate .hero-content > * {
        animation-duration: .8s;
    }

    .reveal,
    .reveal-left,
    .reveal-right {

        transform:
            translateY(45px);

    }

    .reveal.active,
    .reveal-left.active,
    .reveal-right.active {

        transform:
            translateY(0);

    }

    .tilt-card {
        transform: none !important;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

    }

}
/* =========================================================
   APEX AUTH PAGES
   LOGIN + REGISTER
========================================================= */

.auth-page {
    min-height: 100vh;
    background: #f5fbfe;
    overflow-x: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.auth-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* =========================================================
   VISUAL PANEL
========================================================= */

.auth-visual {
    position: relative;
    min-height: 100vh;

    background:
        url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=1400&q=90")
        center/cover no-repeat;

    overflow: hidden;
}


.auth-visual-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2, 47, 70, .94),
            rgba(8, 125, 177, .72),
            rgba(0, 30, 48, .82)
        );
}


.auth-visual-content {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    padding: 50px 65px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #fff;
}


/* =========================================================
   LOGO
========================================================= */

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: 23px;
    font-weight: 800;
    letter-spacing: .5px;
}


.auth-logo:hover {
    color: #fff;
}


.auth-logo-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #159ee3;

    color:#fff;

    font-size: 18px;
}


.auth-logo > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.auth-logo small {
    margin-top: 5px;

    font-family: "Inter", sans-serif;

    font-size: 7px;

    letter-spacing: 2px;

    opacity: .7;
}


/* =========================================================
   VISUAL CONTENT
========================================================= */

.auth-visual-text {
    max-width: 580px;

    animation:
        authContentReveal 1.1s
        cubic-bezier(.16,1,.3,1)
        forwards;
}


.auth-eyebrow,
.auth-small-title {
    display: inline-block;

    color: #62d7ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.auth-visual-text h1 {
    margin: 18px 0;

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: clamp(45px, 5vw, 72px);

    line-height: .98;

    letter-spacing: -2px;
}


.auth-visual-text h1 span {
    color: #67d8ff;
}


.auth-visual-text > p {
    max-width: 500px;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

.auth-stat-row {
    display: flex;
    gap: 40px;

    margin-top: 40px;
}


.auth-stat-row div {
    display: flex;
    flex-direction: column;
}


.auth-stat-row strong {
    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: 25px;
}


.auth-stat-row span {
    margin-top: 3px;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   VISUAL BOTTOM
========================================================= */

.auth-visual-bottom {
    display: flex;
    align-items: center;

    gap: 14px;

    max-width: 480px;
}


.auth-visual-bottom > i {
    color: #55d5ff;

    font-size: 22px;
}


.auth-visual-bottom p {
    color: rgba(255,255,255,.68);

    font-family: "Outfit", sans-serif;

    font-size: 14px;
}


/* =========================================================
   FORM PANEL
========================================================= */

.auth-form-panel {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 70px;

    background: #fff;
}


.auth-form-container {
    width: 100%;
    max-width: 500px;

    animation:
        authFormReveal 1s
        cubic-bezier(.16,1,.3,1)
        forwards;
}


@keyframes authContentReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


@keyframes authFormReveal {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   MOBILE LOGO
========================================================= */

.auth-mobile-logo {
    display: none;
}


/* =========================================================
   HEADING
========================================================= */

.auth-heading {
    margin-bottom: 30px;
}


.auth-heading h2 {
    margin: 8px 0;

    font-family: "Outfit", sans-serif;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.auth-heading h2 span {
    color: #159ee3;
}


.auth-heading p {
    max-width: 450px;

    color: #718692;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.auth-form {
    display: flex;
    flex-direction: column;

    gap: 19px;
}


.form-group {
    width: 100%;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #20323b;

    font-size: 11px;

    font-weight: 700;
}


.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.forgot-link {
    color: #159ee3;

    font-size: 10px;

    font-weight: 700;
}


.input-box {
    position: relative;

    display: flex;
    align-items: center;
}


.input-box > i:first-child {
    position: absolute;
    left: 15px;

    color: #9aabb4;

    font-size: 13px;

    pointer-events: none;

    transition: .3s ease;
}


.input-box input,
.input-box select {
    width: 100%;

    height: 50px;

    padding: 0 43px;

    border: 1px solid #dce8ed;

    border-radius: 9px;

    outline: none;

    background: #fbfdfe;

    color: #1d3039;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    transition:
        border .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        transform .3s ease;
}


.input-box input::placeholder {
    color: #a7b5bc;
}


.input-box input:focus,
.input-box select:focus {

    border-color: #159ee3;

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(21,158,227,.09);

}


.input-box:focus-within > i:first-child {
    color: #159ee3;

    transform: scale(1.12);
}


/* =========================================================
   PASSWORD BUTTON
========================================================= */

.password-toggle {
    position: absolute;

    right: 13px;

    border: 0;

    background: transparent;

    color: #9aabb4;

    cursor: pointer;

    transition: .3s ease;
}


.password-toggle:hover {
    color: #159ee3;

    transform: scale(1.1);
}


/* =========================================================
   OPTIONS
========================================================= */

.form-options {
    display: flex;
    justify-content: space-between;

    margin-top: -5px;
}


.remember-check,
.terms-check {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #697c85;

    font-size: 10px;

    cursor: pointer;
}


.remember-check input,
.terms-check input {
    display: none;
}


.remember-check span,
.terms-check > span {

    width: 17px;
    height: 17px;

    flex-shrink: 0;

    border: 1px solid #cbdbe2;

    border-radius: 4px;

    position: relative;

    transition: .3s ease;

}


.remember-check input:checked + span,
.terms-check input:checked + span {

    background: #159ee3;

    border-color: #159ee3;

}


.remember-check input:checked + span::after,
.terms-check input:checked + span::after {

    content: "\f00c";

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    color: #fff;

    font-size: 9px;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.auth-submit {

    width: 100%;

    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #159ee3,
            #087eb8
        );

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 25px
        rgba(21,158,227,.2);

    transition:
        transform .35s cubic-bezier(.16,1,.3,1),
        box-shadow .35s ease;
}


.auth-submit i {
    transition: transform .35s ease;
}


.auth-submit:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 35px
        rgba(21,158,227,.28);

}


.auth-submit:hover i {
    transform:
        translateX(5px);
}


.auth-submit:active {
    transform:
        translateY(0);
}


/* =========================================================
   DIVIDER
========================================================= */

.auth-divider {
    display: flex;
    align-items: center;

    gap: 12px;

    margin: 3px 0;
}


.auth-divider span {
    flex: 1;

    height: 1px;

    background: #e5edf0;
}


.auth-divider small {

    color: #a1afb5;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* =========================================================
   GOOGLE BUTTON
========================================================= */

.google-btn {

    width: 100%;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border: 1px solid #dce8ed;

    border-radius: 9px;

    background: #fff;

    color: #30434c;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.google-btn:hover {

    transform:
        translateY(-2px);

    border-color: #c4dbe4;

    box-shadow:
        0 10px 25px
        rgba(20,60,80,.08);

}


.google-icon {

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 700;

    color: #4285f4;
}


/* =========================================================
   SWITCH
========================================================= */

.auth-switch {

    text-align: center;

    color: #71838c;

    font-size: 11px;

    margin-top: 2px;
}


.auth-switch a {
    color: #159ee3;

    font-weight: 700;

    margin-left: 4px;
}


.auth-switch a:hover {
    text-decoration: underline;
}


/* =========================================================
   FOOTER
========================================================= */

.auth-footer {

    margin-top: 25px;

    text-align: center;
}


.auth-footer a {

    color: #82949d;

    font-size: 10px;

    transition: .3s ease;
}


.auth-footer a:hover {
    color: #159ee3;
}


.auth-footer i {
    margin-right: 5px;
}


/* =========================================================
   ERROR
========================================================= */

.form-error {

    display: block;

    min-height: 14px;

    margin-top: 5px;

    color: #e25555;

    font-size: 9px;

}


.input-error input,
.input-error select {

    border-color: #e25555 !important;

    box-shadow:
        0 0 0 4px rgba(226,85,85,.08) !important;

}


.input-success input {

    border-color: #35ad79 !important;

}


/* =========================================================
   REGISTER
========================================================= */

.register-wrapper {
    grid-template-columns: 1.05fr .95fr;
}


.register-form-panel {
    order: 1;

    align-items: flex-start;

    overflow-y: auto;
}


.register-visual {
    order: 2;

    background-image:
        url("https://images.unsplash.com/photo-1518604666860-9ed391f76460?auto=format&fit=crop&w=1400&q=90");
}


.register-container {
    max-width: 580px;
}


.register-form {
    gap: 14px;
}


.form-grid-2 {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


/* =========================================================
   SELECT
========================================================= */

.select-box select {

    appearance: none;

    -webkit-appearance: none;

    padding-right: 38px;

    cursor: pointer;
}


.select-arrow {

    position: absolute !important;

    right: 15px;

    left: auto !important;

    color: #9aabb4 !important;

    pointer-events: none;

    font-size: 9px !important;
}


/* =========================================================
   PASSWORD STRENGTH
========================================================= */

.password-strength {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 7px;
}


.strength-bar {

    display: flex;

    gap: 3px;

    flex: 1;
}


.strength-bar span {

    height: 3px;

    flex: 1;

    background: #e2eaed;

    border-radius: 5px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.password-strength small {

    min-width: 90px;

    color: #9aaab2;

    font-size: 8px;

    text-align: right;
}


.password-strength.weak .strength-bar span:nth-child(1) {
    background: #ef6b6b;
}


.password-strength.medium .strength-bar span:nth-child(-n+2) {
    background: #e5a94a;
}


.password-strength.good .strength-bar span:nth-child(-n+3) {
    background: #4cb6db;
}


.password-strength.strong .strength-bar span {
    background: #36ad7a;
}


/* =========================================================
   TERMS
========================================================= */

.terms-check {
    align-items: flex-start;

    margin-top: 3px;
}


.terms-check p {

    margin: 0;

    line-height: 1.5;
}


.terms-check a {

    color: #159ee3;

    font-weight: 600;
}


/* =========================================================
   REGISTER BENEFITS
========================================================= */

.register-benefits {

    display: flex;
    flex-direction: column;

    gap: 16px;

    margin-top: 35px;
}


.register-benefits div {

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.76);

    font-size: 12px;
}


.register-benefits i {

    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(99,216,255,.12);

    color: #63d8ff;

    font-size: 9px;
}


/* =========================================================
   TOAST
========================================================= */

.auth-toast {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 99999;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px 18px;

    border-radius: 10px;

    background: #fff;

    color: #30434c;

    box-shadow:
        0 15px 45px
        rgba(15,50,65,.18);

    font-size: 11px;

    transform:
        translateY(100px);

    opacity: 0;

    pointer-events: none;

    transition:
        .5s cubic-bezier(.16,1,.3,1);
}


.auth-toast.show {

    transform:
        translateY(0);

    opacity: 1;
}


.auth-toast i {
    color: #35ad79;

    font-size: 16px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .auth-form-panel {
        padding: 40px;
    }

    .auth-visual-content {
        padding: 40px;
    }

}


@media (max-width: 900px) {

    .auth-wrapper,
    .register-wrapper {

        display: block;

    }


    .auth-visual {

        display: none;

    }


    .auth-form-panel {

        min-height: 100vh;

        padding:
            35px 25px;

    }


    .auth-form-container {

        max-width: 540px;

    }


    .auth-mobile-logo {

        display: block;

        margin-bottom: 35px;

    }


    .auth-mobile-logo a {

        display: inline-flex;

        align-items: center;

        gap: 10px;

        color: #1e313a;

    }


    .auth-mobile-logo a > span {

        width: 40px;
        height: 40px;

        display: grid;
        place-items: center;

        background: #159ee3;

        color: #fff;

        border-radius: 10px;

    }


    .auth-mobile-logo strong {

        display: flex;
        flex-direction: column;

        font-family: "Outfit", sans-serif;

        font-size: 18px;

        line-height: 1;

    }


    .auth-mobile-logo small {

        margin-top: 4px;

        color: #8a9ca5;

        font-size: 6px;

        letter-spacing: 1.5px;

    }

}


@media (max-width: 560px) {

    .auth-form-panel {
        padding: 25px 18px;
    }


    .auth-heading h2 {
        font-size: 34px;
    }


    .auth-heading {
        margin-bottom: 25px;
    }


    .form-grid-2 {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .auth-form {
        gap: 15px;
    }


    .register-form {
        gap: 12px;
    }


    .auth-toast {

        right: 15px;
        left: 15px;
        bottom: 15px;

    }


    .password-strength {

        align-items: flex-start;

        flex-direction: column;

    }


    .password-strength small {

        width: 100%;

        text-align: left;

    }

}


@media (max-width: 380px) {

    .auth-heading h2 {
        font-size: 30px;
    }

    .input-box input,
    .input-box select {
        height: 47px;
    }

}
/* =========================================
   AUTH PAGE CONTROLS
========================================= */

.auth-page-controls {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

.auth-control-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #168bd1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.auth-control-btn:hover {
    transform: translateY(-3px) rotate(5deg);
    background: #168bd1;
    color: #fff;
    box-shadow: 0 12px 30px rgba(22, 139, 209, 0.30);
}

/* RTL */
html[dir="rtl"] .auth-page-controls {
    right: auto;
    left: 22px;
}

/* Mobile */
@media (max-width: 600px) {

    .auth-page-controls {
        top: 14px;
        right: 14px;
        gap: 7px;
    }

    html[dir="rtl"] .auth-page-controls {
        right: auto;
        left: 14px;
    }

    .auth-control-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
/* =========================================================
   INTRO VIDEO
========================================================= */

.intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 24px;
}

.intro-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* EXPERIENCE CARD */

.experience-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    z-index: 5;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .image-frame {
        height: 450px;
    }

    .experience-card {
        right: 20px;
        bottom: 20px;
    }

}


@media (max-width: 768px) {

    .image-frame {
        height: 380px;
        border-radius: 18px;
    }

    .experience-card {
        right: 15px;
        bottom: 15px;
    }

}


@media (max-width: 480px) {

    .image-frame {
        height: 300px;
    }

    .experience-card {
        right: 10px;
        bottom: 10px;
    }

}
/* =========================================================
   HERO VIDEO BACKGROUND
========================================================= */

.hero-one {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}


/* VIDEO */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;
}


/* BLUE OVERLAY */

.hero-one .hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 35, 58, 0.96) 0%,
            rgba(3, 55, 88, 0.82) 38%,
            rgba(7, 99, 150, 0.48) 68%,
            rgba(0, 0, 0, 0.20) 100%
        );

    z-index: -2;
}


/* CONTENT */

.hero-one .hero-content {
    position: relative;
    z-index: 3;
}


/* TEXT */

.hero-one .hero-text {
    max-width: 760px;
    padding: 120px 0 100px;
}


.hero-one .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}


.hero-one .eyebrow i {
    color: #28b8ff;
    font-size: 17px;
}


.hero-one h1 {
    margin: 0 0 24px;

    font-size: clamp(48px, 6vw, 86px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
}


.hero-one h1 span {
    color: #36c4ff;
}


.hero-one p {
    max-width: 650px;

    margin-bottom: 32px;

    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}


/* BUTTONS */

.hero-one .hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 34px;
}


.hero-one .btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 26px;

    border-radius: 50px;

    font-weight: 700;
    text-decoration: none;

    transition: all 0.35s ease;
}


.hero-one .btn-primary {
    background: #159fe5;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(21, 159, 229, 0.28);
}


.hero-one .btn-primary:hover {
    transform: translateY(-4px);
    background: #27b5f5;
    box-shadow: 0 18px 40px rgba(21, 159, 229, 0.40);
}


.hero-one .btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}


.hero-one .btn-outline-white:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}


/* FEATURES */

.hero-one .hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}


.hero-one .hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
}


.hero-one .hero-features i {
    color: #24b7f5;
    font-size: 17px;
}


/* SCROLL */

.hero-one .hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
    letter-spacing: 1px;
}


.hero-one .hero-scroll i {
    font-size: 18px;

    animation: heroScroll 1.8s ease-in-out infinite;
}


@keyframes heroScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .hero-one {
        min-height: 750px;
    }

    .hero-one .hero-text {
        max-width: 680px;
        padding: 110px 0 90px;
    }

    .hero-one h1 {
        font-size: clamp(46px, 7vw, 68px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-one {
        min-height: 720px;
        align-items: center;
    }

    .hero-one .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 35, 58, 0.94),
                rgba(3, 55, 88, 0.72)
            );
    }

    .hero-one .hero-text {
        padding: 90px 0 90px;
    }

    .hero-one h1 {
        font-size: clamp(40px, 11vw, 58px);
        letter-spacing: -1.5px;
    }

    .hero-one p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-one .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-one .btn {
        width: 100%;
    }

    .hero-one .hero-features {
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-one .hero-scroll {
        bottom: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-one {
        min-height: 700px;
    }

    .hero-one .eyebrow {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .hero-one h1 {
        font-size: 39px;
    }

    .hero-one p {
        font-size: 14px;
    }

    .hero-one .btn {
        min-height: 50px;
        font-size: 14px;
    }

}
/* =========================================================
   APEX HOME - BLANK SPACE FINAL FIX
========================================================= */

/* INTRO SECTION */
.intro-section {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
}


/* INTRO GRID */
.intro-section .intro-grid {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* INTRO IMAGE */
.intro-section .intro-image {
    min-height: 0 !important;
    height: auto !important;
}


/* INTRO CONTENT */
.intro-section .intro-content {
    min-height: 0 !important;
    height: auto !important;
}


/* =========================================================
   STOP REVEAL FROM CREATING INVISIBLE SPACE
========================================================= */

.intro-section .reveal,
.intro-section .reveal-left,
.intro-section .reveal-right {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* =========================================================
   PROGRAMS SECTION
========================================================= */

.programs-section {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}


/* PROGRAMS HEADING */
.programs-section .section-heading {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
}


/* PROGRAMS REVEAL */
.programs-section .reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* =========================================================
   GENERAL HOME SECTION FIX
========================================================= */

.home-one .section,
.home-one section {
    min-height: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .intro-section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .programs-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .intro-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .programs-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .intro-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .programs-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

}
/* =========================================================
   APEX HOME ONE + HOME TWO
   FINAL SPACING FIX
   ADD AT THE VERY END OF style.css
========================================================= */

/* -------------------------
   GLOBAL SECTION SPACING
------------------------- */

.section {
    padding: 85px 0;
}

/* =========================================================
   HOME ONE - PROGRAMS SPACE FIX
========================================================= */

.programs-section {
    padding-top: 75px;
    padding-bottom: 85px;
}

.programs-section .section-heading {
    margin-bottom: 38px;
}

.programs-section .section-heading.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.programs-section .section-heading h2 {
    margin: 12px 0 14px !important;
    line-height: 1.15;
}

.programs-section .section-heading p {
    margin: 0 auto !important;
    max-width: 720px;
}

.programs-section .program-grid {
    margin-top: 0 !important;
}

.programs-section .center-action {
    margin-top: 35px !important;
}


/* =========================================================
   HOME TWO - SPORTS SPACE FIX
========================================================= */

.home2-sports {
    padding-top: 75px !important;
    padding-bottom: 85px !important;
}

.home2-sports .split-heading {
    margin-bottom: 38px !important;
    align-items: end;
}

.home2-sports .split-heading h2 {
    margin: 12px 0 0 !important;
    line-height: 1.15;
}

.home2-sports .split-heading p {
    margin: 0 !important;
    max-width: 540px;
}

.home2-sports .sport-feature-grid {
    margin-top: 0 !important;
}


/* =========================================================
   NEW SHARED SECTION HEADING
========================================================= */

.apex-new-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.apex-new-heading .section-tag {
    display: inline-flex;
    margin-bottom: 12px;
}

.apex-new-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
}

.apex-new-heading h2 span {
    color: #2495d1;
}

.apex-new-heading p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}


/* =========================================================
   HOME ONE - TRAINING ZONES
========================================================= */

.training-zones-section {
    padding: 90px 0;
    overflow: hidden;
}

.training-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.training-zone-card {
    position: relative;
    min-height: 280px;
    padding: 28px;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(36, 149, 209, 0.12);
    box-shadow: 0 15px 45px rgba(24, 74, 105, 0.07);
    transition:
        transform 0.5s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

.training-zone-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(24, 74, 105, 0.15);
    border-color: rgba(36, 149, 209, 0.4);
}

.training-zone-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: rgba(36, 149, 209, 0.08);
}

.training-zone-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: rgba(36, 149, 209, 0.1);
    color: #2495d1;
    font-size: 22px;
    transition: transform 0.45s ease;
}

.training-zone-card:hover .training-zone-icon {
    transform: rotate(-8deg) scale(1.1);
}

.training-zone-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.training-zone-card p {
    margin: 0;
    line-height: 1.75;
    font-size: 15px;
    text-align: justify;
}

.training-zone-line {
    width: 42px;
    height: 3px;
    margin-top: 25px;
    border-radius: 50px;
    background: #2495d1;
    transition: width 0.5s ease;
}

.training-zone-card:hover .training-zone-line {
    width: 100%;
}


/* =========================================================
   HOME ONE - APEX METHOD
========================================================= */

.apex-method-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #edf8fd, #ffffff);
}

.apex-method-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 55px;
    align-items: center;
}

.apex-method-content h2 {
    margin: 12px 0 18px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
}

.apex-method-content h2 span {
    color: #2495d1;
}

.apex-method-content > p {
    margin: 0;
    line-height: 1.85;
    text-align: justify;
}

.apex-method-list {
    display: grid;
    gap: 14px;
}

.apex-method-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(36, 149, 209, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.apex-method-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(24, 74, 105, 0.1);
}

.apex-method-step {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #2495d1;
    color: #ffffff;
    font-weight: 800;
}

.apex-method-item h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.apex-method-item p {
    margin: 0;
    line-height: 1.6;
}


/* =========================================================
   HOME TWO - ATHLETE PATH
========================================================= */

.home2-path-section {
    padding: 90px 0;
    background: #ffffff;
}

.home2-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home2-path-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: #f7fbfe;
    border: 1px solid rgba(36, 149, 209, 0.1);
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(.22, 1, .36, 1),
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.home2-path-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(36, 149, 209, 0.08);
    transition: transform 0.6s ease;
}

.home2-path-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 25px 55px rgba(24, 74, 105, 0.12);
}

.home2-path-card:hover::after {
    transform: scale(1.8);
}

.home2-path-card > * {
    position: relative;
    z-index: 1;
}

.home2-path-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    margin-bottom: 24px;
    background: #2495d1;
    color: #ffffff;
    font-size: 24px;
}

.home2-path-card span {
    display: block;
    margin-bottom: 10px;
    color: #2495d1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.home2-path-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.home2-path-card p {
    margin: 0;
    line-height: 1.8;
}


/* =========================================================
   HOME TWO - LIVE ACADEMY STRIP
========================================================= */

.home2-live-section {
    padding: 90px 0;
    background: #edf8fd;
}

.home2-live-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
}

.home2-live-main {
    padding: 42px;
    border-radius: 26px;
    background: #2495d1;
    color: #ffffff;
}

.home2-live-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.home2-live-label i {
    animation: apexPulse 1.6s infinite;
}

.home2-live-main h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
}

.home2-live-main p {
    max-width: 600px;
    margin: 0 0 28px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.home2-live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.home2-live-stats div {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
}

.home2-live-stats strong {
    display: block;
    margin-bottom: 5px;
    font-size: 25px;
}

.home2-live-stats span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.home2-live-side {
    display: grid;
    gap: 18px;
}

.home2-live-card {
    padding: 25px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(36, 149, 209, 0.1);
    transition: transform 0.4s ease;
}

.home2-live-card:hover {
    transform: translateX(8px);
}

.home2-live-card i {
    color: #2495d1;
    font-size: 22px;
}

.home2-live-card h3 {
    margin: 14px 0 7px;
    font-size: 19px;
}

.home2-live-card p {
    margin: 0;
    line-height: 1.7;
}

@keyframes apexPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.55;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .training-zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-method-grid {
        grid-template-columns: 1fr;
    }

    .home2-path-grid {
        grid-template-columns: 1fr;
    }

    .home2-live-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {

    .section {
        padding: 70px 0;
    }

    .programs-section,
    .home2-sports {
        padding-top: 65px !important;
        padding-bottom: 70px !important;
    }

    .programs-section .section-heading,
    .apex-new-heading {
        margin-bottom: 30px;
    }

    .home2-sports .split-heading {
        margin-bottom: 30px !important;
    }

    .training-zones-section,
    .apex-method-section,
    .home2-path-section,
    .home2-live-section {
        padding: 70px 0;
    }

    .training-zones-grid {
        grid-template-columns: 1fr;
    }

    .training-zone-card {
        min-height: auto;
    }

    .home2-live-main {
        padding: 30px 24px;
    }

    .home2-live-stats {
        grid-template-columns: 1fr;
    }

    .apex-method-item:hover,
    .home2-live-card:hover {
        transform: translateY(-5px);
    }
}


@media (max-width: 480px) {

    .apex-method-item {
        grid-template-columns: 1fr;
    }

    .training-zone-card,
    .home2-path-card {
        padding: 25px;
    }
}
/* =========================================================
   FINAL FIX - PROGRAMS HEADING INVISIBLE GAP
========================================================= */

/* JS adds .show, so make the heading animation respond to .show */
.programs-section .section-heading.show h2,
.programs-section .section-heading.reveal.show h2 {
    clip-path: inset(0 0 0 0) !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Make paragraph sit closer to heading */
.programs-section .section-heading h2 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

.programs-section .section-heading p {
    margin-top: 0 !important;
}

/* Reduce top space of Programs */
.programs-section {
    padding-top: 55px !important;
    padding-bottom: 70px !important;
}

/* Mobile */
@media (max-width: 768px) {

    .programs-section {
        padding-top: 45px !important;
        padding-bottom: 55px !important;
    }

    .programs-section .section-heading h2 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

}
/* =========================================================
   BANNER CONTENT - PERFECT CENTER
========================================================= */

.hero {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 3;

    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text .eyebrow {
    justify-content: center;
}

.hero-text h1 {
    margin-left: auto;
    margin-right: auto;
}

.hero-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.hero-buttons {
    justify-content: center;
}

.hero-features {
    justify-content: center;
}
/* =========================================================
   NAV ACTION BUTTONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Login Button */
.nav-actions .login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 82px;
    height: 46px;
    padding: 0 20px;

    border: 1px solid #d8e8f2;
    border-radius: 10px;

    background: #ffffff;
    color: #183b52;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.nav-actions .login-link:hover {
    background: #2495d1;
    border-color: #2495d1;
    color: #ffffff;
    transform: translateY(-2px);
}


/* Join Academy Button */
.nav-actions .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    height: 46px;
    padding: 0 18px;

    border-radius: 10px;

    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-align: center;

    flex-shrink: 0;

    transition: all 0.3s ease;
}

.nav-actions .nav-btn:hover {
    transform: translateY(-2px);
}
/* =========================================================
   WHY APEX - FIX INVISIBLE HEADING SPACE
========================================================= */

.why-section .section-heading.show h2 {
    clip-path: inset(0 0 0 0) !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Keep heading and paragraph close */
.why-section .section-heading h2 {
    margin-top: 8px !important;
    margin-bottom: 14px !important;
}

.why-section .section-heading p {
    margin-top: 0 !important;
}


/* Reduce section top/bottom space */
.why-section {
    padding-top: 65px !important;
    padding-bottom: 70px !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .why-section {
        padding-top: 55px !important;
        padding-bottom: 60px !important;
    }

}


@media (max-width: 768px) {

    .why-section {
        padding-top: 45px !important;
        padding-bottom: 55px !important;
    }

    .why-section .section-heading h2 {
        margin-top: 6px !important;
        margin-bottom: 12px !important;
    }

}
/* =========================================================
   PROGRAMS - RUNNING BALL BACKGROUND ANIMATION
========================================================= */

.programs-section {
    position: relative;
    overflow: hidden;
}


/* Ball layer */
.programs-ball {
    position: absolute;

    top: 52%;
    left: -100px;

    z-index: 1;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;

    animation: programsBallRun 10s linear infinite;
}


/* Ball */
.programs-ball i {
    font-size: 62px;
    color: #2495d1;

    filter:
        drop-shadow(0 8px 12px rgba(20, 110, 160, 0.22));

    animation: programsBallRotate 1.1s linear infinite;
}


/* Keep all actual Programs content above ball */
.programs-section .container,
.programs-section .section-heading,
.programs-section .programs-grid,
.programs-section .program-card,
.programs-section .programs-bottom {
    position: relative;
    z-index: 2;
}


/* Ball travels across the complete section */
@keyframes programsBallRun {

    0% {
        left: -90px;
        transform: translateY(0) scale(0.85);
    }

    12% {
        transform: translateY(-35px) scale(0.9);
    }

    25% {
        transform: translateY(15px) scale(0.95);
    }

    38% {
        transform: translateY(-45px) scale(1);
    }

    50% {
        left: calc(100% + 20px);
        transform: translateY(10px) scale(1.05);
    }

    62% {
        left: calc(100% + 20px);
        transform: translateY(-40px) scale(0.95);
    }

    75% {
        transform: translateY(15px) scale(0.9);
    }

    88% {
        transform: translateY(-30px) scale(0.88);
    }

    100% {
        left: -90px;
        transform: translateY(0) scale(0.85);
    }
}


/* Ball spinning */
@keyframes programsBallRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .programs-ball {
        top: 55%;
    }

    .programs-ball i {
        font-size: 52px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .programs-ball {
        top: 60%;
    }

    .programs-ball i {
        font-size: 42px;
    }

}
/* =========================================================
   WHY APEX - REAL SPORTS OBJECT BACKGROUND
========================================================= */

.why-section {
    position: relative;
    overflow: hidden;
}

.sports-decoration {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.why-section > .container {
    position: relative;
    z-index: 5;
}


/* Base object */

.sport-object {
    position: absolute;

    width: 210px;
    height: 210px;

    object-fit: contain;

    opacity: 0.14;

    filter: saturate(0.75);

    user-select: none;

    will-change: transform;

    animation:
        sportFloat 8s ease-in-out infinite;
}


/* LEFT TOP */

.sport-object-1 {
    left: -35px;
    top: 35px;

    width: 190px;
    height: 190px;

    transform: rotate(-12deg);

    animation-delay: 0s;
}


/* RIGHT TOP */

.sport-object-2 {
    right: -35px;
    top: 25px;

    width: 190px;
    height: 190px;

    transform: rotate(12deg);

    animation-delay: 1.8s;
}


/* LEFT BOTTOM */

.sport-object-3 {
    left: 20px;
    bottom: -35px;

    width: 170px;
    height: 170px;

    transform: rotate(18deg);

    animation-delay: 3.2s;
}


/* RIGHT BOTTOM */

.sport-object-4 {
    right: 10px;
    bottom: -30px;

    width: 180px;
    height: 180px;

    transform: rotate(-15deg);

    animation-delay: 4.5s;
}


/* =========================================================
   FLOATING MOTION
========================================================= */

@keyframes sportFloat {

    0% {
        margin-top: 0;
        margin-left: 0;
        transform: rotate(-10deg);
    }

    25% {
        margin-top: -18px;
        margin-left: 12px;
        transform: rotate(0deg);
    }

    50% {
        margin-top: 8px;
        margin-left: 22px;
        transform: rotate(10deg);
    }

    75% {
        margin-top: -12px;
        margin-left: 8px;
        transform: rotate(3deg);
    }

    100% {
        margin-top: 0;
        margin-left: 0;
        transform: rotate(-10deg);
    }
}


/* =========================================================
   LIGHT BLUE TRAILS
========================================================= */

.sports-decoration::before,
.sports-decoration::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 180px;

    border: 2px dashed rgba(36, 149, 209, 0.07);

    border-radius: 50%;

    pointer-events: none;
}

.sports-decoration::before {
    left: -180px;
    top: 38%;

    transform: rotate(-15deg);
}

.sports-decoration::after {
    right: -180px;
    top: 45%;

    transform: rotate(18deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .sport-object {
        width: 150px;
        height: 150px;
        opacity: 0.10;
    }

    .sport-object-1 {
        left: -45px;
    }

    .sport-object-2 {
        right: -45px;
    }

    .sport-object-3 {
        left: -30px;
    }

    .sport-object-4 {
        right: -30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .sport-object {
        width: 110px;
        height: 110px;

        opacity: 0.07;
    }

    .sport-object-1 {
        left: -35px;
        top: 30px;
    }

    .sport-object-2 {
        right: -35px;
        top: 25px;
    }

    .sport-object-3 {
        left: -25px;
        bottom: 20px;
    }

    .sport-object-4 {
        right: -25px;
        bottom: 15px;
    }

}
/* =========================================================
   APEX APPROACH - NEW PREMIUM SECTION
========================================================= */

.apex-approach-section {
    position: relative;
    padding: 105px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.apex-approach-top {
    display: grid;
    grid-template-columns: 1fr 1.15fr .72fr;
    align-items: center;
    gap: 35px;
}


/* LEFT CONTENT */

.apex-approach-intro {
    position: relative;
    z-index: 3;
}

.apex-approach-intro .section-tag {
    margin-bottom: 0;
}

.approach-line {
    width: 55px;
    height: 2px;
    margin: 8px 0 20px;
    background: var(--primary);
}

.apex-approach-intro h2 {
    max-width: 430px;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.apex-approach-intro h2 span {
    display: block;
    color: var(--primary);
}

.apex-approach-intro p {
    max-width: 500px;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 14px;
}

.approach-signature {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-style: italic;
    transform: rotate(-4deg);
    width: max-content;
}

.approach-signature span:first-child {
    color: var(--primary);
}

.approach-signature strong {
    color: var(--black);
}


/* CENTER METHOD VISUAL */

.apex-method-visual {
    position: relative;
    width: 470px;
    height: 470px;
    max-width: 100%;
    margin: auto;
}

.method-orbit {
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(21, 158, 227, .18);
    border-radius: 50%;
}

.orbit-one {
    transform: rotate(28deg) scaleX(.72);
}

.orbit-two {
    transform: rotate(-28deg) scaleX(.72);
}

.method-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 15px 45px rgba(21, 158, 227, .25),
        0 0 0 12px rgba(21, 158, 227, .06);
    z-index: 5;
}

.method-center i {
    font-size: 18px;
    margin-bottom: 7px;
}

.method-center span {
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 1px;
}


.method-point {
    position: absolute;
    z-index: 6;
    width: 115px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.method-point-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(21,158,227,.2);
    box-shadow: 0 8px 25px rgba(20,80,110,.09);
    transition: .4s ease;
}

.method-point strong {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    line-height: 1.3;
}

.method-point:hover .method-point-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.12);
}


/* POINT POSITIONS */

.point-one {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.point-two {
    top: 95px;
    right: 12px;
}

.point-three {
    bottom: 58px;
    right: 32px;
}

.point-four {
    bottom: 55px;
    left: 32px;
}

.point-five {
    top: 95px;
    left: 12px;
}


/* RIGHT IMAGE */

.apex-approach-image {
    position: relative;
    z-index: 3;
}

.approach-image-frame {
    position: relative;
    overflow: hidden;
    height: 430px;
    border-radius: 24px 24px 24px 5px;
}

.approach-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(21,158,227,.03),
        rgba(3,30,50,.18)
    );
    pointer-events: none;
}

.approach-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease;
}

.apex-approach-image:hover .approach-image-frame img {
    transform: scale(1.06);
}

.image-corner {
    position: absolute;
    width: 45px;
    height: 45px;
    z-index: 4;
    border-color: #55c9ff;
}

.top-corner {
    top: 15px;
    right: 15px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.bottom-corner {
    bottom: 15px;
    left: 15px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.approach-floating-note {
    position: absolute;
    left: -32px;
    bottom: 35px;
    padding: 15px 18px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transform: rotate(-4deg);
}

.approach-floating-note strong {
    color: var(--primary);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
}

.approach-floating-note span {
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
}


/* CORE HEADING */

.apex-core-heading {
    text-align: center;
    margin: 90px auto 35px;
}

.apex-core-heading .section-tag {
    margin-bottom: 8px;
}

.apex-core-heading h3 {
    font-size: clamp(25px, 3vw, 34px);
}

.apex-core-heading h3 span {
    color: var(--primary);
}


/* CORE GRID */

.apex-core-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.apex-core-card {
    position: relative;
    overflow: hidden;
    min-height: 355px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 7px 20px rgba(25,89,120,.06);
    transition: .45s ease;
}

.apex-core-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21,158,227,.35);
}

.core-number {
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 8;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 9px;
    font-weight: 800;
}

.core-image {
    height: 130px;
    overflow: hidden;
}

.core-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.apex-core-card:hover .core-image img {
    transform: scale(1.08);
}

.core-icon {
    width: 31px;
    height: 31px;
    margin: -15px 0 0 12px;
    position: relative;
    z-index: 5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(20,80,110,.12);
    font-size: 11px;
}

.apex-core-card h4 {
    margin: 12px 12px 3px;
    font-size: 15px;
    color: var(--black);
}

.apex-core-card > strong {
    display: block;
    margin: 0 12px;
    color: var(--primary-dark);
    font-family: "Outfit", sans-serif;
    font-size: 11px;
}

.apex-core-card p {
    margin: 8px 12px 15px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.core-arrow {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--primary);
    font-size: 9px;
    transition: .35s ease;
}

.apex-core-card:hover .core-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}


/* BOTTOM CTA */

.apex-approach-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 35px;
    padding: 22px 28px;
    min-height: 105px;
    border-radius: 12px;
    background:
        linear-gradient(
            100deg,
            #073456 0%,
            #0a4770 55%,
            #0d79ae 100%
        );
}

.apex-approach-cta::after {
    content: "APEX";
    position: absolute;
    right: 30px;
    bottom: -35px;
    color: rgba(255,255,255,.05);
    font-family: "Outfit", sans-serif;
    font-size: 130px;
    font-weight: 900;
    pointer-events: none;
}

.approach-cta-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    color: #55c9ff;
    font-size: 17px;
}

.approach-cta-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.approach-cta-text > span {
    color: #8fddff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.approach-cta-text strong {
    margin-top: 2px;
    color: var(--primary);
    font-family: "Outfit", sans-serif;
    font-size: 21px;
}

.approach-cta-text strong b {
    color: #55c9ff;
}

.approach-cta-text p {
    color: rgba(255,255,255,.7);
    font-size: 15px;
}

.apex-approach-cta .btn {
    position: relative;
    z-index: 3;
    margin-left: auto;
    min-height: 38px;
    padding: 9px 16px;
    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .apex-approach-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .apex-approach-image {
        display: none;
    }

    .apex-method-visual {
        width: 430px;
        height: 430px;
    }

    .apex-core-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

}


@media (max-width: 768px) {

    .apex-approach-section {
        padding: 70px 0;
    }

    .apex-approach-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apex-approach-intro {
        text-align: center;
    }

    .apex-approach-intro h2 {
        margin-inline: auto;
    }

    .apex-approach-intro p {
        margin-inline: auto;
        text-align: center;
    }

    .approach-line {
        margin-inline: auto;
    }

    .approach-signature {
        margin-inline: auto;
    }

    .apex-method-visual {
        width: 350px;
        height: 350px;
    }

    .method-orbit {
        inset: 42px;
    }

    .method-center {
        width: 92px;
        height: 92px;
    }

    .method-point {
        width: 85px;
    }

    .method-point-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .method-point strong {
        font-size: 15px;
    }

    .point-two {
        right: 0;
    }

    .point-five {
        left: 0;
    }

    .point-three {
        right: 8px;
        bottom: 35px;
    }

    .point-four {
        left: 8px;
        bottom: 35px;
    }

    .apex-core-heading {
        margin-top: 65px;
    }

    .apex-core-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-approach-cta {
        flex-wrap: wrap;
    }

    .apex-approach-cta .btn {
        margin-left: 70px;
    }

}


@media (max-width: 480px) {

    .apex-method-visual {
        width: 300px;
        height: 300px;
    }

    .method-orbit {
        inset: 35px;
    }

    .method-center {
        width: 80px;
        height: 80px;
    }

    .method-center span {
        font-size: 8px;
    }

    .method-point {
        width: 70px;
    }

    .method-point strong {
        font-size: 25px;
    }

    .apex-core-grid {
        grid-template-columns: 1fr;
    }

    .apex-core-card {
        min-height: 330px;
    }

    .apex-approach-cta {
        padding: 20px;
        gap: 14px;
    }

    .approach-cta-text strong {
        font-size: 17px;
    }

    .apex-approach-cta .btn {
        margin-left: 0;
        width: 100%;
    }

}
/* =========================================================
   APEX APPROACH - FULL RESPONSIVE FIX
========================================================= */

/* ---------- LARGE TABLET ---------- */
@media (max-width: 1200px) {

    .apex-approach-section {
        padding: 90px 0 75px;
    }

    .apex-approach-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .apex-approach-intro h2 {
        font-size: 42px;
    }

    .apex-method-visual {
        width: 410px;
        height: 410px;
    }

    .apex-approach-image {
        display: none;
    }

    .apex-core-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .apex-core-card {
        min-height: 350px;
    }
}


/* ---------- TABLET ---------- */
@media (max-width: 900px) {

    .apex-approach-section {
        padding: 75px 0 65px;
    }

    .apex-approach-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    /* TEXT */

    .apex-approach-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .apex-approach-intro h2 {
        max-width: 600px;
        margin: 0 auto 20px;
        font-size: 42px;
    }

    .apex-approach-intro p {
        max-width: 650px;
        margin: 12px auto;
    }

    .approach-line {
        margin: 8px auto 20px;
    }

    .approach-signature {
        margin: 25px auto 0;
        text-align: left;
    }


    /* METHOD DIAGRAM */

    .apex-method-visual {
        width: 430px;
        height: 430px;
        margin: 0 auto;
    }

    .method-orbit {
        inset: 55px;
    }


    /* CORE */

    .apex-core-heading {
        margin-top: 70px;
        margin-bottom: 30px;
    }

    .apex-core-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .apex-core-card {
        min-height: 360px;
    }


    /* CTA */

    .apex-approach-cta {
        padding: 25px;
        gap: 18px;
    }

    .approach-cta-text {
        flex: 1;
    }

    .apex-approach-cta .btn {
        margin-left: 0;
    }
}


/* ---------- MOBILE ---------- */
@media (max-width: 600px) {

    .apex-approach-section {
        padding: 60px 0 55px;
    }

    .apex-approach-top {
        gap: 35px;
    }


    /* TEXT */

    .apex-approach-intro {
        padding: 0 8px;
    }

    .apex-approach-intro h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .apex-approach-intro p {
        font-size: 13px;
        line-height: 1.75;
    }


    /* DIAGRAM */

    .apex-method-visual {
        width: 340px;
        height: 340px;
    }

    .method-orbit {
        inset: 43px;
    }

    .method-center {
        width: 92px;
        height: 92px;
    }

    .method-center i {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .method-center span {
        font-size: 8px;
        letter-spacing: .7px;
    }

    .method-point {
        width: 78px;
        gap: 5px;
    }

    .method-point-icon {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .method-point strong {
        font-size: 8px;
        line-height: 1.25;
    }


    /* TOP POINT */

    .point-one {
        top: 0;
    }


    /* RIGHT POINT */

    .point-two {
        top: 70px;
        right: 0;
    }


    /* LEFT POINT */

    .point-five {
        top: 70px;
        left: 0;
    }


    /* BOTTOM RIGHT */

    .point-three {
        right: 12px;
        bottom: 22px;
    }


    /* BOTTOM LEFT */

    .point-four {
        left: 12px;
        bottom: 22px;
    }


    /* CORE HEADING */

    .apex-core-heading {
        margin-top: 55px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .apex-core-heading h3 {
        font-size: 25px;
        line-height: 1.25;
    }


    /* CORE CARDS */

    .apex-core-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 5px;
    }

    .apex-core-card {
        min-height: 0;
        padding-bottom: 18px;
    }

    .core-image {
        height: 175px;
    }

    .apex-core-card h4 {
        font-size: 16px;
    }

    .apex-core-card > strong {
        font-size: 11px;
    }

    .apex-core-card p {
        font-size: 11px;
        line-height: 1.65;
        max-width: 90%;
    }


    /* CTA */

    .apex-approach-cta {
        margin-top: 25px;
        padding: 22px 18px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .approach-cta-icon {
        width: 45px;
        height: 45px;
    }

    .approach-cta-text strong {
        font-size: 18px;
        line-height: 1.3;
    }

    .approach-cta-text p {
        font-size: 10px;
        line-height: 1.6;
        margin-top: 5px;
    }

    .apex-approach-cta .btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .apex-approach-cta::after {
        font-size: 90px;
        right: 5px;
        bottom: -20px;
    }
}


/* ---------- SMALL MOBILE ---------- */
@media (max-width: 380px) {

    .apex-approach-section {
        padding: 50px 0;
    }

    .apex-approach-intro h2 {
        font-size: 29px;
    }

    .apex-method-visual {
        width: 285px;
        height: 285px;
    }

    .method-orbit {
        inset: 35px;
    }

    .method-center {
        width: 76px;
        height: 76px;
    }

    .method-center span {
        font-size: 7px;
    }

    .method-point {
        width: 65px;
    }

    .method-point-icon {
        width: 31px;
        height: 31px;
        font-size: 9px;
    }

    .method-point strong {
        font-size: 7px;
    }

    .point-two {
        top: 58px;
    }

    .point-five {
        top: 58px;
    }

    .point-three {
        bottom: 15px;
    }

    .point-four {
        bottom: 15px;
    }

    .core-image {
        height: 155px;
    }

    .apex-core-heading h3 {
        font-size: 22px;
    }
}


/* ---------- LANDSCAPE MOBILE ---------- */
@media (max-height: 500px) and (max-width: 900px) {

    .apex-approach-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .apex-method-visual {
        width: 300px;
        height: 300px;
    }

}
/* =========================================================
   APEX HOME TWO - NEW DESIGN
========================================================= */

.h2-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #061d30;
}

.h2-hero-image,
.h2-hero-overlay {
    position: absolute;
    inset: 0;
}

.h2-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h2-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(3,25,42,.94),
        rgba(3,36,57,.70),
        rgba(3,25,42,.15)
    );
}

.h2-hero-container {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.h2-hero-content {
    max-width: 680px;
    color: #fff;
}

.h2-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #65d1ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.h2-hero-content h1 {
    margin: 0;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(60px, 8vw, 108px);
    line-height: .9;
    letter-spacing: -4px;
}

.h2-hero-content h1 span {
    display: block;
    color: #35b8f2;
}

.h2-hero-content p {
    max-width: 560px;
    margin: 30px 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.8;
}

.h2-hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.h2-outline-btn {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: .35s ease;
}

.h2-outline-btn:hover {
    background: #fff;
    color: #082c47;
}

.h2-hero-side {
    position: absolute;
    right: 0;
    bottom: 105px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.h2-hero-side span:first-child {
    color: #65d1ff;
}

.h2-hero-bottom {
    position: absolute;
    z-index: 3;
    left: 5%;
    right: 5%;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* MARQUEE */

.h2-marquee {
    overflow: hidden;
    padding: 18px 0;
    background: #082c47;
}

.h2-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    animation: h2Marquee 24s linear infinite;
}

.h2-marquee-track b {
    color: #35b8f2;
    font-size: 18px;
}

@keyframes h2Marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* COMMON */

.h2-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 45px;
    margin-bottom: 45px;
}

.h2-heading-row h2,
.h2-center-heading h2,
.h2-progress-heading h2,
.h2-numbers h2,
.h2-competition-heading h2 {
    margin-top: 10px;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
}

.h2-heading-row h2 span,
.h2-center-heading h2 span,
.h2-progress-heading h2 span,
.h2-numbers h2 span,
.h2-competition-heading h2 span {
    color: #159ee3;
}

.h2-heading-row p {
    max-width: 450px;
    color: #667b8d;
    font-size: 14px;
    line-height: 1.8;
}

.h2-center-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.h2-center-heading p {
    color: #667b8d;
    font-size: 13px;
    line-height: 1.7;
}


/* SPORTS */

.h2-sports {
    padding: 105px 0;
    background: #fff;
}

.h2-sport-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-auto-rows: 255px;
    gap: 13px;
}

.h2-sport-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 255px;
    border-radius: 13px;
}

.h2-sport-large {
    grid-row: span 2;
}

.h2-sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease;
}

.h2-sport-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 25%,
        rgba(3,22,36,.92)
    );
}

.h2-sport-card:hover img {
    transform: scale(1.08);
}

.h2-sport-overlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    color: #fff;
}

.h2-sport-overlay small {
    color: #65d1ff;
    font-size: 9px;
    font-weight: 800;
}

.h2-sport-overlay h3 {
    margin: 4px 0;
    color: #fff;
    font-size: 24px;
}

.h2-sport-overlay span {
    color: rgba(255,255,255,.68);
    font-size: 10px;
}


/* JOURNEY */

.h2-journey {
    padding: 105px 0;
    background: #f1faff;
}

.h2-journey-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
}

.h2-journey-grid::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(21,158,227,.25);
}

.h2-journey-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.h2-journey-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border: 5px solid #f1faff;
    border-radius: 50%;
    background: #159ee3;
    color: yellow;
    font-family: "Outfit",sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.h2-journey-item small {
    color: #159ee3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.h2-journey-item h3 {
    margin: 6px 0;
    font-size: 18px;
}

.h2-journey-item p {
    color: #667b8d;
    font-size: 13px;
    line-height: 1.6;
}


/* TRAINING LAB */

.h2-training-lab {
    padding: 110px 0;
    background: #fff;
}

.h2-lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.h2-lab-image {
    position: relative;
    height: 570px;
    overflow: hidden;
    border-radius: 22px;
}

.h2-lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h2-lab-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 55%,
        rgba(2,27,44,.72)
    );
}

.h2-lab-label {
    position: absolute;
    z-index: 2;
    left: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.h2-lab-label small {
    color: #65d1ff;
    font-size: 9px;
    font-weight: 800;
}

.h2-lab-label strong {
    font-family: "Outfit",sans-serif;
    font-size: 25px;
}

.h2-lab-content > p {
    max-width: 600px;
    color: #667b8d;
    font-size: 14px;
    line-height: 1.85;
    text-align: justify;
}

.h2-lab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    margin-top: 35px;
}

.h2-lab-item {
    display: flex;
    gap: 13px;
}

.h2-lab-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #e9f8ff;
    color: #159ee3;
}

.h2-lab-item small {
    color: #9ab0bf;
    font-size: 8px;
    font-weight: 800;
}

.h2-lab-item h4 {
    margin: 2px 0 4px;
    font-size: 14px;
}

.h2-lab-item p {
    margin: 0;
    color: #667b8d;
    font-size: 13px;
    line-height: 1.5;
}


/* SESSION */

.h2-session {
    padding: 105px 0;
}

.h2-session-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.h2-session-intro {
    position: relative;
}

.session-big-number {
    position: absolute;
    top: -55px;
    left: -5px;
    color: rgba(21,158,227,.08);
    font-family: "Outfit",sans-serif;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
}

.h2-session-intro h3 {
    position: relative;
    z-index: 2;
    font-size: 43px;
    line-height: 1.05;
}

.h2-session-intro h3 span {
    color: #159ee3;
}

.h2-session-intro p {
    position: relative;
    z-index: 2;
    color: #667b8d;
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
}

.h2-session-timeline {
    border-top: 1px solid #d9e7ee;
}

.h2-session-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #d9e7ee;
}

.h2-session-row time {
    color: #159ee3;
    padding-top: 5px;
    font-family: "Outfit",sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.h2-session-row > div {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
}

.h2-session-row > div > span {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf8ff;
    color: #159ee3;
    font-size: 8px;
    font-weight: 800;
}

.h2-session-row strong {
    font-size: 15px;
}

.h2-session-row p {
    grid-column: 2;
    margin: 2px 0 0;
    color: #667b8d;
    font-size: 13px;
}


/* PLAYBOOK */

.h2-playbook {
    padding: 110px 0;
    background: #edf9ff;
}

.h2-playbook-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: center;
}

.h2-playbook-content h2 {
    font-size: 55px;
    line-height: 1;
}

.h2-playbook-content h2 span {
    color: #159ee3;
}

.h2-playbook-content p {
    max-width: 480px;
    margin: 25px 0;
    color: #667b8d;
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
}

.h2-playbook-board {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid rgba(8,44,71,.13);
    border-radius: 20px;
    background:
        linear-gradient(rgba(8,44,71,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,44,71,.05) 1px, transparent 1px),
        #fff;
    background-size: 28px 28px;
}

.playbook-stamp {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 8px;
    border: 2px solid rgba(21,158,227,.35);
    color: rgba(21,158,227,.55);
    font-size: 8px;
    font-weight: 900;
    text-align: center;
    transform: rotate(8deg);
}

.playbook-box {
    position: absolute;
    width: 180px;
    padding: 15px;
    border-left: 3px solid #159ee3;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8,44,71,.08);
}

.playbook-box small {
    color: #159ee3;
    font-size: 8px;
    font-weight: 800;
}

.playbook-box strong {
    display: block;
    margin: 4px 0;
    font-family: "Outfit",sans-serif;
    font-size: 13px;
}

.playbook-box span {
    color: #667b8d;
    font-size: 10px;
}

.playbook-one {
    left: 8%;
    top: 22%;
}

.playbook-two {
    right: 8%;
    top: 37%;
}

.playbook-three {
    left: 10%;
    bottom: 16%;
}

.playbook-four {
    right: 10%;
    bottom: 8%;
}

.playbook-arrow {
    position: absolute;
    color: #159ee3;
}

.arrow-one {
    left: 45%;
    top: 30%;
    transform: rotate(25deg);
}

.arrow-two {
    right: 42%;
    top: 57%;
    transform: rotate(150deg);
}

.arrow-three {
    left: 45%;
    bottom: 17%;
    transform: rotate(20deg);
}


/* PROGRESS */

.h2-progress {
    padding: 105px 0;
    background: #fff;
}

.h2-progress-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.h2-progress-heading p {
    color: #667b8d;
    font-size: 13px;
}

.h2-dashboard {
    overflow: hidden;
    border-radius: 18px;
    background: #082c47;
    color: #fff;
    box-shadow: 0 25px 70px rgba(8,44,71,.17);
}

.h2-dashboard-top,
.h2-dashboard-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.h2-dashboard-top small,
.h2-main-progress > span,
.h2-stat-box > span,
.h2-next-tournament small {
    display: block;
    color: #73cdef;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.h2-dashboard-top strong {
    display: block;
    margin-top: 3px;
    font-family: "Outfit",sans-serif;
    font-size: 18px;
}

.dashboard-active {
    color: #74e3ae;
    font-size: 9px;
    font-weight: 800;
}

.dashboard-active i {
    font-size: 6px;
}

.h2-dashboard-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.08);
}

.h2-dashboard-grid > div {
    padding: 25px;
    background: #082c47;
}

.h2-main-progress {
    grid-row: span 2;
}

.h2-main-progress > strong {
    display: block;
    margin: 15px 0 8px;
    font-family: "Outfit",sans-serif;
    font-size: 64px;
}

.h2-main-progress > strong small {
    color: #35b8f2;
    font-size: 25px;
}

.h2-progress-bar,
.h2-mini-bar {
    overflow: hidden;
    height: 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
}

.h2-progress-bar i,
.h2-mini-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #35b8f2;
}

.h2-main-progress p {
    color: rgba(255,255,255,.55);
    font-size: 9px;
}

.h2-stat-box strong {
    display: block;
    margin: 12px 0;
    font-family: "Outfit",sans-serif;
    font-size: 30px;
}

.h2-mini-bar {
    height: 4px;
}

.h2-next-tournament {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    gap: 14px;
}

.h2-next-tournament strong {
    color: #35b8f2;
    font-family: "Outfit",sans-serif;
    font-size: 42px;
}

.h2-next-tournament > span {
    color: rgba(255,255,255,.55);
    font-size: 9px;
    font-weight: 800;
}

.h2-dashboard-bottom {
    flex-wrap: wrap;
    border: 0;
}

.h2-dashboard-bottom span {
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.h2-dashboard-bottom span i {
    margin-right: 5px;
    color: #35b8f2;
}

.h2-dashboard-bottom a {
    margin-left: auto;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}


/* COMPETITION */

.h2-competition {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #06233a;
    color: #fff;
}

.h2-court-bg {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(
            90deg,
            transparent 49.5%,
            #8edfff 49.5%,
            #8edfff 50.5%,
            transparent 50.5%
        ),
        linear-gradient(
            0deg,
            transparent 49.5%,
            #8edfff 49.5%,
            #8edfff 50.5%,
            transparent 50.5%
        );
    background-size: 100px 100px;
    transform: perspective(500px) rotateX(45deg) scale(1.5);
}

.h2-competition-heading,
.h2-competition-grid {
    position: relative;
    z-index: 2;
}

.h2-competition-heading {
    max-width: 650px;
    margin-bottom: 45px;
}

.h2-competition-heading p {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.7;
}

.h2-competition-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.h2-competition-card {
    position: relative;
    min-height: 235px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    transition: .4s ease;
}

.h2-competition-card:hover {
    transform: translateY(-8px);
    border-color: rgba(85,202,255,.5);
    background: rgba(255,255,255,.07);
}

.h2-competition-card > span {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255,255,255,.35);
    font-size: 9px;
}

.h2-competition-card i {
    margin-top: 45px;
    color: #55caff;
    font-size: 22px;
}

.h2-competition-card h3 {
    margin: 20px 0 8px;
    color: #fff;
    font-size: 17px;
}

.h2-competition-card p {
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.7;
}


/* NUMBERS */

.h2-numbers {
    padding: 100px 0;
    background: #fff;
}

.h2-number-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #d9e7ee;
    border-bottom: 1px solid #d9e7ee;
}

.h2-number {
    padding: 40px 25px;
    text-align: center;
    border-right: 1px solid #d9e7ee;
}

.h2-number:last-child {
    border-right: 0;
}

.h2-number strong {
    display: block;
    color: #082c47;
    font-family: "Outfit",sans-serif;
    font-size: clamp(42px,5vw,68px);
    line-height: 1;
}

.h2-number strong span {
    color: #159ee3;
}

.h2-number small {
    display: block;
    margin-top: 10px;
    color: #667b8d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* STORY */

.h2-story {
    padding: 105px 0;
}

.h2-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.h2-story-image {
    position: relative;
    height: 540px;
    overflow: hidden;
    border-radius: 20px;
}

.h2-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-counter {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 9px 12px;
    background: #fff;
    color: #082c47;
    font-size: 9px;
    font-weight: 800;
}

.h2-story-content blockquote {
    margin: 25px 0;
    color: #082c47;
    font-family: "Outfit",sans-serif;
    font-size: clamp(30px,4vw,50px);
    line-height: 1.08;
}

.h2-story-content blockquote span {
    color: #159ee3;
}

.h2-story-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.h2-story-person strong {
    font-size: 13px;
}

.h2-story-person span {
    color: #667b8d;
    font-size: 10px;
}

.h2-story-controls {
    display: flex;
    gap: 8px;
    margin-top: 35px;
}

.h2-story-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid #d9e7ee;
    border-radius: 50%;
    background: #fff;
    color: #159ee3;
    cursor: pointer;
    transition: .3s ease;
}

.h2-story-controls button:hover {
    background: #159ee3;
    color: #fff;
}


/* ENVIRONMENT */

.h2-environment {
    padding: 105px 0;
    background: #fff;
}

.h2-environment-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
}

.h2-environment-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.h2-environment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.h2-environment-photo:hover img {
    transform: scale(1.07);
}

.h2-environment-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 45%,
        rgba(0,25,42,.7)
    );
}

.h2-environment-photo span {
    position: absolute;
    z-index: 2;
    left: 17px;
    bottom: 15px;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.environment-large {
    grid-row: span 2;
}

.environment-wide {
    grid-column: span 2;
}


/* WEEKLY */

.h2-weekly {
    padding: 105px 0 0;
    background: #edf9ff;
}

.h2-weekly-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.h2-weekly-card {
    position: relative;
    min-height: 175px;
    padding: 27px 25px;
    border: 1px solid #dcebf2;
    border-radius: 12px;
    background: #fff;
    transition: .4s ease;
}

.h2-weekly-card:hover {
    transform: translateY(-7px);
    border-color: rgba(21,158,227,.45);
    box-shadow: 0 18px 40px rgba(21,158,227,.1);
}

.h2-weekly-card small {
    color: #159ee3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.h2-weekly-card strong {
    display: block;
    margin: 18px 0 5px;
    color: #082c47;
    font-family: "Outfit",sans-serif;
    font-size: 17px;
}

.h2-weekly-card span {
    color: #667b8d;
    font-size: 13px;
}

.h2-weekly-card i {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #159ee3;
}


/* FINAL CTA */

.h2-final-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 70px;
    padding: 55px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(
        110deg,
        #062a45,
        #0b6593
    );
    color: #fff;
}

.h2-final-cta::after {
    content: "APEX";
    position: absolute;
    right: -10px;
    bottom: -55px;
    color: rgba(255,255,255,.05);
    font-family: "Outfit",sans-serif;
    font-size: 170px;
    font-weight: 900;
}

.h2-final-cta > div {
    position: relative;
    z-index: 2;
}

.h2-final-cta > div:first-child {
    max-width: 680px;
}

.h2-final-cta > div:first-child > span {
    color: #6bd2ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.h2-final-cta h2 {
    margin: 8px 0;
    color: #fff;
    font-size: clamp(30px,4vw,52px);
    line-height: 1.05;
}

.h2-final-cta h2 strong {
    color: #55caff;
}

.h2-final-cta p {
    color: rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1.7;
}

.h2-final-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

    .h2-sport-grid {
        grid-template-columns: 1fr 1fr;
    }

    .h2-sport-large {
        grid-row: auto;
    }

    .h2-journey-grid {
        grid-template-columns: repeat(3,1fr);
        row-gap: 40px;
    }

    .h2-journey-grid::before {
        display: none;
    }

    .h2-competition-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .h2-number-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .h2-number:nth-child(2) {
        border-right: 0;
    }

    .h2-number:nth-child(-n+2) {
        border-bottom: 1px solid #d9e7ee;
    }

    .h2-environment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .environment-large {
        grid-row: span 2;
    }

    .environment-wide {
        grid-column: span 1;
    }
}


@media (max-width:900px) {

    .h2-hero,
    .h2-hero-container {
        min-height: 650px;
    }

    .h2-hero-side {
        display: none;
    }

    .h2-heading-row {
        display: block;
    }

    .h2-heading-row p {
        margin-top: 20px;
    }

    .h2-lab-grid,
    .h2-session-grid,
    .h2-playbook-grid,
    .h2-story-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .h2-lab-image {
        height: 500px;
    }

    .h2-weekly-grid {
        grid-template-columns: 1fr 1fr;
    }

    .h2-final-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width:700px) {

    .h2-hero,
    .h2-hero-container {
        min-height: 610px;
    }

    .h2-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(3,25,42,.95),
            rgba(3,25,42,.72)
        );
    }

    .h2-hero-content h1 {
        font-size: 57px;
        letter-spacing: -2px;
    }

    .h2-hero-content p {
        font-size: 13px;
    }

    .h2-hero-buttons {
        flex-wrap: wrap;
    }

    .h2-sports,
    .h2-journey,
    .h2-training-lab,
    .h2-session,
    .h2-playbook,
    .h2-progress,
    .h2-competition,
    .h2-numbers,
    .h2-story,
    .h2-environment {
        padding: 75px 0;
    }

    .h2-sport-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 235px;
    }

    .h2-sport-card {
        min-height: 235px;
    }

    .h2-journey-grid {
        grid-template-columns: 1fr;
    }

    .h2-journey-item {
        max-width: 320px;
        margin: auto;
    }

    .h2-lab-items {
        grid-template-columns: 1fr;
    }

    .h2-playbook-content h2 {
        font-size: 43px;
    }

    .h2-playbook-board {
        min-height: 390px;
    }

    .playbook-box {
        width: 145px;
    }

    .h2-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }

    .h2-main-progress {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .h2-next-tournament {
        grid-column: 1 / 3;
    }

    .h2-dashboard-bottom a {
        width: 100%;
        margin-left: 0;
    }

    .h2-competition-grid {
        grid-template-columns: 1fr 1fr;
    }

    .h2-number-grid {
        grid-template-columns: 1fr;
    }

    .h2-number {
        border-right: 0;
        border-bottom: 1px solid #d9e7ee;
    }

    .h2-number:last-child {
        border-bottom: 0;
    }

    .h2-environment-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,230px);
    }

    .environment-large,
    .environment-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .h2-weekly-grid {
        grid-template-columns: 1fr;
    }

    .h2-final-cta {
        padding: 35px 24px;
        margin-top: 45px;
    }

    .h2-final-buttons {
        width: 100%;
        flex-direction: column;
    }

    .h2-final-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width:480px) {

    .h2-hero,
    .h2-hero-container {
        min-height: 570px;
    }

    .h2-hero-content h1 {
        font-size: 48px;
    }

    .h2-heading-row h2,
    .h2-center-heading h2,
    .h2-progress-heading h2,
    .h2-numbers h2,
    .h2-competition-heading h2 {
        font-size: 31px;
    }

    .h2-lab-image {
        height: 390px;
    }

    .h2-session-row {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }

    .h2-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .h2-main-progress,
    .h2-next-tournament {
        grid-column: auto;
    }

    .h2-competition-grid {
        grid-template-columns: 1fr;
    }

    .h2-story-image {
        height: 350px;
    }

    .h2-story-content blockquote {
        font-size: 30px;
    }

    .h2-environment-grid {
        grid-template-rows: repeat(4,200px);
    }

    .h2-final-cta h2 {
        font-size: 31px;
    }

}
/* =========================================================
   APEX SPORTS ACADEMY
   CONTACT PAGE
   FULLY SCOPED CSS
========================================================= */

.apex-contact-page {
    --ac-primary: #159ee3;
    --ac-primary-dark: #087fbe;
    --ac-sky: #eaf8ff;
    --ac-soft: #f4fbff;
    --ac-dark: #071923;
    --ac-navy: #082c47;
    --ac-text: #344454;
    --ac-muted: #718092;
    --ac-border: #dceaf2;
    --ac-white: #ffffff;

    width: 100%;
    overflow: hidden;
    background: #fff;
    color: var(--ac-text);
}

.apex-contact-page *,
.apex-contact-page *::before,
.apex-contact-page *::after {
    box-sizing: border-box;
}

.apex-contact-page img {
    max-width: 100%;
}

.apex-contact-page a {
    text-decoration: none;
}

.ac-container {
    width: min(92%, 1200px);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.ac-contact-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            110deg,
            #061c2d 0%,
            #082c47 52%,
            #0c6793 100%
        );
}

.ac-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .28;
    background:
        linear-gradient(
            90deg,
            rgba(4,25,40,.96),
            rgba(4,42,65,.72),
            rgba(4,80,115,.22)
        ),
        url("../images/contact-banner.jpg") center/cover no-repeat;
}

.ac-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
    transform: perspective(700px) rotateX(45deg) scale(1.5);
    transform-origin: center bottom;
}

.ac-hero-decoration {
    position: absolute;
    border: 1px solid rgba(91,211,255,.25);
    border-radius: 50%;
    pointer-events: none;
}

.ac-decoration-one {
    width: 430px;
    height: 430px;
    right: -190px;
    top: -170px;
    animation: acHeroRotate 18s linear infinite;
}

.ac-decoration-two {
    width: 260px;
    height: 260px;
    left: -140px;
    bottom: -170px;
    animation: acHeroRotateReverse 14s linear infinite;
}

.ac-hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 90px;
    padding-bottom: 80px;
}

.ac-hero-content {
    max-width: 760px;
    animation: acHeroContent .9s cubic-bezier(.16,1,.3,1) both;
}

.ac-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #67d5ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.ac-eyebrow-line {
    width: 38px;
    height: 2px;
    background: #55caff;
}

.ac-hero-content h1 {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .98;
    letter-spacing: -3px;
}

.ac-hero-content h1 span {
    display: block;
    color: #39baf3;
}

.ac-hero-content p {
    max-width: 620px;
    margin: 26px 0 30px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.8;
}

.ac-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ac-btn {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    transition: .35s ease;
}

.ac-btn-primary {
    background: var(--ac-primary);
    color: #fff;
    box-shadow: 0 12px 30px rgba(21,158,227,.25);
}

.ac-btn-primary:hover {
    background: #fff;
    color: var(--ac-primary-dark);
    transform: translateY(-3px);
}

.ac-btn-light {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
}

.ac-btn-light:hover {
    background: #fff;
    color: var(--ac-navy);
    transform: translateY(-3px);
}

.ac-hero-side {
    width: 130px;
    flex-shrink: 0;
    color: rgba(255,255,255,.65);
}

.ac-hero-side-number {
    color: #65d1ff;
    font-family: "Outfit", sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.ac-hero-side-line {
    width: 70px;
    height: 1px;
    margin: 18px 0;
    background: rgba(255,255,255,.3);
}

.ac-hero-side-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 9px;
    letter-spacing: 1.7px;
}

.ac-hero-side-text strong {
    color: #fff;
    font-size: 12px;
}

.ac-scroll {
    position: absolute;
    z-index: 4;
    left: 4%;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.ac-scroll i {
    color: #55caff;
    animation: acScroll 1.8s ease-in-out infinite;
}

@keyframes acHeroContent {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes acHeroRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes acHeroRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes acScroll {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ac-section-heading {
    max-width: 700px;
    margin-bottom: 48px;
}

.ac-section-heading.ac-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ac-section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--ac-primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ac-label-white {
    color: #6bd5ff;
}

.ac-section-heading h2,
.ac-faq-intro h2 {
    margin: 0;
    color: var(--ac-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.ac-section-heading h2 span,
.ac-faq-intro h2 span {
    color: var(--ac-primary);
}

.ac-section-heading p {
    max-width: 620px;
    margin: 17px 0 0;
    color: var(--ac-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.ac-contact-info {
    padding: 90px 0;
    background: #fff;
}

.ac-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ac-info-card {
    position: relative;
    min-height: 290px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--ac-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(25,89,120,.06);
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.ac-info-card:hover {
    transform: translateY(-9px);
    border-color: rgba(21,158,227,.4);
    box-shadow: 0 25px 55px rgba(25,89,120,.12);
}

.ac-info-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(21,158,227,.06);
    transition: .5s ease;
}

.ac-info-card:hover::after {
    transform: scale(1.5);
}

.ac-info-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(21,158,227,.12);
    font-family: "Outfit", sans-serif;
    font-size: 42px;
    font-weight: 800;
}

.ac-info-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 15px;
    background: var(--ac-sky);
    color: var(--ac-primary);
    font-size: 19px;
    transition: .4s ease;
}

.ac-info-card:hover .ac-info-icon {
    background: var(--ac-primary);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.ac-info-content {
    position: relative;
    z-index: 2;
}

.ac-info-content > span {
    color: var(--ac-primary-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.ac-info-content h3 {
    margin: 7px 0 9px;
    color: var(--ac-dark);
    font-family: "Outfit", sans-serif;
    font-size: 21px;
}

.ac-info-content p {
    margin: 0 0 20px;
    color: var(--ac-muted);
    font-size: 13px;
    line-height: 1.7;
}

.ac-info-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ac-primary-dark);
    font-size: 11px;
    font-weight: 800;
}

.ac-info-content a i {
    transition: .3s ease;
}

.ac-info-content a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FORM SECTION
========================================================= */

.ac-form-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(
            120deg,
            #061d30,
            #082c47 60%,
            #0a5e88
        );
}

.ac-form-pattern {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(
            45deg,
            #fff 1px,
            transparent 1px
        ),
        linear-gradient(
            -45deg,
            #fff 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    pointer-events: none;
}

.ac-form-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: center;
}

.ac-form-intro h2 {
    max-width: 500px;
    margin: 0;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
}

.ac-form-intro h2 span {
    color: #3dc0f7;
}

.ac-form-intro > p {
    max-width: 500px;
    margin: 22px 0 35px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.85;
}

.ac-form-points {
    display: grid;
    gap: 18px;
}

.ac-form-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
}

.ac-form-point > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #63d2ff;
    font-size: 9px;
    font-weight: 800;
}

.ac-form-point strong {
    display: block;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
}

.ac-form-point p {
    margin: 4px 0 0;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    line-height: 1.6;
}

.ac-form-wrapper {
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

.ac-form-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--ac-border);
}

.ac-form-top span {
    color: var(--ac-primary-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.ac-form-top i {
    color: #9ab0bf;
    font-size: 11px;
}

.ac-contact-form {
    display: grid;
    gap: 18px;
}

.ac-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ac-form-group {
    display: grid;
    gap: 7px;
}

.ac-form-group label {
    color: #344454;
    font-size: 10px;
    font-weight: 800;
}

.ac-input {
    position: relative;
    display: flex;
    align-items: center;
}

.ac-input > i:first-child {
    position: absolute;
    left: 14px;
    z-index: 2;
    color: #8da1af;
    font-size: 12px;
    pointer-events: none;
}

.ac-input input,
.ac-input select,
.ac-input textarea {
    width: 100%;
    border: 1px solid #dce8ee;
    outline: none;
    border-radius: 9px;
    background: #fafdff;
    color: #344454;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    transition: .3s ease;
}

.ac-input input,
.ac-input select {
    height: 47px;
    padding: 0 14px 0 39px;
}

.ac-input textarea {
    min-height: 120px;
    padding: 14px 14px 14px 39px;
    resize: vertical;
    line-height: 1.6;
}

.ac-input input::placeholder,
.ac-input textarea::placeholder {
    color: #a5b3bd;
}

.ac-input input:focus,
.ac-input select:focus,
.ac-input textarea:focus {
    border-color: var(--ac-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(21,158,227,.08);
}

.ac-select select {
    appearance: none;
    cursor: pointer;
}

.ac-select-arrow {
    position: absolute !important;
    right: 14px;
    left: auto !important;
    color: #8da1af !important;
    font-size: 9px !important;
    pointer-events: none;
}

.ac-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.ac-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ac-checkmark {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    border: 1px solid #ccdce5;
    border-radius: 4px;
    background: #fff;
    transition: .3s ease;
}

.ac-checkbox input:checked + .ac-checkmark {
    border-color: var(--ac-primary);
    background: var(--ac-primary);
    box-shadow: inset 0 0 0 4px #fff;
}

.ac-checkbox small {
    color: #7d8e9a;
    font-size: 10px;
    line-height: 1.5;
}

.ac-submit {
    min-height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 9px;
    background: var(--ac-primary);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .35s ease;
}

.ac-submit:hover {
    background: var(--ac-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(21,158,227,.22);
}

.ac-submit i {
    transition: .3s ease;
}

.ac-submit:hover i {
    transform: translateX(5px);
}

.ac-form-status {
    min-height: 16px;
    color: var(--ac-primary-dark);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   SUPPORT
========================================================= */

.ac-support-section {
    padding: 90px 0;
    background: var(--ac-soft);
}

.ac-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ac-support-card {
    position: relative;
    min-height: 255px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(21,158,227,.12);
    border-radius: 15px;
    background: #fff;
    transition: .45s ease;
}

.ac-support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(25,89,120,.1);
}

.ac-support-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-support-top > span {
    color: rgba(21,158,227,.25);
    font-family: "Outfit", sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.ac-support-top i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--ac-sky);
    color: var(--ac-primary);
    font-size: 16px;
    transition: .4s ease;
}

.ac-support-card:hover .ac-support-top i {
    background: var(--ac-primary);
    color: #fff;
    transform: rotate(-8deg);
}

.ac-support-card h3 {
    margin: 28px 0 9px;
    color: var(--ac-dark);
    font-family: "Outfit", sans-serif;
    font-size: 19px;
}

.ac-support-card p {
    margin: 0;
    color: var(--ac-muted);
    font-size: 13px;
    line-height: 1.7;
    text-align: justify;
}

.ac-support-line {
    position: absolute;
    left: 25px;
    bottom: 20px;
    width: 35px;
    height: 2px;
    background: var(--ac-primary);
    transition: .4s ease;
}

.ac-support-card:hover .ac-support-line {
    width: calc(100% - 50px);
}


/* =========================================================
   FAQ
========================================================= */

.ac-faq-section {
    padding: 100px 0;
    background: #fff;
}

.ac-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.ac-faq-intro {
    position: sticky;
    top: 110px;
}

.ac-faq-intro > p {
    max-width: 440px;
    margin: 20px 0 30px;
    color: var(--ac-muted);
    font-size: 13px;
    line-height: 1.8;
}

.ac-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid var(--ac-border);
    border-radius: 10px;
    background: var(--ac-soft);
    color: var(--ac-muted);
    font-size: 10px;
    line-height: 1.5;
}

.ac-faq-badge > i {
    color: var(--ac-primary);
    font-size: 18px;
}

.ac-faq-badge strong {
    color: var(--ac-dark);
}

.ac-faq-list {
    border-top: 1px solid var(--ac-border);
}

.ac-faq-item {
    border-bottom: 1px solid var(--ac-border);
}

.ac-faq-item summary {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    color: var(--ac-dark);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.ac-faq-item summary::-webkit-details-marker {
    display: none;
}

.ac-faq-item summary i {
    color: var(--ac-primary);
    font-size: 11px;
    transition: .3s ease;
    padding-right: 20px;
}

.ac-faq-item[open] summary i {
    transform: rotate(45deg);
}

.ac-faq-item p {
    max-width: 700px;
    margin: 0;
    padding: 0 45px 24px 0;
    color: var(--ac-muted);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ac-final-section {
    padding: 0 0 90px;
    background: #fff;
}

.ac-final-box {
    position: relative;
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 55px;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(
            110deg,
            #062a45,
            #0a6391
        );
}

.ac-final-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    right: -100px;
    top: -180px;
    border: 1px solid rgba(95,216,255,.25);
    border-radius: 50%;
}

.ac-final-content {
    position: relative;
    z-index: 2;
}

.ac-final-label {
    color: #6bd6ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.ac-final-content h2 {
    margin: 8px 0;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
}

.ac-final-content h2 strong {
    color: #55caff;
}

.ac-final-content p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.ac-final-button {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    background: #fff;
    color: #082c47;
    font-size: 12px;
    font-weight: 800;
    transition: .35s ease;
}

.ac-final-button:hover {
    background: #55caff;
    color: #062a45;
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .ac-form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ac-form-intro {
        max-width: 700px;
    }

    .ac-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ac-faq-grid {
        gap: 50px;
    }
}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .ac-contact-hero {
        min-height: 530px;
    }

    .ac-hero-container {
        padding-top: 100px;
        padding-bottom: 75px;
    }

    .ac-hero-content h1 {
        font-size: clamp(45px, 8vw, 70px);
    }

    .ac-hero-side {
        display: none;
    }

    .ac-info-grid {
        grid-template-columns: 1fr;
    }

    .ac-info-card {
        min-height: 245px;
    }

    .ac-faq-grid {
        grid-template-columns: 1fr;
    }

    .ac-faq-intro {
        position: static;
    }
}


/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .ac-contact-hero {
        min-height: 590px;
    }

    .ac-hero-container {
        padding-top: 95px;
        padding-bottom: 75px;
    }

    .ac-hero-content {
        width: 100%;
    }

    .ac-hero-content h1 {
        font-size: 49px;
        letter-spacing: -2px;
    }

    .ac-hero-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .ac-hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .ac-btn {
        width: 100%;
    }

    .ac-scroll {
        left: 6%;
        bottom: 20px;
    }

    .ac-contact-info,
    .ac-support-section,
    .ac-faq-section {
        padding: 70px 0;
    }

    .ac-section-heading {
        margin-bottom: 32px;
    }

    .ac-section-heading h2,
    .ac-faq-intro h2 {
        font-size: 36px;
    }

    .ac-form-section {
        padding: 70px 0;
    }

    .ac-form-intro h2 {
        font-size: 42px;
    }

    .ac-form-wrapper {
        padding: 22px;
        border-radius: 15px;
    }

    .ac-form-row {
        grid-template-columns: 1fr;
    }

    .ac-support-grid {
        grid-template-columns: 1fr;
    }

    .ac-support-card {
        min-height: 230px;
    }

    .ac-final-section {
        padding-bottom: 70px;
    }

    .ac-final-box {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
        gap: 25px;
    }

    .ac-final-button {
        width: 100%;
    }
}


/* =========================================================
   RESPONSIVE — 480px
========================================================= */

@media (max-width: 480px) {

    .ac-container {
        width: min(91%, 1200px);
    }

    .ac-contact-hero {
        min-height: 570px;
    }

    .ac-hero-content h1 {
        font-size: 42px;
    }

    .ac-eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .ac-hero-content p {
        font-size: 12px;
    }

    .ac-info-card {
        padding: 23px;
    }

    .ac-form-intro h2 {
        font-size: 36px;
    }

    .ac-form-wrapper {
        padding: 18px;
    }

    .ac-input input,
    .ac-input select {
        height: 45px;
    }

    .ac-faq-item summary {
        min-height: 68px;
        font-size: 14px;
    }

    .ac-faq-item p {
        font-size: 11px;
    }

    .ac-final-content h2 {
        font-size: 32px;
    }
}


/* =========================================================
   SMALL MOBILE — 380px
========================================================= */

@media (max-width: 380px) {

    .ac-hero-content h1 {
        font-size: 37px;
    }

    .ac-hero-content p {
        font-size: 11px;
    }

    .ac-section-heading h2,
    .ac-faq-intro h2 {
        font-size: 32px;
    }

    .ac-form-intro h2 {
        font-size: 32px;
    }

    .ac-form-wrapper {
        padding: 15px;
    }

    .ac-support-card {
        padding: 21px;
    }

    .ac-final-content h2 {
        font-size: 28px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-contact-page *,
    .apex-contact-page *::before,
    .apex-contact-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   APEX SPORTS ACADEMY
   ABOUT PAGE
   FULL REPLACEMENT CSS
   Scoped completely with .apex-about-page
========================================================= */

.apex-about-page {
    --aa-primary: #159ee3;
    --aa-primary-dark: #087db8;
    --aa-blue: #42c4f5;
    --aa-dark: #071923;
    --aa-navy: #082d47;
    --aa-text: #344454;
    --aa-muted: #71818e;
    --aa-border: #dceaf2;
    --aa-soft: #f3fbff;
    --aa-white: #ffffff;

    width: 100%;
    overflow: hidden;
    background: #fff;
    color: var(--aa-text);
}

.apex-about-page *,
.apex-about-page *::before,
.apex-about-page *::after {
    box-sizing: border-box;
}

.apex-about-page a {
    text-decoration: none;
}

.aa-container {
    width: min(92%, 1200px);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.aa-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #082d47;
}

.aa-hero-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4,24,38,.96) 0%,
            rgba(5,42,66,.78) 50%,
            rgba(5,80,112,.35) 100%
        ),
        url("../images/about-banner.jpg") center/cover no-repeat;
}

.aa-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(44,190,245,.25),
            transparent 35%
        );
}

.aa-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
}

.aa-hero-circle {
    position: absolute;
    border: 1px solid rgba(76,207,255,.25);
    border-radius: 50%;
    pointer-events: none;
}

.aa-circle-one {
    width: 400px;
    height: 400px;
    right: -170px;
    top: -210px;
    animation: aaRotate 18s linear infinite;
}

.aa-circle-two {
    width: 240px;
    height: 240px;
    left: -160px;
    bottom: -150px;
    animation: aaRotateReverse 15s linear infinite;
}

.aa-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.aa-hero-content {
    max-width: 760px;
    animation: aaHeroIn .9s cubic-bezier(.16,1,.3,1) both;
}

.aa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 17px;
    color: #63d4ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.aa-eyebrow span {
    width: 36px;
    height: 2px;
    background: #52caff;
}

.aa-hero-content h1 {
    margin: 0;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(48px, 7vw, 78px);
    line-height: .98;
    letter-spacing: -3px;
}

.aa-hero-content h1 strong {
    display: block;
    color: #43c4f7;
    font-weight: 800;
}

.aa-hero-content p {
    max-width: 600px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.7;
}

.aa-hero-number {
    position: relative;
    z-index: 3;
    width: 150px;
    flex-shrink: 0;
    padding-left: 25px;
    border-left: 1px solid rgba(255,255,255,.22);
}

.aa-hero-number strong {
    display: block;
    color: #62d4ff;
    font-family: "Outfit", sans-serif;
    font-size: 54px;
    line-height: 1;
}

.aa-hero-number span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.6);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1.4px;
}

.aa-hero-bottom {
    position: absolute;
    z-index: 4;
    right: 4%;
    bottom: 20px;
    left: 4%;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.4);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

@keyframes aaHeroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes aaRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}


/* =========================================================
   COMMON SECTION LABEL
========================================================= */

.aa-section-label {
    display: inline-block;
    color: var(--aa-primary-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   INTRO
========================================================= */

.aa-intro-section {
    padding: 100px 0;
    background: #fff;
}

.aa-intro-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.aa-intro-label {
    padding-top: 8px;
}

.aa-vertical-line {
    width: 1px;
    height: 70px;
    margin: 22px 0;
    background: var(--aa-primary);
}

.aa-intro-small {
    color: #9aaab5;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: 1.3px;
}

.aa-intro-content {
    max-width: 850px;
}

.aa-intro-content h2 {
    margin: 0 0 25px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
    letter-spacing: -2px;
}

.aa-intro-content h2 span {
    display: block;
    color: var(--aa-primary);
}

.aa-intro-content p {
    max-width: 780px;
    margin: 0 0 16px;
    color: var(--aa-muted);
    font-size: 14px;
    line-height: 1.9;
}

.aa-intro-content .aa-lead {
    color: #3f5362;
    font-size: 15px;
    line-height: 1.85;
}

.aa-intro-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.aa-intro-signature span {
    width: 45px;
    height: 2px;
    background: var(--aa-primary);
}

.aa-intro-signature strong {
    color: var(--aa-dark);
    font-size: 9px;
    letter-spacing: 1.8px;
}




/* =========================================================
   STORY
========================================================= */

.aa-story-section {
    padding: 100px 0;
    background: var(--aa-soft);
}

.aa-story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.aa-story-visual {
    position: relative;
    min-height: 500px;
}

.aa-story-image {
    position: absolute;
    inset: 0 45px 40px 0;
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(7,40,63,.1),
            rgba(7,40,63,.5)
        ),
        url("../images/about.jpg") center/cover no-repeat;
    box-shadow: 0 25px 60px rgba(19,77,104,.14);
}

.aa-story-outline {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 75%;
    border: 1px solid rgba(21,158,227,.4);
    border-radius: 16px;
    pointer-events: none;
}

.aa-story-card {
    position: absolute;
    right: 18px;
    bottom: 55px;
    z-index: 2;
    width: 155px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(19,77,104,.15);
}

.aa-story-card span {
    display: block;
    color: var(--aa-primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.aa-story-card strong {
    display: block;
    margin: 5px 0;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: 42px;
    line-height: 1;
}

.aa-story-card small {
    color: #9aa9b3;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.aa-story-content h2 {
    margin: 12px 0 22px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(38px, 4.5vw, 57px);
    line-height: 1.03;
    letter-spacing: -1.8px;
}

.aa-story-content h2 span {
    display: block;
    color: var(--aa-primary);
}

.aa-story-content > p {
    margin: 0 0 16px;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.85;
}

.aa-story-points {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.aa-story-points div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid var(--aa-border);
}

.aa-story-points span {
    color: var(--aa-primary);
    font-size: 9px;
    font-weight: 800;
}

.aa-story-points strong {
    color: var(--aa-dark);
    font-size: 12px;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.aa-philosophy {
    padding: 100px 0;
    background: #fff;
}

.aa-philosophy-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 50px;
}

.aa-philosophy-heading h2 {
    max-width: 700px;
    margin: 12px 0 0;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.aa-philosophy-heading h2 span {
    color: var(--aa-primary);
}

.aa-philosophy-heading > p {
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
}

.aa-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.aa-philosophy-card {
    position: relative;
    min-height: 290px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--aa-border);
    border-radius: 15px;
    background: #fff;
    transition: .45s cubic-bezier(.22,1,.36,1);
}

.aa-philosophy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21,158,227,.4);
    box-shadow: 0 22px 50px rgba(22,93,123,.1);
}

.aa-feature-card {
    background: #effaff;
    border-color: #c9ebf8;
}

.aa-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(21,158,227,.14);
    font-family: "Outfit", sans-serif;
    font-size: 42px;
    font-weight: 800;
}

.aa-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--aa-sky);
    color: var(--aa-primary);
    font-size: 16px;
    transition: .4s ease;
}

.aa-philosophy-card:hover .aa-card-icon {
    background: var(--aa-primary);
    color: #fff;
    transform: rotate(-6deg);
}

.aa-philosophy-card h3 {
    margin: 28px 0 10px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
}

.aa-philosophy-card p {
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.75;
}

.aa-card-line {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 32px;
    height: 2px;
    background: var(--aa-primary);
    transition: .4s ease;
}

.aa-philosophy-card:hover .aa-card-line {
    width: calc(100% - 50px);
}


/* =========================================================
   JOURNEY
========================================================= */

.aa-journey-section {
    padding: 100px 0;
    background: var(--aa-soft);
}

.aa-journey-heading {
    max-width: 700px;
    margin-bottom: 65px;
}

.aa-journey-heading h2 {
    margin: 12px 0 15px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.aa-journey-heading h2 span {
    color: var(--aa-primary);
}

.aa-journey-heading p {
    max-width: 600px;
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.8;
}

.aa-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.aa-journey-line {
    position: absolute;
    top: 27px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: #b9ddea;
}

.aa-journey-item {
    position: relative;
    z-index: 2;
}

.aa-journey-dot {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 4px solid var(--aa-soft);
    border-radius: 50%;
    background: var(--aa-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(21,158,227,.3);
    transition: .4s ease;
}

.aa-journey-item:hover .aa-journey-dot {
    transform: scale(1.12);
    box-shadow: 0 0 0 8px rgba(21,158,227,.1);
}

.aa-journey-content {
    padding-right: 15px;
}

.aa-journey-content > span {
    color: var(--aa-primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.aa-journey-content h3 {
    margin: 8px 0 8px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: 19px;
}

.aa-journey-content p {
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COACHING
========================================================= */

.aa-coaching-section {
    padding: 100px 0;
    background: #fff;
}

.aa-coaching-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
}

.aa-coaching-content h2 {
    margin: 12px 0 20px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.8px;
}

.aa-coaching-content h2 span {
    display: block;
    color: var(--aa-primary);
}

.aa-coaching-content > p {
    max-width: 620px;
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.85;
    text-align: justify;
}

.aa-coaching-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
    margin-top: 35px;
}

.aa-coaching-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid var(--aa-border);
}

.aa-coaching-item > span {
    color: var(--aa-primary);
    font-size: 9px;
    font-weight: 800;
}

.aa-coaching-item strong {
    display: block;
    color: var(--aa-dark);
    font-size: 12px;
}

.aa-coaching-item p {
    margin: 4px 0 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.5;
}

.aa-coaching-visual {
    position: relative;
    min-height: 500px;
}

.aa-coaching-image {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.1),
            rgba(4,30,48,.58)
        ),
        url("../images/coaches.jpg") center/cover no-repeat;
    box-shadow: 0 25px 60px rgba(19,77,104,.15);
}

.aa-coaching-overlay {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    padding: 20px 25px;
    border-left: 3px solid #45c6f7;
    background: rgba(5,31,48,.84);
    backdrop-filter: blur(8px);
}

.aa-coaching-overlay span {
    display: block;
    color: #65d6ff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.aa-coaching-overlay strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    line-height: .95;
}

.aa-coaching-corner {
    position: absolute;
    z-index: 3;
    top: -18px;
    right: -18px;
    width: 90px;
    height: 90px;
    border-top: 2px solid var(--aa-primary);
    border-right: 2px solid var(--aa-primary);
}


/* =========================================================
   VALUES
========================================================= */

.aa-values-section {
    padding: 100px 0;
    background: var(--aa-soft);
}

.aa-values-heading {
    margin-bottom: 45px;
}

.aa-values-heading h2 {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(37px, 4.5vw, 58px);
    line-height: 1.03;
    letter-spacing: -1.8px;
}

.aa-values-heading h2 span {
    color: var(--aa-primary);
}

.aa-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.aa-value {
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    transition: .4s ease;
}

.aa-value:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(19,77,104,.09);
}

.aa-value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aa-value-top span {
    color: rgba(21,158,227,.25);
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.aa-value-top i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--aa-sky);
    color: var(--aa-primary);
    font-size: 14px;
}

.aa-value h3 {
    margin: 25px 0 8px;
    color: var(--aa-dark);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
}

.aa-value p {
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.aa-final {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #072b45;
}

.aa-final-bg {
    position: absolute;
    inset: 0;
    opacity: .3;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(57,196,247,.4),
            transparent 30%
        );
}

.aa-final-inner {
    position: relative;
    z-index: 2;
}

.aa-final-label {
    color: #63d4ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.aa-final h2 {
    max-width: 750px;
    margin: 12px 0 15px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
}

.aa-final h2 span {
    color: #45c7f7;
}

.aa-final p {
    max-width: 550px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}

.aa-final-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.aa-final-btn,
.aa-final-outline {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    transition: .35s ease;
}

.aa-final-btn {
    background: var(--aa-primary);
    color: #fff;
}

.aa-final-btn:hover {
    background: #fff;
    color: var(--aa-navy);
    transform: translateY(-3px);
}

.aa-final-outline {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}

.aa-final-outline:hover {
    background: #fff;
    color: var(--aa-navy);
    transform: translateY(-3px);
}


/* =========================================================
   TABLET — 1000px
========================================================= */

@media (max-width: 1000px) {

    .aa-philosophy-grid,
    .aa-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aa-story-grid,
    .aa-coaching-grid {
        gap: 45px;
    }

    .aa-journey {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .aa-journey-line {
        display: none;
    }
}


/* =========================================================
   TABLET — 800px
========================================================= */

@media (max-width: 800px) {

    .aa-hero {
        min-height: 400px;
    }

    .aa-hero-inner {
        padding-top: 80px;
        padding-bottom: 65px;
    }

    .aa-hero-number {
        display: none;
    }

    .aa-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .aa-intro-label {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .aa-vertical-line {
        width: 35px;
        height: 2px;
        margin: 0;
    }

    .aa-story-grid,
    .aa-coaching-grid {
        grid-template-columns: 1fr;
    }

    .aa-story-visual,
    .aa-coaching-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .aa-philosophy-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* =========================================================
   MOBILE — 650px
========================================================= */

@media (max-width: 650px) {

    .aa-container {
        width: min(91%, 1200px);
    }

    .aa-hero {
        min-height: 430px;
    }

    .aa-hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .aa-hero-content p {
        font-size: 12px;
    }

    .aa-hero-bottom {
        flex-direction: column;
        gap: 5px;
    }

    .aa-intro-section,
    .aa-story-section,
    .aa-philosophy,
    .aa-journey-section,
    .aa-coaching-section,
    .aa-values-section {
        padding: 70px 0;
    }

    .aa-intro-content h2 {
        font-size: 39px;
    }

    .aa-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aa-stat {
        min-height: 105px;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .aa-stat:nth-child(2) {
        border-right: 0;
    }

    .aa-stat strong {
        font-size: 30px;
    }

    .aa-story-visual,
    .aa-coaching-visual {
        min-height: 400px;
    }

    .aa-story-content h2,
    .aa-coaching-content h2 {
        font-size: 39px;
    }

    .aa-philosophy-grid,
    .aa-values-grid,
    .aa-journey {
        grid-template-columns: 1fr;
    }

    .aa-journey-item {
        display: grid;
        grid-template-columns: 55px 1fr;
        gap: 15px;
    }

    .aa-journey-dot {
        margin-bottom: 0;
    }

    .aa-coaching-list {
        grid-template-columns: 1fr;
    }

    .aa-final {
        min-height: 400px;
    }

    .aa-final h2 {
        font-size: 42px;
    }

    .aa-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .aa-final-btn,
    .aa-final-outline {
        width: 100%;
    }
}


/* =========================================================
   MOBILE — 450px
========================================================= */

@media (max-width: 450px) {

    .aa-hero {
        min-height: 445px;
    }

    .aa-hero-inner {
        padding-top: 75px;
        padding-bottom: 60px;
    }

    .aa-hero-content h1 {
        font-size: 40px;
    }

    .aa-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .aa-intro-content h2,
    .aa-story-content h2,
    .aa-coaching-content h2 {
        font-size: 34px;
    }

    .aa-story-visual,
    .aa-coaching-visual {
        min-height: 350px;
    }

    .aa-story-image {
        inset: 0 25px 30px 0;
    }

    .aa-story-card {
        right: 0;
        bottom: 35px;
        width: 135px;
        padding: 16px;
    }

    .aa-story-card strong {
        font-size: 34px;
    }

    .aa-philosophy-card,
    .aa-value {
        min-height: auto;
    }

    .aa-final h2 {
        font-size: 35px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-about-page *,
    .apex-about-page *::before,
    .apex-about-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   APEX SPORTS ACADEMY
   PROGRAMS PAGE
   FULL REPLACEMENT CSS
========================================================= */

.apex-programs-page {
    --ap-primary: #159ee3;
    --ap-primary-dark: #087db8;
    --ap-blue: #42c4f5;
    --ap-dark: #071923;
    --ap-navy: #082d47;
    --ap-text: #344454;
    --ap-muted: #71818e;
    --ap-border: #dceaf2;
    --ap-soft: #f3fbff;
    --ap-white: #fff;

    width: 100%;
    overflow: hidden;
    background: #fff;
    color: var(--ap-text);
}

.apex-programs-page *,
.apex-programs-page *::before,
.apex-programs-page *::after {
    box-sizing: border-box;
}

.apex-programs-page a {
    text-decoration: none;
}

.ap-container {
    width: min(92%, 1200px);
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.ap-program-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #062b45;
}

.ap-program-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4,25,40,.97),
            rgba(5,52,78,.78),
            rgba(8,103,143,.3)
        ),
        url("../images/programs-banner.jpg") center/cover no-repeat;
}

.ap-program-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image:
        linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

.ap-program-ring {
    position: absolute;
    border: 1px solid rgba(78,207,255,.24);
    border-radius: 50%;
}

.ap-ring-one {
    width: 450px;
    height: 450px;
    right: -210px;
    top: -190px;
    animation: apOrbit 20s linear infinite;
}

.ap-ring-two {
    width: 250px;
    height: 250px;
    left: -160px;
    bottom: -160px;
    animation: apOrbitReverse 15s linear infinite;
}

.ap-program-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 80px;
    padding-bottom: 70px;
}

.ap-program-hero-content {
    max-width: 780px;
    animation: apHeroIn .9s cubic-bezier(.16,1,.3,1) both;
}

.ap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: #63d5ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.ap-eyebrow span {
    width: 38px;
    height: 2px;
    background: #55caff;
}

.ap-program-hero-content h1 {
    margin: 0;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(48px, 7vw, 78px);
    line-height: .98;
    letter-spacing: -3px;
}

.ap-program-hero-content h1 strong {
    display: block;
    color: #43c5f7;
}

.ap-program-hero-content p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 13px;
    line-height: 1.8;
}

.ap-hero-program-count {
    width: 140px;
    flex-shrink: 0;
    padding-left: 25px;
    border-left: 1px solid rgba(255,255,255,.25);
}

.ap-hero-program-count strong {
    display: block;
    color: #63d5ff;
    font-family: "Outfit", sans-serif;
    font-size: 58px;
    line-height: 1;
}

.ap-hero-program-count span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.5);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1.5px;
}

.ap-hero-bottom {
    position: absolute;
    z-index: 3;
    right: 4%;
    bottom: 20px;
    left: 4%;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.38);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

@keyframes apHeroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes apOrbit {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes apOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}


/* =========================================================
   COMMON
========================================================= */

.ap-section-label {
    display: inline-block;
    color: var(--ap-primary-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ap-section-heading {
    max-width: 700px;
    margin-bottom: 42px;
}

.ap-section-heading.ap-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ap-section-heading h2 {
    margin: 12px 0 17px;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.ap-section-heading h2 span {
    display: block;
    color: var(--ap-primary);
}

.ap-section-heading p {
    max-width: 620px;
    margin: 0;
    color: var(--ap-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   SPORT SELECTOR
========================================================= */

.ap-program-intro {
    padding: 90px 0 65px;
    background: #fff;
}

.ap-sport-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ap-sport-tab {
    position: relative;
    min-height: 145px;
    display: grid;
    grid-template-columns: 45px 1fr 20px;
    align-items: center;
    gap: 12px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--ap-border);
    border-radius: 13px;
    background: #fff;
    transition: .4s cubic-bezier(.22,1,.36,1);
}

.ap-sport-tab:hover,
.ap-sport-tab.active {
    border-color: var(--ap-primary);
    background: #effaff;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(21,158,227,.1);
}

.ap-tab-number {
    position: absolute;
    top: 10px;
    right: 13px;
    color: rgba(21,158,227,.13);
    font-family: "Outfit", sans-serif;
    font-size: 27px;
    font-weight: 800;
}

.ap-tab-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--ap-soft);
    color: var(--ap-primary);
    font-size: 16px;
    transition: .35s ease;
}

.ap-sport-tab:hover .ap-tab-icon,
.ap-sport-tab.active .ap-tab-icon {
    background: var(--ap-primary);
    color: #fff;
}

.ap-sport-tab strong {
    display: block;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: 17px;
}

.ap-sport-tab small {
    display: block;
    margin-top: 4px;
    color: #91a1ab;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .9px;
}

.ap-tab-arrow {
    color: #9bb0bc;
    font-size: 10px;
    transition: .3s ease;
}

.ap-sport-tab:hover .ap-tab-arrow {
    color: var(--ap-primary);
    transform: translateX(4px);
}


/* =========================================================
   SPORT PROGRAM
========================================================= */

.ap-sport-program {
    padding: 100px 0;
}

.ap-basketball-program,
.ap-tennis-program {
    background: #fff;
}

.ap-football-program,
.ap-swimming-program {
    background: var(--ap-soft);
}

.ap-program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.ap-program-grid.ap-reverse {
    grid-template-columns: 1fr 1fr;
}

.ap-program-grid.ap-reverse .ap-program-visual {
    order: 2;
}

.ap-program-grid.ap-reverse .ap-program-content {
    order: 1;
}

.ap-program-visual {
    position: relative;
    min-height: 500px;
}

.ap-program-image {
    position: absolute;
    inset: 0 35px 35px 0;
    border-radius: 18px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 25px 55px rgba(16,76,105,.13);
}

.ap-basketball-image {
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.05),
            rgba(4,30,48,.45)
        ),
        url("../images/backetball.jpg") center/cover no-repeat;
}

.ap-football-image {
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.05),
            rgba(4,30,48,.45)
        ),
        url("../images/football.jpg") center/cover no-repeat;
}

.ap-tennis-image {
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.05),
            rgba(4,30,48,.45)
        ),
        url("../images/tennis.jpg") center/cover no-repeat;
}

.ap-swimming-image {
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.05),
            rgba(4,30,48,.45)
        ),
        url("../images/swimming.jpg") center/cover no-repeat;
}
.ap-hockey-image {
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.05),
            rgba(4,30,48,.45)
        ),
        url("../images/hockey.jpg") center/cover no-repeat;
}
.ap-cricket-image {
    background:
        linear-gradient(
            145deg,
            rgba(4,30,48,.05),
            rgba(4,30,48,.45)
        ),
        url("../images/cricket.jpg") center/cover no-repeat;
}
.ap-program-visual::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 72%;
    border: 1px solid rgba(21,158,227,.35);
    border-radius: 18px;
    pointer-events: none;
}

.ap-program-number {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    color: rgba(255,255,255,.8);
    font-family: "Outfit", sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.ap-program-tag {
    position: absolute;
    z-index: 4;
    right: 10px;
    bottom: 58px;
    min-width: 150px;
    padding: 15px 20px;
    border-left: 3px solid var(--ap-primary);
    background: rgba(4,29,46,.9);
    backdrop-filter: blur(8px);
}

.ap-program-tag span {
    display: block;
    color: #5ed2ff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.ap-program-tag strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}

.ap-program-content h2 {
    margin: 12px 0 18px;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
}

.ap-program-content h2 span {
    display: block;
    color: var(--ap-primary);
}

.ap-program-lead {
    color: #405564 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.ap-program-content > p {
    max-width: 610px;
    margin: 0 0 15px;
    color: var(--ap-muted);
    font-size: 13px;
    line-height: 1.85;
}

.ap-program-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.ap-detail {
    padding: 14px;
    border: 1px solid var(--ap-border);
    border-radius: 9px;
    background: #fff;
}

.ap-detail span {
    display: block;
    margin-bottom: 5px;
    color: #91a2ad;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.ap-detail strong {
    color: var(--ap-dark);
    font-size: 13px;
}

.ap-focus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.ap-focus-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 6px;
    background: var(--ap-soft);
    color: var(--ap-text);
    font-size: 13px;
    font-weight: 700;
}

.ap-focus-list i {
    color: var(--ap-primary);
    font-size: 8px;
}

.ap-program-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--ap-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: .35s ease;
}

.ap-program-btn:hover {
    background: var(--ap-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(21,158,227,.2);
}

.ap-program-btn i {
    transition: .3s ease;
}

.ap-program-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TRAINING SYSTEM
========================================================= */

.ap-training-system {
    padding: 100px 0;
    background: #fff;
}

.ap-training-cycle {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ap-cycle-line {
    position: absolute;
    top: 31px;
    right: 11%;
    left: 11%;
    height: 1px;
    background: #c8e2ed;
}

.ap-cycle-card {
    position: relative;
    z-index: 2;
    min-height: 285px;
    padding: 22px;
    border: 1px solid var(--ap-border);
    border-radius: 14px;
    background: #fff;
    transition: .4s ease;
}

.ap-cycle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21,158,227,.4);
    box-shadow: 0 20px 45px rgba(16,76,105,.09);
}

.ap-cycle-number {
    position: absolute;
    top: 14px;
    right: 16px;
    color: rgba(21,158,227,.14);
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.ap-cycle-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 14px;
    background: var(--ap-soft);
    color: var(--ap-primary);
    font-size: 18px;
    transition: .4s ease;
}

.ap-cycle-card:hover .ap-cycle-icon {
    background: var(--ap-primary);
    color: #fff;
    transform: rotate(-6deg);
}

.ap-cycle-card > span {
    color: var(--ap-primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.ap-cycle-card h3 {
    margin: 7px 0 10px;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: 22px;
}

.ap-cycle-card p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   DEVELOPMENT LEVELS
========================================================= */

.ap-level-section {
    padding: 100px 0;
    background: var(--ap-soft);
}

.ap-level-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.ap-level-content h2 {
    margin: 12px 0 20px;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.ap-level-content h2 span {
    display: block;
    color: var(--ap-primary);
}

.ap-level-content p {
    max-width: 500px;
    margin: 0;
    color: var(--ap-muted);
    font-size: 13px;
    line-height: 1.85;
    text-align: justify;
}

.ap-level-path {
    position: relative;
    display: grid;
    gap: 13px;
}

.ap-level-path::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 24px;
    width: 1px;
    background: #c8e0eb;
}

.ap-level {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: .4s ease;
}

.ap-level:hover,
.ap-level.active {
    border-color: var(--ap-border);
    background: #fff;
    box-shadow: 0 12px 30px rgba(18,88,116,.07);
}

.ap-level-dot {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 3px solid var(--ap-soft);
    border-radius: 50%;
    background: #c4dce7;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 0 0 1px #b6d4e2;
}

.ap-level.active .ap-level-dot,
.ap-level:hover .ap-level-dot {
    background: var(--ap-primary);
    box-shadow: 0 0 0 6px rgba(21,158,227,.09);
}

.ap-level-text > span {
    color: var(--ap-primary-dark);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.ap-level-text strong {
    display: block;
    margin-top: 4px;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}

.ap-level-text p {
    margin: 3px 0 0;
    color: var(--ap-muted);
    font-size: 13px;
}


/* =========================================================
   FEATURES
========================================================= */

.ap-program-features {
    padding: 100px 0;
    background: #fff;
}

.ap-feature-header {
    display: grid;
    grid-template-columns: 1fr .6fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 45px;
}

.ap-feature-header h2 {
    margin: 12px 0 0;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.ap-feature-header h2 span {
    color: var(--ap-primary);
}

.ap-feature-header > p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 13px;
    line-height: 1.8;
}

.ap-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.ap-feature {
    position: relative;
    min-height: 235px;
    padding: 25px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--ap-soft);
    transition: .4s ease;
}

.ap-feature:hover {
    transform: translateY(-7px);
    background: #e9f8ff;
    box-shadow: 0 18px 40px rgba(18,88,116,.08);
}

.ap-feature > span {
    position: absolute;
    top: 15px;
    right: 17px;
    color: rgba(21,158,227,.15);
    font-family: "Outfit", sans-serif;
    font-size: 31px;
    font-weight: 800;
}

.ap-feature i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #fff;
    color: var(--ap-primary);
    font-size: 15px;
}

.ap-feature h3 {
    margin: 25px 0 8px;
    color: var(--ap-dark);
    font-family: "Outfit", sans-serif;
    font-size: 19px;
}

.ap-feature p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ap-program-final {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            110deg,
            #062a45,
            #0a628d
        );
}

.ap-final-orbit {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -170px;
    border: 1px solid rgba(92,213,255,.22);
    border-radius: 50%;
    animation: apOrbit 18s linear infinite;
}

.ap-final-inner {
    position: relative;
    z-index: 2;
}

.ap-final-inner > span {
    color: #63d4ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ap-final-inner h2 {
    max-width: 750px;
    margin: 12px 0 15px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .98;
    letter-spacing: -2.5px;
}

.ap-final-inner h2 strong {
    display: block;
    color: #48c7f8;
}

.ap-final-inner p {
    max-width: 570px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}

.ap-final-actions {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.ap-final-btn,
.ap-final-outline {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    transition: .35s ease;
}

.ap-final-btn {
    background: var(--ap-primary);
    color: #fff;
}

.ap-final-btn:hover {
    background: #fff;
    color: var(--ap-navy);
    transform: translateY(-3px);
}

.ap-final-outline {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}

.ap-final-outline:hover {
    background: #fff;
    color: var(--ap-navy);
    transform: translateY(-3px);
}


/* =========================================================
   1000px
========================================================= */

@media (max-width: 1000px) {

    .ap-sport-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-program-grid,
    .ap-program-grid.ap-reverse {
        gap: 50px;
    }

    .ap-training-cycle,
    .ap-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-cycle-line {
        display: none;
    }

    .ap-level-grid {
        gap: 50px;
    }
}


/* =========================================================
   800px
========================================================= */

@media (max-width: 800px) {

    .ap-program-hero {
        min-height: 440px;
    }

    .ap-program-hero-inner {
        padding-top: 90px;
    }

    .ap-hero-program-count {
        display: none;
    }

    .ap-program-grid,
    .ap-program-grid.ap-reverse,
    .ap-level-grid {
        grid-template-columns: 1fr;
    }

    .ap-program-grid.ap-reverse .ap-program-visual,
    .ap-program-grid.ap-reverse .ap-program-content {
        order: initial;
    }

    .ap-program-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .ap-feature-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* =========================================================
   650px
========================================================= */

@media (max-width: 650px) {

    .ap-container {
        width: min(91%, 1200px);
    }

    .ap-program-hero {
        min-height: 450px;
    }

    .ap-program-hero-content h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .ap-program-hero-content p {
        font-size: 12px;
    }

    .ap-hero-bottom {
        flex-direction: column;
        gap: 5px;
    }

    .ap-program-intro,
    .ap-sport-program,
    .ap-training-system,
    .ap-level-section,
    .ap-program-features {
        padding: 70px 0;
    }

    .ap-section-heading h2 {
        font-size: 38px;
    }

    .ap-sport-selector {
        grid-template-columns: 1fr;
    }

    .ap-sport-tab {
        min-height: 110px;
    }

    .ap-program-visual {
        min-height: 390px;
    }

    .ap-program-content h2 {
        font-size: 40px;
    }

    .ap-program-details {
        grid-template-columns: 1fr;
    }

    .ap-training-cycle,
    .ap-feature-grid {
        grid-template-columns: 1fr;
    }

    .ap-cycle-card {
        min-height: auto;
    }

    .ap-feature {
        min-height: auto;
    }

    .ap-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ap-final-btn,
    .ap-final-outline {
        width: 100%;
    }

    .ap-program-final {
        min-height: 420px;
    }
}


/* =========================================================
   450px
========================================================= */

@media (max-width: 450px) {

    .ap-program-hero-content h1 {
        font-size: 40px;
    }

    .ap-eyebrow {
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .ap-program-visual {
        min-height: 340px;
    }

    .ap-program-image {
        inset: 0 20px 25px 0;
    }

    .ap-program-number {
        font-size: 36px;
    }

    .ap-program-tag {
        right: 0;
        bottom: 40px;
        min-width: 125px;
        padding: 12px 15px;
    }

    .ap-program-tag strong {
        font-size: 13px;
    }

    .ap-program-content h2 {
        font-size: 34px;
    }

    .ap-program-lead {
        font-size: 13px !important;
    }

    .ap-level {
        grid-template-columns: 45px 1fr;
    }

    .ap-level-dot {
        width: 43px;
        height: 43px;
    }

    .ap-final-inner h2 {
        font-size: 40px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-programs-page *,
    .apex-programs-page *::before,
    .apex-programs-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   APEX SPORTS ACADEMY
   STUDENT DASHBOARD
   FULL REPLACEMENT CSS
========================================================= */

.apex-student-dashboard {

    --asd-primary: #159ee3;
    --asd-primary-dark: #087db8;
    --asd-light-blue: #eaf8ff;
    --asd-soft-blue: #f4fbff;

    --asd-dark: #071923;
    --asd-navy: #082d47;

    --asd-text: #344653;
    --asd-muted: #7b8b96;

    --asd-border: #dceaf1;

    width: 100%;
    min-height: 100vh;

    background: #f6fbfe;
    color: var(--asd-text);

    overflow: hidden;
}


/* =========================================================
   RESET — DASHBOARD ONLY
========================================================= */

.apex-student-dashboard *,
.apex-student-dashboard *::before,
.apex-student-dashboard *::after {
    box-sizing: border-box;
}

.apex-student-dashboard a {
    text-decoration: none;
}

.apex-student-dashboard button,
.apex-student-dashboard input,
.apex-student-dashboard select {
    font: inherit;
}

.asd-container {
    width: min(92%, 1240px);
    margin: auto;
}


/* =========================================================
   TOP WELCOME
========================================================= */

.asd-dashboard-top {

    position: relative;

    padding: 75px 0 55px;

    background:
        linear-gradient(
            115deg,
            #062b44,
            #0a5d84 70%,
            #0e7fab
        );

    overflow: hidden;
}

.asd-dashboard-top::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -360px;

    border: 1px solid rgba(100,220,255,.2);

    border-radius: 50%;

    animation: asdRotate 20s linear infinite;
}

.asd-dashboard-top::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -220px;

    border: 1px solid rgba(100,220,255,.13);

    border-radius: 50%;
}

.asd-top-grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 330px;

    align-items: center;

    gap: 70px;
}

.asd-welcome {
    animation: asdFadeUp .7s ease both;
}

.asd-small-label {

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #63d5ff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.asd-small-label::before {

    content: "";

    width: 30px;
    height: 2px;

    background: #59cfff;
}

.asd-welcome h1 {

    margin: 14px 0 12px;

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -2.5px;
}

.asd-welcome h1 span {
    color: #51caf8;
}

.asd-welcome > p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.8;
}

.asd-student-meta {

    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 24px;
}

.asd-student-meta span {

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 6px;

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.72);

    font-size: 9px;
}

.asd-student-meta i {
    color: #55cfff;
}


/* =========================================================
   PROFILE
========================================================= */

.asd-profile-card {

    padding: 24px;

    border: 1px solid rgba(255,255,255,.17);

    border-radius: 15px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(14px);

    box-shadow: 0 20px 50px rgba(0,0,0,.13);

    animation: asdFadeUp .8s .1s ease both;
}

.asd-profile-top {

    display: flex;
    align-items: center;

    gap: 14px;
}

.asd-avatar {

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff;

    color: var(--asd-primary);

    font-family: "Outfit", sans-serif;

    font-size: 21px;
    font-weight: 800;
}

.asd-profile-top span {

    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.45);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.asd-profile-top strong {

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: 17px;
}

.asd-profile-line {

    height: 1px;

    margin: 22px 0;

    background: rgba(255,255,255,.12);
}

.asd-profile-info {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.asd-profile-info span {

    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.4);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.asd-profile-info strong {

    color: rgba(255,255,255,.82);

    font-size: 10px;
}


/* =========================================================
   STATS
========================================================= */

.asd-stats-section {
    padding: 22px 0 0;
}

.asd-stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 13px;
}

.asd-stat-card {

    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 125px;

    padding: 20px;

    border: 1px solid var(--asd-border);

    border-radius: 13px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(14,75,101,.035);

    overflow: hidden;

    transition: .35s ease;
}

.asd-stat-card:hover {

    transform: translateY(-5px);

    border-color: rgba(21,158,227,.3);

    box-shadow: 0 18px 35px rgba(14,75,101,.08);
}

.asd-stat-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--asd-soft-blue);

    color: var(--asd-primary);

    font-size: 16px;
}

.asd-stat-content span {

    display: block;

    color: #92a1aa;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.asd-stat-content strong {

    display: block;

    margin-top: 3px;

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 29px;

    line-height: 1;
}

.asd-stat-content small {

    display: block;

    margin-top: 5px;

    color: #8c9ba4;

    font-size: 10px;
}

.asd-stat-ring {

    position: absolute;

    right: -14px;
    bottom: -14px;

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    border: 7px solid rgba(21,158,227,.08);

    border-radius: 50%;

    color: rgba(21,158,227,.3);

    font-family: "Outfit", sans-serif;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.asd-main-section {
    padding: 18px 0 0;
}

.asd-main-grid {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 13px;
}

.asd-panel {

    border: 1px solid var(--asd-border);

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 8px 28px rgba(14,75,101,.035);

    overflow: hidden;
}

.asd-panel-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 24px 25px 20px;
}

.asd-panel-heading > div > span {

    display: block;

    color: var(--asd-primary-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.asd-panel-heading h2 {

    margin: 5px 0 0;

    color: var(--asd-dark);

    font-family: "Outfit", sans-serif;

    font-size: 22px;
}

.asd-live-status {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 5px;

    background: #effaf4;

    color: #3a9b68;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .7px;
}

.asd-live-status i {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #42b879;

    animation: asdPulse 1.5s infinite;
}


/* =========================================================
   TRAINING CARD
========================================================= */

.asd-training-card {

    display: grid;

    grid-template-columns: 75px 1fr auto;

    gap: 18px;

    align-items: center;

    margin: 0 20px 20px;

    padding: 20px;

    border-radius: 11px;

    background: var(--asd-soft-blue);
}

.asd-training-date {

    width: 65px;
    height: 75px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 10px;

    background: #fff;

    box-shadow: 0 7px 18px rgba(21,158,227,.08);
}

.asd-training-date span {

    color: var(--asd-primary);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.asd-training-date strong {

    color: var(--asd-dark);

    font-family: "Outfit", sans-serif;

    font-size: 28px;

    line-height: 1;
}

.asd-training-date small {

    margin-top: 2px;

    color: #98a8b1;

    font-size: 7px;

    font-weight: 800;
}

.asd-sport-name {

    color: var(--asd-primary-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.asd-training-info h3 {

    margin: 5px 0 9px;

    color: var(--asd-dark);

    font-family: "Outfit", sans-serif;

    font-size: 17px;
}

.asd-training-details {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;
}

.asd-training-details span {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #7f919c;

    font-size: 13px;
}

.asd-training-details i {
    color: var(--asd-primary);
}

.asd-coach-mini {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 13px;
}

.asd-coach-avatar {

    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #d7f2ff;

    color: var(--asd-primary-dark);

    font-size: 7px;
    font-weight: 800;
}

.asd-coach-mini span {

    display: block;

    color: #a0adb5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.asd-coach-mini strong {

    display: block;

    margin-top: 2px;

    color: var(--primary);

    font-size: 10px;
}

.asd-session-action a {

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: #fff;

    color: var(--asd-primary);

    font-size: 10px;

    transition: .3s ease;
}

.asd-session-action a:hover {
    background: var(--asd-primary);
    color: #fff;
}


/* =========================================================
   PROGRESS
========================================================= */

.asd-progress-level {

    padding: 6px 9px;

    border-radius: 5px;

    background: var(--asd-light-blue);

    color: var(--asd-primary-dark);

    font-size: 7px;

    font-weight: 800;
}

.asd-progress-list {

    padding: 2px 25px 18px;
}

.asd-progress-item {
    margin-bottom: 17px;
}

.asd-progress-label {

    display: flex;

    justify-content: space-between;

    margin-bottom: 7px;
}

.asd-progress-label span {

    color: green;

    font-size: 12px;
    font-weight: 600;
}

.asd-progress-label strong {

    color: var(--asd-primary);

    font-size: 9px;
}

.asd-progress-bar {

    width: 100%;
    height: 6px;

    overflow: hidden;

    border-radius: 20px;

    background: #e9f2f6;
}

.asd-progress-bar span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #42bce9,
        #159ee3
    );

    animation: asdProgress 1.2s ease both;
}

@keyframes asdProgress {

    from {
        width: 0 !important;
    }
}

.asd-progress-footer {

    display: flex;

    justify-content: space-between;

    margin: 0 25px 22px;

    padding-top: 15px;

    border-top: 1px solid var(--asd-border);
}

.asd-progress-footer span {

    color: #8b9aa3;

    font-size: 10px;
}

.asd-progress-footer strong {

    color: var(--asd-dark);

    font-size: 10px;
}


/* =========================================================
   MIDDLE
========================================================= */

.asd-middle-section {
    padding: 13px 0 0;
}

.asd-two-column {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 13px;
}


/* =========================================================
   SCHEDULE
========================================================= */

.asd-view-link {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--asd-primary);

    font-size: 13px;

    font-weight: 800;
}

.asd-schedule-list {
    padding: 0 20px 20px;
}

.asd-schedule-item {

    display: grid;

    grid-template-columns: 58px 1fr auto;

    gap: 15px;

    align-items: center;

    padding: 14px;

    border-top: 1px solid var(--asd-border);
}

.asd-schedule-day {

    width: 48px;
    height: 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 8px;

    background: #f3f8fb;
}

.asd-schedule-item.active .asd-schedule-day {

    background: var(--asd-primary);

    color: #fff;
}

.asd-schedule-day span {

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;
    color: black;
}

.asd-schedule-day strong {

    font-family: "Outfit", sans-serif;

    font-size: 19px;

    line-height: 1;
    color: black;
}

.asd-schedule-main > span {

    color: var(--asd-primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.asd-schedule-main strong {

    display: block;

    margin: 4px 0;

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 12px;
}

.asd-schedule-main small {

    color: #91a0a8;

    font-size: 13px;
}

.asd-schedule-status {

    padding: 5px 7px;

    border-radius: 4px;

    background: #f2f7fa;

    color: #8798a2;

    font-size: 10px;

    font-weight: 800;
}

.asd-schedule-item.active .asd-schedule-status {

    background: #e7f8ff;

    color: var(--asd-primary-dark);
}


/* =========================================================
   TOURNAMENT
========================================================= */

.asd-tournament-card {

    position: relative;

    min-height: 350px;

    overflow: hidden;

    border-radius: 14px;

    background: #062b44;

    color: #fff;
}

.asd-tournament-bg {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(4,31,48,.96),
            rgba(8,89,128,.8)
        ),
        url("../images/tournament.jpg")
        center/cover no-repeat;
}

.asd-tournament-card::after {

    content: "04";

    position: absolute;

    right: -15px;
    top: -35px;

    color: rgba(255,255,255,.045);

    font-family: "Outfit", sans-serif;

    font-size: 190px;

    font-weight: 800;
}

.asd-tournament-content {

    position: relative;

    z-index: 2;

    padding: 28px;
}

.asd-tournament-label {

    color: #60d2ff;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.asd-tournament-content h2 {

    margin: 12px 0;

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: 34px;

    line-height: .95;

    letter-spacing: -1px;
}

.asd-tournament-content h2 strong {

    display: block;

    color: #4bc7f7;
}

.asd-tournament-content p {

    max-width: 330px;

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 13px;

    line-height: 1.7;
}

.asd-tournament-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 18px;
}

.asd-tournament-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.68);

    font-size: 13px;
}

.asd-tournament-meta i {
    color: #57cffc;
}

.asd-deadline {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;
}

.asd-deadline > span {

    max-width: 80px;

    color: rgba(255,255,255,.4);

    font-size: 8px;

    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 1px;
}

.asd-deadline strong {

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: 27px;
}

.asd-deadline small {

    margin-left: 3px;

    color: #55cdfb;

    font-size: 7px;
}

.asd-tournament-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding: 10px 14px;

    border-radius: 6px;

    background: #fff;

    color: var(--asd-navy);

    font-size: 13px;

    font-weight: 800;

    transition: .3s ease;
}

.asd-tournament-btn:hover {

    background: var(--asd-primary);

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   ATTENDANCE
========================================================= */

.asd-attendance-section {
    padding: 13px 0 0;
}

.asd-month-select {

    min-height: 34px;

    padding: 0 10px;

    border: 1px solid var(--asd-border);

    border-radius: 6px;

    outline: none;

    background: #fff;

    color: var(--asd-text);

    font-size: 8px;
}

.asd-attendance-grid {

    display: grid;

    grid-template-columns: 1.5fr .5fr;

    gap: 25px;

    padding: 5px 25px 25px;
}

.asd-calendar-head {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    margin-bottom: 8px;
}

.asd-calendar-head span {

    text-align: center;

    color: #9aa9b1;

    font-size: 10px;

    font-weight: 800;
}

.asd-calendar-days {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 6px;
}

.asd-calendar-days span {

    min-height: 34px;

    display: grid;

    place-items: center;

    border-radius: 6px;

    color: #6e808b;

    background: #f7fafc;

    font-size: 13px;

    transition: .25s ease;
}

.asd-calendar-days span.present {

    background: #e7f8ef;

    color: #299362;

}

.asd-calendar-days span.absent {

    background: #fff0f0;

    color: #d26969;

}

.asd-calendar-days span.holiday {

    background: #f1f2f3;

    color: #a5adb2;
}

.asd-calendar-days span.today {

    background: var(--asd-primary);

    color: #fff;

    box-shadow: 0 5px 14px rgba(21,158,227,.25);
}

.asd-attendance-summary {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 10px;

    border-left: 1px solid var(--asd-border);
}

.asd-attendance-circle {

    width: 125px;
    height: 125px;

    display: grid;

    place-items: center;

    border: 10px solid #dff4fc;

    border-top-color: var(--asd-primary);

    border-right-color: var(--asd-primary);

    border-radius: 50%;

    transform: rotate(-30deg);
}

.asd-attendance-circle > div {
    transform: rotate(30deg);
}

.asd-attendance-circle strong {

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 30px;
}

.asd-attendance-circle span {

    color: var(--asd-primary);

    font-size: 10px;

    font-weight: 800;
}

.asd-attendance-text {

    margin-top: 15px;

    text-align: center;
}

.asd-attendance-text strong {

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 13px;
}

.asd-attendance-text p {

    max-width: 200px;

    margin: 5px auto 0;

    color: #8b9aa3;

    font-size: 13px;

    line-height: 1.6;
}

.asd-attendance-legend {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;

    margin-top: 13px;
}

.asd-attendance-legend span {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: #8b9aa3;

    font-size: 13px;
}

.asd-attendance-legend i {

    width: 6px;
    height: 6px;

    display: inline-block;

    border-radius: 50%;
}

.present-dot {
    background: #52ba82;
}

.absent-dot {
    background: #df7474;
}

.holiday-dot {
    background: #b5bdc2;
}


/* =========================================================
   NOTES
========================================================= */

.asd-notes-section {
    padding: 13px 0 0;
}

.asd-notes-grid {

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 13px;
}

.asd-note-date {

    color: #98a8b1;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.asd-note-content {

    padding: 0 25px 25px;
}

.asd-note-coach {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}

.asd-note-avatar {

    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--asd-light-blue);

    color: var(--asd-primary-dark);

    font-size: 8px;

    font-weight: 800;
}

.asd-note-coach strong {

    display: block;

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 12px;
}

.asd-note-coach span {

    display: block;

    margin-top: 3px;

    color: #92a1aa;

    font-size: 13px;
}

.asd-note-content blockquote {

    margin: 0;

    padding: 18px;

    border-left: 3px solid var(--asd-primary);

    border-radius: 0 8px 8px 0;

    background: var(--asd-soft-blue);

    color: #536773;

    font-size: 13px;

    line-height: 1.8;
}

.asd-note-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 15px;
}

.asd-note-tags span {

    padding: 6px 8px;

    border-radius: 5px;

    background: #f0f6f9;

    color: #7b8d97;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   ACHIEVEMENTS
========================================================= */

.asd-achievement-list {

    padding: 0 25px 20px;
}

.asd-achievement {

    display: grid;

    grid-template-columns: 40px 1fr auto;

    align-items: center;

    gap: 11px;

    padding: 12px 0;

    border-top: 1px solid var(--asd-border);
}

.asd-achievement-icon {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #fff7df;

    color: #e6aa2d;

    font-size: 12px;
}

.asd-achievement:nth-child(2) .asd-achievement-icon {

    background: #e8f7ff;

    color: var(--asd-primary);
}

.asd-achievement:nth-child(3) .asd-achievement-icon {

    background: #f2ecff;

    color: #8665cf;
}

.asd-achievement strong {

    display: block;

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 13px;
}

.asd-achievement span {

    display: block;

    margin-top: 3px;

    color: #95a3ab;

    font-size: 10px;
}

.asd-achievement b {

    color: var(--asd-primary);

    font-family: "Outfit", sans-serif;

    font-size: 12px;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.asd-actions-section {
    padding: 30px 0;
}

.asd-action-heading {

    margin-bottom: 15px;
}

.asd-action-heading span {

    color: var(--asd-primary-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.asd-action-heading h2 {

    margin: 5px 0 0;

    color: var(--asd-dark);

    font-family: "Outfit", sans-serif;

    font-size: 22px;
}

.asd-action-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.asd-action-card {

    position: relative;

    min-height: 135px;

    padding: 19px;

    border: 1px solid var(--asd-border);

    border-radius: 12px;

    background: #fff;

    transition: .35s ease;

    overflow: hidden;
}

.asd-action-card:hover {

    transform: translateY(-5px);

    border-color: rgba(21,158,227,.35);

    box-shadow: 0 17px 35px rgba(14,75,101,.08);
}

.asd-action-card > i {

    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--asd-soft-blue);

    color: var(--asd-primary);

    font-size: 13px;
}

.asd-action-card > span {

    display: block;

    margin-top: 17px;

    color: var(--primary);

    font-family: "Outfit", sans-serif;

    font-size: 14px;
}

.asd-action-card small {

    display: block;

    margin-top: 3px;

    color: #92a0a8;

    font-size: 13px;
}

.asd-action-card b {

    position: absolute;

    right: 17px;
    bottom: 17px;

    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f2f8fb;

    color: var(--asd-primary);

    font-size: 8px;

    transition: .3s ease;
}

.asd-action-card:hover b {

    background: var(--asd-primary);

    color: #fff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER MESSAGE
========================================================= */

.asd-dashboard-footer {

    position: relative;

    padding: 45px 0;

    background: #062b44;

    overflow: hidden;
}

.asd-dashboard-footer::before {

    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -150px;
    top: -170px;

    border: 1px solid rgba(85,207,255,.16);

    border-radius: 50%;
}

.asd-footer-message {

    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.asd-footer-message > div:first-child span {

    color: #58cffb;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.asd-footer-message h2 {

    margin: 8px 0 0;

    color: #fff;

    font-family: "Outfit", sans-serif;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1;

    letter-spacing: -1px;
}

.asd-footer-message h2 strong {
    color: #4bc8f7;
}

.asd-footer-mark {

    color: rgba(255,255,255,.08);

    font-family: "Outfit", sans-serif;

    font-size: 65px;

    font-weight: 900;

    letter-spacing: -4px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes asdFadeUp {

    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes asdPulse {

    0%,100% {
        box-shadow: 0 0 0 0 rgba(66,184,121,.35);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(66,184,121,0);
    }
}

@keyframes asdRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .asd-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .asd-profile-card {
        max-width: 430px;
    }

    .asd-main-grid,
    .asd-two-column,
    .asd-notes-grid {
        grid-template-columns: 1fr;
    }

    .asd-tournament-card {
        min-height: 330px;
    }

    .asd-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .asd-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 750px) {

    .asd-dashboard-top {
        padding: 65px 0 40px;
    }

    .asd-welcome h1 {
        font-size: 44px;
    }

    .asd-student-meta {
        gap: 6px;
    }

    .asd-student-meta span {
        font-size: 13px;
    }

    .asd-training-card {
        grid-template-columns: 65px 1fr;
    }

    .asd-session-action {
        display: none;
    }

    .asd-attendance-grid {
        grid-template-columns: 1fr;
    }

    .asd-attendance-summary {
        border-top: 1px solid var(--asd-border);
        border-left: 0;
        padding-top: 25px;
    }

    .asd-footer-message {
        flex-direction: column;
        align-items: flex-start;
    }

    .asd-footer-mark {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .asd-container {
        width: 91%;
    }

    .asd-stats-grid {
        grid-template-columns: 1fr;
    }

    .asd-stat-card {
        min-height: 105px;
    }

    .asd-dashboard-top {
        padding: 55px 0 35px;
    }

    .asd-welcome h1 {
        font-size: 39px;
        letter-spacing: -1.7px;
    }

    .asd-profile-card {
        padding: 18px;
    }

    .asd-panel-heading {
        padding: 19px 17px 16px;
    }

    .asd-panel-heading h2 {
        font-size: 19px;
    }

    .asd-training-card {
        margin: 0 12px 12px;
        padding: 14px;
        grid-template-columns: 58px 1fr;
        gap: 11px;
    }

    .asd-training-date {
        width: 54px;
        height: 65px;
    }

    .asd-training-date strong {
        font-size: 24px;
    }

    .asd-training-info h3 {
        font-size: 14px;
    }

    .asd-training-details {
        flex-direction: column;
        gap: 5px;
    }

    .asd-progress-list {
        padding-right: 17px;
        padding-left: 17px;
    }

    .asd-progress-footer {
        margin-right: 17px;
        margin-left: 17px;
    }

    .asd-schedule-list {
        padding-right: 12px;
        padding-left: 12px;
    }

    .asd-schedule-item {
        grid-template-columns: 48px 1fr;
        gap: 10px;
    }

    .asd-schedule-status {
        display: none;
    }

    .asd-schedule-main strong {
        font-size: 11px;
    }

    .asd-attendance-grid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .asd-calendar-days {
        gap: 4px;
    }

    .asd-calendar-days span {
        min-height: 31px;
    }

    .asd-note-content {
        padding-right: 17px;
        padding-left: 17px;
    }

    .asd-achievement-list {
        padding-right: 17px;
        padding-left: 17px;
    }

    .asd-action-grid {
        grid-template-columns: 1fr;
    }

    .asd-action-card {
        min-height: 120px;
    }

    .asd-final-message {
        align-items: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .asd-welcome h1 {
        font-size: 35px;
    }

    .asd-student-meta span {
        width: 100%;
    }

    .asd-training-card {
        grid-template-columns: 1fr;
    }

    .asd-training-date {
        width: 100%;
        height: 48px;
        flex-direction: row;
        gap: 7px;
    }

    .asd-training-date strong {
        font-size: 21px;
    }

    .asd-training-date small {
        margin-top: 0;
    }

    .asd-profile-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .asd-month-select {
        width: 100%;
    }

    .asd-panel-heading {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-student-dashboard *,
    .apex-student-dashboard *::before,
    .apex-student-dashboard *::after {

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   APEX SPORTS ACADEMY
   ADMIN DASHBOARD
   ========================================================= */

.apex-admin-dashboard {
    --ad-primary: #159ee3;
    --ad-primary-dark: #087db8;
    --ad-primary-soft: #eaf8ff;
    --ad-bg: #f5fbff;
    --ad-white: #ffffff;
    --ad-dark: #071923;
    --ad-text: #273743;
    --ad-muted: #71818c;
    --ad-border: #dcecf4;
    --ad-green: #1ca86b;
    --ad-orange: #f19a38;
    --ad-red: #e85d68;
    --ad-shadow: 0 15px 45px rgba(19, 91, 122, 0.08);

    width: 100%;
    overflow: hidden;
    background: var(--ad-bg);
    color: var(--ad-text);
    font-family: "Outfit", sans-serif;
}

.apex-admin-dashboard *,
.apex-admin-dashboard *::before,
.apex-admin-dashboard *::after {
    box-sizing: border-box;
}

.apex-admin-dashboard a {
    text-decoration: none;
}

.apex-admin-dashboard button,
.apex-admin-dashboard input,
.apex-admin-dashboard select {
    font-family: inherit;
}


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.apex-admin-dashboard .apex-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.apex-admin-dashboard .admin-dashboard-hero {
    position: relative;
    min-height: 520px;
    padding: 105px 0 80px;
    overflow: hidden;
    background:
        linear-gradient(125deg, #071923 0%, #0a2737 55%, #0b4663 100%);
    color: #fff;
}

.apex-admin-dashboard .admin-dashboard-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: -300px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.apex-admin-dashboard .admin-dashboard-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -220px;
    bottom: -250px;
    border: 1px solid rgba(21,158,227,.2);
    border-radius: 50%;
}

.apex-admin-dashboard .admin-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.apex-admin-dashboard .admin-shape-one {
    width: 90px;
    height: 90px;
    right: 34%;
    top: 18%;
    border: 1px solid rgba(21,158,227,.3);
}

.apex-admin-dashboard .admin-shape-two {
    width: 180px;
    height: 180px;
    left: 44%;
    bottom: -120px;
    border: 1px solid rgba(255,255,255,.08);
}

.apex-admin-dashboard .admin-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: center;
}

.apex-admin-dashboard .admin-hero-content {
    max-width: 700px;
}

.apex-admin-dashboard .admin-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(21,158,227,.35);
    border-radius: 30px;
    background: rgba(21,158,227,.1);
    color: #73d2ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.apex-admin-dashboard .admin-eyebrow i {
    font-size: 12px;
}

.apex-admin-dashboard .admin-hero-content h1 {
    margin: 0;
    max-width: 650px;
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
}

.apex-admin-dashboard .admin-hero-content h1 span {
    color: #48c4f7;
}

.apex-admin-dashboard .admin-hero-content p {
    max-width: 610px;
    margin: 24px 0 30px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.8;
}

.apex-admin-dashboard .admin-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}


/* HERO BUTTONS */

.apex-admin-dashboard .admin-primary-btn,
.apex-admin-dashboard .admin-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 21px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.apex-admin-dashboard .admin-primary-btn {
    background: var(--ad-primary);
    color: #fff;
    box-shadow: 0 12px 25px rgba(21,158,227,.22);
}

.apex-admin-dashboard .admin-primary-btn:hover {
    background: #38b8ef;
    transform: translateY(-3px);
}

.apex-admin-dashboard .admin-secondary-btn {
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    background: rgba(255,255,255,.04);
}

.apex-admin-dashboard .admin-secondary-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,.09);
    transform: translateY(-3px);
}


/* HERO PANEL */

.apex-admin-dashboard .admin-hero-panel {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0,0,0,.16);
}

.apex-admin-dashboard .admin-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.apex-admin-dashboard .admin-panel-top span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.apex-admin-dashboard .admin-panel-top strong {
    color: #fff;
    font-size: 15px;
}

.apex-admin-dashboard .admin-live-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #36d68d;
    box-shadow: 0 0 0 7px rgba(54,214,141,.1);
    animation: adminPulse 2s infinite;
}

@keyframes adminPulse {
    0%,100% {
        box-shadow: 0 0 0 5px rgba(54,214,141,.08);
    }
    50% {
        box-shadow: 0 0 0 11px rgba(54,214,141,.02);
    }
}

.apex-admin-dashboard .admin-panel-number {
    margin-top: 27px;
    color: #fff;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

.apex-admin-dashboard .admin-hero-panel > p {
    margin: 12px 0 24px;
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.7;
}

.apex-admin-dashboard .admin-panel-bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.45);
    font-size: 10px;
}

.apex-admin-dashboard .admin-panel-bottom span:first-child {
    color: #59d69d;
    font-weight: 600;
}


/* =========================================================
   SECTION COMMON
   ========================================================= */

.apex-admin-dashboard .admin-overview,
.apex-admin-dashboard .admin-training-section,
.apex-admin-dashboard .admin-students-section,
.apex-admin-dashboard .admin-analytics-section,
.apex-admin-dashboard .admin-coaches-section,
.apex-admin-dashboard .admin-tournament-section,
.apex-admin-dashboard .admin-facilities-section,
.apex-admin-dashboard .admin-activity-section {
    padding: 85px 0;
}

.apex-admin-dashboard .admin-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.apex-admin-dashboard .admin-section-label {
    display: block;
    margin-bottom: 9px;
    color: var(--ad-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.apex-admin-dashboard .admin-section-heading h2 {
    margin: 0;
    color: var(--ad-dark);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -.8px;
}

.apex-admin-dashboard .admin-section-heading > p {
    max-width: 390px;
    margin: 0;
    color: var(--ad-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   STATS
   ========================================================= */

.apex-admin-dashboard .admin-overview {
    background: #fff;
}

.apex-admin-dashboard .admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.apex-admin-dashboard .admin-stat-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 145px;
    padding: 24px 20px;
    border: 1px solid var(--ad-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--ad-shadow);
    transition: .3s ease;
}

.apex-admin-dashboard .admin-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21,158,227,.35);
    box-shadow: 0 20px 45px rgba(21,158,227,.11);
}

.apex-admin-dashboard .admin-stat-icon {
    flex: 0 0 51px;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--ad-primary-soft);
    color: var(--ad-primary);
    font-size: 19px;
}

.apex-admin-dashboard .admin-stat-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--ad-muted);
    font-size: 15px;
    font-weight: 500;
}

.apex-admin-dashboard .admin-stat-info strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ad-dark);
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
}

.apex-admin-dashboard .admin-stat-info small {
    color: #8b9aa3;
    font-size: 13px;
}

.apex-admin-dashboard .admin-stat-info small i {
    color: var(--ad-green);
    margin-right: 3px;
}


/* =========================================================
   TRAINING + QUICK ACTIONS
   ========================================================= */

.apex-admin-dashboard .admin-training-section {
    background: var(--ad-bg);
}

.apex-admin-dashboard .admin-two-column {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
}

.apex-admin-dashboard .admin-schedule-panel,
.apex-admin-dashboard .admin-actions-panel {
    padding: 28px;
    border: 1px solid var(--ad-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--ad-shadow);
}

.apex-admin-dashboard .admin-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.apex-admin-dashboard .admin-panel-heading h2 {
    margin: 0;
    color: var(--ad-dark);
    font-size: 23px;
    letter-spacing: -.4px;
}

.apex-admin-dashboard .admin-panel-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ad-primary);
    font-size: 13px;
    font-weight: 700;
}

.apex-admin-dashboard .admin-panel-heading > a i {
    font-size: 9px;
    transition: .25s ease;
}

.apex-admin-dashboard .admin-panel-heading > a:hover i {
    transform: translateX(4px);
}


/* SCHEDULE */

.apex-admin-dashboard .admin-schedule-list {
    display: flex;
    flex-direction: column;
}

.apex-admin-dashboard .admin-schedule-item {
    display: grid;
    grid-template-columns: 64px 42px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid #edf3f6;
}

.apex-admin-dashboard .admin-schedule-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.apex-admin-dashboard .admin-time strong {
    display: block;
    color: var(--ad-dark);
    font-size: 14px;
}

.apex-admin-dashboard .admin-time span {
    color: var(--ad-muted);
    font-size: 8px;
    font-weight: 600;
}

.apex-admin-dashboard .admin-sport-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: 15px;
}

.apex-admin-dashboard .football-mark {
    background: #eaf8ff;
    color: #159ee3;
}

.apex-admin-dashboard .basketball-mark {
    background: #fff4e8;
    color: #e8912e;
}

.apex-admin-dashboard .tennis-mark {
    background: #effbea;
    color: #5aa53d;
}

.apex-admin-dashboard .swimming-mark {
    background: #e9f5ff;
    color: #438ed0;
}

.apex-admin-dashboard .admin-session-info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-dark);
    font-size: 15px;
}

.apex-admin-dashboard .admin-session-info span {
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .admin-status {
    padding: 6px 9px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.apex-admin-dashboard .active-status {
    background: #e9fbf2;
    color: var(--ad-green);
}

.apex-admin-dashboard .upcoming-status {
    background: #edf8fd;
    color: var(--ad-primary);
}


/* QUICK ACTIONS */

.apex-admin-dashboard .admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.apex-admin-dashboard .admin-action-card {
    position: relative;
    min-height: 137px;
    padding: 18px;
    border: 1px solid var(--ad-border);
    border-radius: 12px;
    background: #fbfdfe;
    transition: .3s ease;
}

.apex-admin-dashboard .admin-action-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21,158,227,.35);
    background: var(--ad-primary-soft);
}

.apex-admin-dashboard .action-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 9px;
    background: #fff;
    color: var(--ad-primary);
    box-shadow: 0 7px 20px rgba(19,91,122,.07);
}

.apex-admin-dashboard .admin-action-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-dark);
    font-size: 13px;
}

.apex-admin-dashboard .admin-action-card small {
    color: var(--ad-muted);
    font-size: 13px;
}


/* =========================================================
   STUDENT TABLE
   ========================================================= */

.apex-admin-dashboard .admin-students-section {
    background: #fff;
}

.apex-admin-dashboard .admin-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--ad-border);
    border-radius: 8px;
    color: var(--ad-dark);
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
}

.apex-admin-dashboard .admin-outline-btn:hover {
    border-color: var(--ad-primary);
    color: var(--ad-primary);
    transform: translateY(-2px);
}

.apex-admin-dashboard .admin-student-table-wrapper {
    overflow: hidden;
    border: 1px solid var(--ad-border);
    border-radius: 15px;
    box-shadow: var(--ad-shadow);
}

.apex-admin-dashboard .admin-table-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 17px;
    border-bottom: 1px solid var(--ad-border);
    background: #fbfdfe;
}

.apex-admin-dashboard .admin-search-box {
    width: 280px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid var(--ad-border);
    border-radius: 8px;
    background: #fff;
}

.apex-admin-dashboard .admin-search-box i {
    color: #9babb4;
    font-size: 11px;
}

.apex-admin-dashboard .admin-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ad-dark);
    font-size: 13px;
    background: transparent;
}

.apex-admin-dashboard .admin-search-box input::placeholder {
    color: #a5b1b8;
}

.apex-admin-dashboard .admin-filter-btn {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--ad-border);
    border-radius: 8px;
    background: #fff;
    color: var(--ad-dark);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.apex-admin-dashboard .admin-filter-btn i {
    margin-right: 5px;
    color: var(--ad-primary);
}

.apex-admin-dashboard .admin-student-table {
    width: 100%;
}

.apex-admin-dashboard .admin-table-head,
.apex-admin-dashboard .admin-table-row {
    display: grid;
    grid-template-columns: 1.5fr .85fr 1fr .75fr 1fr 55px;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
}

.apex-admin-dashboard .admin-table-head {
    color: #84939c;
    background: #f9fcfd;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.apex-admin-dashboard .admin-table-row {
    border-top: 1px solid #edf3f6;
    color: var(--ad-text);
    font-size: 13px;
}

.apex-admin-dashboard .admin-table-row > span {
    color: #687983;
}

.apex-admin-dashboard .admin-athlete {
    display: flex;
    align-items: center;
    gap: 11px;
}

.apex-admin-dashboard .athlete-avatar {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex: 0 0 37px;
    border-radius: 50%;
    background: var(--ad-primary-soft);
    color: var(--ad-primary-dark);
    font-size: 10px;
    font-weight: 800;
}

.apex-admin-dashboard .admin-athlete strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ad-dark);
    font-size: 15px;
}

.apex-admin-dashboard .admin-athlete small {
    color: #9aa7ae;
    font-size: 8px;
}

.apex-admin-dashboard .attendance-good {
    color: var(--ad-green) !important;
    font-weight: 800;
}

.apex-admin-dashboard .attendance-average {
    color: var(--ad-orange) !important;
    font-weight: 800;
}

.apex-admin-dashboard .attendance-warning {
    color: var(--ad-red) !important;
    font-weight: 800;
}

.apex-admin-dashboard .progress-text {
    color: var(--ad-primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.apex-admin-dashboard .table-action {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ad-border);
    border-radius: 7px;
    background: #fff;
    color: var(--ad-primary);
    cursor: pointer;
    transition: .25s ease;
}

.apex-admin-dashboard .table-action:hover {
    background: var(--ad-primary);
    color: #fff;
}


/* =========================================================
   ANALYTICS
   ========================================================= */

.apex-admin-dashboard .admin-analytics-section {
    background: var(--ad-bg);
}

.apex-admin-dashboard .admin-analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.apex-admin-dashboard .admin-analytics-card {
    padding: 28px;
    border: 1px solid var(--ad-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--ad-shadow);
}

.apex-admin-dashboard .analytics-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.apex-admin-dashboard .analytics-card-heading h3 {
    margin: 0;
    color: var(--ad-dark);
    font-size: 21px;
}

.apex-admin-dashboard .analytics-card-heading select {
    height: 34px;
    padding: 0 9px;
    border: 1px solid var(--ad-border);
    border-radius: 7px;
    outline: none;
    background: #fff;
    color: var(--ad-text);
    font-size: 13px;
}

.apex-admin-dashboard .analytics-card-heading > a {
    color: var(--ad-primary);
    font-size: 10px;
    font-weight: 700;
}


/* ATTENDANCE CIRCLE */

.apex-admin-dashboard .attendance-overview {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 28px;
}

.apex-admin-dashboard .attendance-circle {
    position: relative;
    width: 145px;
    height: 145px;
    flex: 0 0 145px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
        var(--ad-primary) 0deg 327deg,
        #eaf1f4 327deg 360deg
    );
}

.apex-admin-dashboard .attendance-circle::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background: #fff;
}

.apex-admin-dashboard .attendance-circle > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.apex-admin-dashboard .attendance-circle strong {
    display: block;
    color: var(--ad-dark);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.apex-admin-dashboard .attendance-circle span {
    color: var(--ad-muted);
    font-size: 9px;
}

.apex-admin-dashboard .attendance-breakdown {
    flex: 1;
}

.apex-admin-dashboard .attendance-breakdown > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}

.apex-admin-dashboard .attendance-breakdown span {
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .attendance-breakdown strong {
    color: var(--ad-dark);
    font-size: 11px;
}

.apex-admin-dashboard .attendance-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 6px;
    border-radius: 50%;
}

.apex-admin-dashboard .attendance-dot.present {
    background: var(--ad-primary);
}

.apex-admin-dashboard .attendance-dot.absent {
    background: var(--ad-orange);
}

.apex-admin-dashboard .attendance-dot.leave {
    background: #d8e3e8;
}


/* ATTENDANCE BARS */

.apex-admin-dashboard .attendance-bar {
    display: grid;
    grid-template-columns: 75px 1fr 35px;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.apex-admin-dashboard .attendance-bar > span {
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .attendance-bar > div {
    height: 6px;
    overflow: hidden;
    border-radius: 20px;
    background: #edf3f5;
}

.apex-admin-dashboard .attendance-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--ad-primary);
}

.apex-admin-dashboard .attendance-bar strong {
    color: var(--ad-dark);
    font-size: 9px;
    text-align: right;
}


/* PERFORMANCE */

.apex-admin-dashboard .performance-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apex-admin-dashboard .performance-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.apex-admin-dashboard .performance-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    border-radius: 10px;
    background: var(--ad-primary-soft);
    color: var(--ad-primary);
    font-size: 14px;
}

.apex-admin-dashboard .performance-info {
    flex: 1;
}

.apex-admin-dashboard .performance-info > div:first-child {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.apex-admin-dashboard .performance-info strong {
    color: var(--ad-dark);
    font-size: 13px;
}

.apex-admin-dashboard .performance-info span {
    color: var(--ad-primary);
    font-size: 10px;
    font-weight: 700;
}

.apex-admin-dashboard .performance-track {
    height: 6px;
    overflow: hidden;
    border-radius: 10px;
    background: #edf3f5;
}

.apex-admin-dashboard .performance-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--ad-primary);
}


/* =========================================================
   COACHES
   ========================================================= */

.apex-admin-dashboard .admin-coaches-section {
    background: #fff;
}

.apex-admin-dashboard .admin-coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.apex-admin-dashboard .admin-coach-card {
    padding: 23px;
    border: 1px solid var(--ad-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--ad-shadow);
    transition: .3s ease;
}

.apex-admin-dashboard .admin-coach-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21,158,227,.3);
}

.apex-admin-dashboard .coach-avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 15px;
    background:
        linear-gradient(145deg, var(--ad-primary-soft), #d7f1fc);
    color: var(--ad-primary-dark);
    font-size: 15px;
    font-weight: 800;
}

.apex-admin-dashboard .coach-details strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-dark);
    font-size: 14px;
}

.apex-admin-dashboard .coach-details span {
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .coach-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 19px 0;
    padding: 13px 0;
    border-top: 1px solid #edf3f6;
    border-bottom: 1px solid #edf3f6;
}

.apex-admin-dashboard .coach-meta span {
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .coach-meta i {
    width: 16px;
    color: var(--ad-primary);
}

.apex-admin-dashboard .admin-coach-card > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ad-primary);
    font-size: 13px;
    font-weight: 700;
}

.apex-admin-dashboard .admin-coach-card > a i {
    font-size: 8px;
}


/* =========================================================
   TOURNAMENTS
   ========================================================= */

.apex-admin-dashboard .admin-tournament-section {
    background: var(--ad-bg);
}

.apex-admin-dashboard .admin-tournament-grid {
    display: grid;
    gap: 15px;
}

.apex-admin-dashboard .admin-tournament-card {
    display: grid;
    grid-template-columns: 72px 1fr 150px;
    align-items: center;
    gap: 24px;
    padding: 22px;
    border: 1px solid var(--ad-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--ad-shadow);
    transition: .3s ease;
}

.apex-admin-dashboard .admin-tournament-card:hover {
    transform: translateX(5px);
    border-color: rgba(21,158,227,.3);
}

.apex-admin-dashboard .tournament-date {
    width: 65px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--ad-primary-soft);
    color: var(--ad-primary-dark);
}

.apex-admin-dashboard .tournament-date span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.apex-admin-dashboard .tournament-date strong {
    font-size: 26px;
    line-height: 1;
}

.apex-admin-dashboard .tournament-tag {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--ad-primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.apex-admin-dashboard .tournament-content h3 {
    margin: 0 0 6px;
    color: var(--ad-dark);
    font-size: 16px;
}

.apex-admin-dashboard .tournament-content p {
    max-width: 600px;
    margin: 0 0 11px;
    color: var(--ad-muted);
    font-size: 13px;
    line-height: 1.6;
}

.apex-admin-dashboard .tournament-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.apex-admin-dashboard .tournament-meta span {
    color: #8a989f;
    font-size: 13px;
}

.apex-admin-dashboard .tournament-meta i {
    margin-right: 4px;
    color: var(--ad-primary);
}

.apex-admin-dashboard .tournament-deadline {
    padding-left: 20px;
    border-left: 1px solid var(--ad-border);
}

.apex-admin-dashboard .tournament-deadline span {
    display: block;
    margin-bottom: 5px;
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .tournament-deadline strong {
    color: var(--ad-dark);
    font-size: 14px;
}


/* =========================================================
   FACILITIES
   ========================================================= */

.apex-admin-dashboard .admin-facilities-section {
    background: #fff;
}

.apex-admin-dashboard .admin-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.apex-admin-dashboard .admin-facility-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 19px;
    border: 1px solid var(--ad-border);
    border-radius: 13px;
    background: #fff;
    transition: .3s ease;
}

.apex-admin-dashboard .admin-facility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ad-shadow);
}

.apex-admin-dashboard .facility-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    border-radius: 10px;
    background: var(--ad-primary-soft);
    color: var(--ad-primary);
}

.apex-admin-dashboard .admin-facility-card > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.apex-admin-dashboard .admin-facility-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-dark);
    font-size: 15px;
}

.apex-admin-dashboard .admin-facility-card span {
    color: var(--ad-muted);
    font-size: 13px;
}

.apex-admin-dashboard .admin-facility-card em {
    padding: 5px 7px;
    border-radius: 20px;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.apex-admin-dashboard .facility-available {
    background: #e9fbf2;
    color: var(--ad-green);
}

.apex-admin-dashboard .facility-training {
    background: #eaf8ff;
    color: var(--ad-primary);
}

.apex-admin-dashboard .facility-maintenance {
    background: #fff4e8;
    color: var(--ad-orange);
}


/* =========================================================
   RECENT ACTIVITY
   ========================================================= */

.apex-admin-dashboard .admin-activity-section {
    background: var(--ad-bg);
}

.apex-admin-dashboard .admin-activity-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
}

.apex-admin-dashboard .admin-activity-panel {
    padding: 28px;
    border: 1px solid var(--ad-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--ad-shadow);
}

.apex-admin-dashboard .activity-list {
    display: flex;
    flex-direction: column;
}

.apex-admin-dashboard .activity-item {
    display: flex;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid #edf3f6;
}

.apex-admin-dashboard .activity-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.apex-admin-dashboard .activity-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    border-radius: 10px;
    background: var(--ad-primary-soft);
    color: var(--ad-primary);
    font-size: 12px;
}

.apex-admin-dashboard .activity-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-dark);
    font-size: 15px;
}

.apex-admin-dashboard .activity-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-muted);
    font-size: 13px;
    line-height: 1.55;
}

.apex-admin-dashboard .activity-item small {
    color: #a1adb3;
    font-size: 13px;
}


/* ADMIN NOTE */

.apex-admin-dashboard .admin-note-panel {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding: 38px;
    border-radius: 17px;
    background:
        linear-gradient(140deg, #087db8, #0a4e6d);
    color: #fff;
    box-shadow: 0 20px 50px rgba(8,125,184,.18);
}

.apex-admin-dashboard .admin-note-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
}

.apex-admin-dashboard .admin-note-pattern::before,
.apex-admin-dashboard .admin-note-pattern::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.apex-admin-dashboard .admin-note-pattern::before {
    inset: 35px;
}

.apex-admin-dashboard .admin-note-pattern::after {
    inset: 70px;
}

.apex-admin-dashboard .admin-note-panel .admin-section-label {
    position: relative;
    color: #83dcff;
}

.apex-admin-dashboard .admin-note-panel h2 {
    position: relative;
    max-width: 390px;
    margin: 18px 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.apex-admin-dashboard .admin-note-panel > p {
    position: relative;
    max-width: 430px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
}

.apex-admin-dashboard .admin-note-footer {
    position: absolute;
    right: 38px;
    bottom: 32px;
    left: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.apex-admin-dashboard .admin-note-footer span {
    color: rgba(255,255,255,.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.apex-admin-dashboard .admin-note-footer i {
    margin-right: 5px;
    color: #6fd6ff;
}

.apex-admin-dashboard .admin-note-footer strong {
    color: rgba(255,255,255,.45);
    font-size: 10px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.apex-admin-dashboard .admin-final-section {
    padding: 30px 0 90px;
    background: var(--ad-bg);
}

.apex-admin-dashboard .admin-final-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    padding: 45px 50px;
    border-radius: 19px;
    background:
        linear-gradient(120deg, #071923, #0a3449);
    color: #fff;
}

.apex-admin-dashboard .admin-final-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: 12%;
    top: -190px;
    border: 1px solid rgba(21,158,227,.22);
    border-radius: 50%;
}

.apex-admin-dashboard .admin-final-content {
    position: relative;
    z-index: 2;
}

.apex-admin-dashboard .admin-final-content .admin-section-label {
    color: #69d3ff;
}

.apex-admin-dashboard .admin-final-content h2 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -.8px;
}

.apex-admin-dashboard .admin-final-content h2 span {
    color: #4ec8f7;
}

.apex-admin-dashboard .admin-final-content p {
    max-width: 510px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.7;
}

.apex-admin-dashboard .admin-final-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* =========================================================
   DARK MODE
   ========================================================= */

body.dark-mode .apex-admin-dashboard,
.dark-mode .apex-admin-dashboard {
    --ad-bg: #07151d;
    --ad-white: #0d202a;
    --ad-dark: #f2f8fb;
    --ad-text: #d1e0e6;
    --ad-muted: #8da1ab;
    --ad-border: rgba(255,255,255,.09);

    background: #07151d;
}

body.dark-mode .apex-admin-dashboard .admin-overview,
body.dark-mode .apex-admin-dashboard .admin-coaches-section,
body.dark-mode .apex-admin-dashboard .admin-students-section,
.dark-mode .apex-admin-dashboard .admin-overview,
.dark-mode .apex-admin-dashboard .admin-coaches-section,
.dark-mode .apex-admin-dashboard .admin-students-section {
    background: #07151d;
}

body.dark-mode .apex-admin-dashboard .admin-stat-card,
body.dark-mode .apex-admin-dashboard .admin-schedule-panel,
body.dark-mode .apex-admin-dashboard .admin-actions-panel,
body.dark-mode .apex-admin-dashboard .admin-analytics-card,
body.dark-mode .apex-admin-dashboard .admin-coach-card,
body.dark-mode .apex-admin-dashboard .admin-tournament-card,
body.dark-mode .apex-admin-dashboard .admin-facility-card,
body.dark-mode .apex-admin-dashboard .admin-activity-panel,
.dark-mode .apex-admin-dashboard .admin-stat-card,
.dark-mode .apex-admin-dashboard .admin-schedule-panel,
.dark-mode .apex-admin-dashboard .admin-actions-panel,
.dark-mode .apex-admin-dashboard .admin-analytics-card,
.dark-mode .apex-admin-dashboard .admin-coach-card,
.dark-mode .apex-admin-dashboard .admin-tournament-card,
.dark-mode .apex-admin-dashboard .admin-facility-card,
.dark-mode .apex-admin-dashboard .admin-activity-panel {
    background: #0d202a;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .apex-admin-dashboard .admin-action-card,
body.dark-mode .apex-admin-dashboard .admin-table-top,
body.dark-mode .apex-admin-dashboard .admin-table-head,
.dark-mode .apex-admin-dashboard .admin-action-card,
.dark-mode .apex-admin-dashboard .admin-table-top,
.dark-mode .apex-admin-dashboard .admin-table-head {
    background: #0a1b24;
}

body.dark-mode .apex-admin-dashboard .admin-search-box,
body.dark-mode .apex-admin-dashboard .admin-filter-btn,
body.dark-mode .apex-admin-dashboard .admin-outline-btn,
body.dark-mode .apex-admin-dashboard .table-action,
body.dark-mode .apex-admin-dashboard .analytics-card-heading select,
.dark-mode .apex-admin-dashboard .admin-search-box,
.dark-mode .apex-admin-dashboard .admin-filter-btn,
.dark-mode .apex-admin-dashboard .admin-outline-btn,
.dark-mode .apex-admin-dashboard .table-action,
.dark-mode .apex-admin-dashboard .analytics-card-heading select {
    background: #0d202a;
    color: #dbeaf0;
    border-color: rgba(255,255,255,.1);
}

body.dark-mode .apex-admin-dashboard .admin-table-row,
body.dark-mode .apex-admin-dashboard .activity-item,
body.dark-mode .apex-admin-dashboard .coach-meta,
.dark-mode .apex-admin-dashboard .admin-table-row,
.dark-mode .apex-admin-dashboard .activity-item,
.dark-mode .apex-admin-dashboard .coach-meta {
    border-color: rgba(255,255,255,.07);
}

body.dark-mode .apex-admin-dashboard .admin-action-card:hover {
    background: #102d3a;
}

body.dark-mode .apex-admin-dashboard .action-icon {
    background: #0d202a;
}

body.dark-mode .apex-admin-dashboard .attendance-circle::before {
    background: #0d202a;
}

body.dark-mode .apex-admin-dashboard .attendance-bar > div,
body.dark-mode .apex-admin-dashboard .performance-track {
    background: #172f39;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .apex-admin-dashboard .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-admin-dashboard .admin-coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-admin-dashboard .admin-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-admin-dashboard .admin-hero-grid {
        gap: 40px;
    }

    .apex-admin-dashboard .admin-hero-content h1 {
        font-size: 54px;
    }
}


@media (max-width: 900px) {

    .apex-admin-dashboard .admin-dashboard-hero {
        min-height: auto;
        padding: 80px 0 65px;
    }

    .apex-admin-dashboard .admin-hero-grid {
        grid-template-columns: 1fr;
    }

    .apex-admin-dashboard .admin-hero-content {
        max-width: 750px;
    }

    .apex-admin-dashboard .admin-hero-panel {
        max-width: 520px;
    }

    .apex-admin-dashboard .admin-two-column,
    .apex-admin-dashboard .admin-analytics-grid,
    .apex-admin-dashboard .admin-activity-grid {
        grid-template-columns: 1fr;
    }

    .apex-admin-dashboard .admin-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .apex-admin-dashboard .admin-section-heading > p {
        max-width: 600px;
    }

    .apex-admin-dashboard .admin-final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .apex-admin-dashboard .admin-final-actions {
        width: 100%;
    }
}


@media (max-width: 700px) {

    .apex-admin-dashboard .apex-container {
        width: min(100% - 28px, 1180px);
    }

    .apex-admin-dashboard .admin-dashboard-hero {
        padding: 65px 0 55px;
    }

    .apex-admin-dashboard .admin-hero-content h1 {
        font-size: 43px;
        letter-spacing: -1.4px;
    }

    .apex-admin-dashboard .admin-hero-content p {
        font-size: 13px;
    }

    .apex-admin-dashboard .admin-hero-panel {
        padding: 23px;
    }

    .apex-admin-dashboard .admin-panel-number {
        font-size: 52px;
    }

    .apex-admin-dashboard .admin-overview,
    .apex-admin-dashboard .admin-training-section,
    .apex-admin-dashboard .admin-students-section,
    .apex-admin-dashboard .admin-analytics-section,
    .apex-admin-dashboard .admin-coaches-section,
    .apex-admin-dashboard .admin-tournament-section,
    .apex-admin-dashboard .admin-facilities-section,
    .apex-admin-dashboard .admin-activity-section {
        padding: 60px 0;
    }

    .apex-admin-dashboard .admin-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .apex-admin-dashboard .admin-stat-card {
        min-height: 125px;
        padding: 16px;
        gap: 10px;
    }

    .apex-admin-dashboard .admin-stat-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 15px;
    }

    .apex-admin-dashboard .admin-stat-info strong {
        font-size: 22px;
    }

    .apex-admin-dashboard .admin-stat-info span {
        font-size: 9px;
    }

    .apex-admin-dashboard .admin-schedule-panel,
    .apex-admin-dashboard .admin-actions-panel,
    .apex-admin-dashboard .admin-analytics-card,
    .apex-admin-dashboard .admin-activity-panel {
        padding: 20px;
    }

    .apex-admin-dashboard .admin-schedule-item {
        grid-template-columns: 50px 38px 1fr;
    }

    .apex-admin-dashboard .admin-schedule-item .admin-status {
        grid-column: 3;
        justify-self: start;
        margin-top: -5px;
    }

    .apex-admin-dashboard .admin-action-grid {
        gap: 8px;
    }

    .apex-admin-dashboard .admin-action-card {
        min-height: 125px;
        padding: 14px;
    }

    .apex-admin-dashboard .admin-table-top {
        padding: 12px;
    }

    .apex-admin-dashboard .admin-search-box {
        width: 100%;
    }

    .apex-admin-dashboard .admin-table-top {
        flex-direction: column;
        align-items: stretch;
    }

    .apex-admin-dashboard .admin-filter-btn {
        width: 100%;
    }

    .apex-admin-dashboard .admin-student-table-wrapper {
        overflow-x: auto;
    }

    .apex-admin-dashboard .admin-student-table {
        min-width: 760px;
    }

    .apex-admin-dashboard .attendance-overview {
        gap: 25px;
    }

    .apex-admin-dashboard .attendance-circle {
        width: 120px;
        height: 120px;
        flex-basis: 120px;
    }

    .apex-admin-dashboard .attendance-circle strong {
        font-size: 25px;
    }

    .apex-admin-dashboard .admin-coaches-grid,
    .apex-admin-dashboard .admin-facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .apex-admin-dashboard .admin-tournament-card {
        grid-template-columns: 58px 1fr;
        gap: 16px;
    }

    .apex-admin-dashboard .tournament-date {
        width: 58px;
        height: 65px;
    }

    .apex-admin-dashboard .tournament-deadline {
        grid-column: 2;
        padding-left: 0;
        padding-top: 12px;
        border-left: 0;
        border-top: 1px solid var(--ad-border);
    }

    .apex-admin-dashboard .admin-final-card {
        padding: 32px 25px;
    }

    .apex-admin-dashboard .admin-note-panel {
        min-height: 390px;
        padding: 30px;
    }

    .apex-admin-dashboard .admin-note-panel h2 {
        font-size: 27px;
    }

    .apex-admin-dashboard .admin-note-footer {
        right: 30px;
        left: 30px;
    }
}


@media (max-width: 480px) {

    .apex-admin-dashboard .admin-hero-content h1 {
        font-size: 36px;
    }

    .apex-admin-dashboard .admin-eyebrow {
        font-size: 9px;
    }

    .apex-admin-dashboard .admin-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .apex-admin-dashboard .admin-primary-btn,
    .apex-admin-dashboard .admin-secondary-btn {
        width: 100%;
    }

    .apex-admin-dashboard .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .apex-admin-dashboard .admin-section-heading h2 {
        font-size: 27px;
    }

    .apex-admin-dashboard .admin-panel-heading h2 {
        font-size: 20px;
    }

    .apex-admin-dashboard .admin-action-grid {
        grid-template-columns: 1fr 1fr;
    }

    .apex-admin-dashboard .admin-coaches-grid,
    .apex-admin-dashboard .admin-facilities-grid {
        grid-template-columns: 1fr;
    }

    .apex-admin-dashboard .admin-tournament-card {
        grid-template-columns: 1fr;
    }

    .apex-admin-dashboard .tournament-date {
        width: 60px;
    }

    .apex-admin-dashboard .tournament-deadline {
        grid-column: 1;
    }

    .apex-admin-dashboard .attendance-overview {
        flex-direction: column;
        align-items: flex-start;
    }

    .apex-admin-dashboard .attendance-circle {
        align-self: center;
    }

    .apex-admin-dashboard .attendance-breakdown {
        width: 100%;
    }

    .apex-admin-dashboard .analytics-card-heading {
        flex-direction: column;
    }

    .apex-admin-dashboard .analytics-card-heading select {
        width: 100%;
    }

    .apex-admin-dashboard .admin-final-actions {
        flex-direction: column;
    }

    .apex-admin-dashboard .admin-final-actions .admin-primary-btn,
    .apex-admin-dashboard .admin-final-actions .admin-secondary-btn {
        width: 100%;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-admin-dashboard *,
    .apex-admin-dashboard *::before,
    .apex-admin-dashboard *::after {
        animation: none !important;
        transition: none !important;
    }
}
/* =========================================================
   APEX SPORTS ACADEMY
   COACHES PAGE
========================================================= */

.apex-coaches-page {
    --coach-blue: #159ee3;
    --coach-blue-dark: #087db8;
    --coach-light: #eaf8ff;
    --coach-soft: #f5fbff;
    --coach-dark: #071923;
    --coach-text: #263944;
    --coach-muted: #71818b;
    --coach-border: #dcecf4;
    --coach-white: #ffffff;

    width: 100%;
    overflow: hidden;
    background: var(--coach-white);
    color: var(--coach-text);
    font-family: "Outfit", sans-serif;
}

.apex-coaches-page *,
.apex-coaches-page *::before,
.apex-coaches-page *::after {
    box-sizing: border-box;
}

.apex-coaches-page img {
    max-width: 100%;
    display: block;
}

.apex-coaches-page a {
    text-decoration: none;
}

.apex-coaches-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COACHES HERO — IMAGE BANNER
========================================================= */

.coaches-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #071923;
    color: #fff;
}

.coaches-hero-bg {
    position: absolute;
    inset: 0;

    background-image: url("../images/coaches-banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.03);
}

/* Light image overlay — NOT blue background */
.coaches-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .68) 0%,
            rgba(0, 0, 0, .38) 45%,
            rgba(0, 0, 0, .12) 100%
        );
}

/* Decorative circles */
.coaches-hero-lines {
    position: absolute;
    right: 7%;
    top: 50%;
    width: 300px;
    height: 300px;

    transform: translateY(-50%) rotate(25deg);

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.coaches-hero-lines::before,
.coaches-hero-lines::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.coaches-hero-lines::before {
    inset: 30px;
}

.coaches-hero-lines::after {
    inset: 65px;
}

.coaches-hero .apex-coaches-container {
    position: relative;
    z-index: 2;
}

.coaches-hero-content {
    max-width: 720px;
    padding: 110px 0 90px;
}

.coaches-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 20px;

    color: #bcecff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.coaches-eyebrow i {
    font-size: 11px;
}

.coaches-hero-content h1 {
    margin: 0;

    color: #fff;
    font-size: clamp(43px, 6vw, 70px);
    line-height: 1.03;
    letter-spacing: -2px;
    font-weight: 800;
}

.coaches-hero-content h1 span {
    display: block;
    color: #58c9f5;
}

.coaches-hero-content p {
    max-width: 570px;
    margin: 22px 0 0;

    color: rgba(255,255,255,.86);
    font-size: 14px;
    line-height: 1.8;
}
/* =========================================================
   INTRO
========================================================= */

.coaches-intro {
    padding: 90px 0 75px;
    background: #fff;
}

.coaches-intro-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-number {
    color: var(--coach-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.coach-section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--coach-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.intro-heading h2,
.coach-section-heading h2,
.approach-content h2,
.connection-content h2,
.coach-values-header h2,
.coaches-final-inner h2 {
    margin: 0;
    color: var(--coach-dark);
    font-weight: 800;
    letter-spacing: -1.1px;
    line-height: 1.12;
}

.intro-heading h2 {
    max-width: 460px;
    font-size: clamp(31px, 4vw, 48px);
}

.intro-heading h2 span,
.coach-section-heading h2 span,
.approach-content h2 span,
.connection-content h2 span,
.coach-values-header h2 span {
    color: var(--coach-blue);
}

.intro-text {
    padding-top: 5px;
}

.intro-text p {
    margin: 0 0 16px;
    color: var(--coach-muted);
    font-size: 13px;
    line-height: 1.85;
}

.coach-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    border-top: 1px solid var(--coach-border);
    border-bottom: 1px solid var(--coach-border);
}

.coach-mini-stats > div {
    padding: 24px 20px;
    border-right: 1px solid var(--coach-border);
}

.coach-mini-stats > div:last-child {
    border-right: 0;
}

.coach-mini-stats strong {
    display: block;
    margin-bottom: 4px;
    color: var(--coach-dark);
    font-size: 30px;
    line-height: 1;
}

.coach-mini-stats span {
    color: var(--coach-muted);
    font-size: 13px;
}


/* =========================================================
   FEATURED COACHES
========================================================= */

.featured-coaches {
    padding: 90px 0;
    background: var(--coach-soft);
}

.coach-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 42px;
}

.coach-section-heading h2 {
    max-width: 550px;
    font-size: clamp(30px, 4vw, 47px);
}

.coach-section-heading > p {
    max-width: 390px;
    margin: 0;
    color: var(--coach-muted);
    font-size: 17px;
    line-height: 1.8;
}

.featured-coach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.featured-coach-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 350px;
    overflow: hidden;
    border: 1px solid var(--coach-border);
    background: #fff;
    transition: .4s ease;
}

.featured-coach-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(18,98,130,.1);
}

.coach-image-wrap {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    background: #dff4fd;
}

.coach-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.featured-coach-card:hover .coach-image-wrap img {
    transform: scale(1.06);
}

.coach-number {
    position: absolute;
    left: 16px;
    top: 16px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(7,25,35,.35);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.coach-sport {
    position: absolute;
    right: 13px;
    bottom: 13px;
    padding: 7px 9px;
    background: #fff;
    color: var(--coach-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.coach-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.coach-role {
    display: block;
    margin-bottom: 9px;
    color: var(--coach-blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.coach-card-content h3 {
    margin: 0 0 12px;
    color: var(--coach-dark);
    font-size: 25px;
    line-height: 1.1;
}

.coach-card-content p {
    margin: 0;
    color: var(--coach-muted);
    font-size: 13px;
    line-height: 1.75;
}

.coach-info-row {
    display: flex;
    gap: 15px;
    margin: 21px 0 16px;
    padding: 14px 0;
    border-top: 1px solid #edf3f6;
    border-bottom: 1px solid #edf3f6;
}

.coach-info-row span {
    color: #788992;
    font-size: 13px;
}

.coach-info-row i {
    margin-right: 4px;
    color: var(--coach-blue);
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.coach-specialties span {
    padding: 6px 7px;
    border-radius: 4px;
    background: var(--coach-light);
    color: var(--coach-blue-dark);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   COACHING APPROACH
========================================================= */

.coaching-approach {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--coach-dark);
    color: #fff;
}

.approach-background-number {
    position: absolute;
    right: 5%;
    top: -80px;
    color: rgba(255,255,255,.025);
    font-size: 300px;
    line-height: 1;
    font-weight: 800;
}

.approach-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.approach-content h2 {
    max-width: 520px;
    color: #fff;
    font-size: clamp(34px, 4vw, 51px);
}

.approach-content h2 span {
    color: #4bc7f8;
}

.approach-content > p {
    max-width: 500px;
    margin: 21px 0 0;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.85;
}

.approach-content .coach-main-btn {
    margin-top: 28px;
}

.coach-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 47px;
    padding: 0 19px;
    border-radius: 7px;
    background: var(--coach-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.coach-main-btn:hover {
    background: #39b9ed;
    transform: translateY(-3px);
}

.approach-steps {
    display: flex;
    flex-direction: column;
}

.approach-step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.approach-step:first-child {
    padding-top: 0;
}

.approach-step > span {
    color: rgba(255,255,255,.28);
    font-size: 10px;
    font-weight: 800;
}

.approach-step i {
    margin-bottom: 8px;
    color: #50c8f7;
    font-size: 16px;
}

.approach-step h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 15px;
}

.approach-step p {
    max-width: 460px;
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SPECIALIZATIONS
========================================================= */

.coach-specializations {
    padding: 95px 0;
    background: #fff;
}

.coach-section-heading.centered {
    display: block;
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.coach-section-heading.centered .coach-section-label {
    text-align: center;
}

.coach-section-heading.centered h2 {
    margin-bottom: 14px;
}

.coach-section-heading.centered > p {
    max-width: 580px;
    margin: auto;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.specialization-card {
    position: relative;
    min-height: 245px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--coach-border);
    background: #fff;
    transition: .35s ease;
}

.specialization-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -50px;
    bottom: -50px;
    border: 1px solid rgba(21,158,227,.1);
    border-radius: 50%;
}

.specialization-card:hover {
    border-color: rgba(21,158,227,.35);
    background: var(--coach-soft);
    transform: translateY(-6px);
}

.spec-number {
    display: block;
    margin-bottom: 45px;
    color: #a7b6bd;
    font-size: 9px;
    font-weight: 800;
}

.specialization-card > i {
    display: block;
    margin-bottom: 18px;
    color: var(--coach-blue);
    font-size: 21px;
}

.specialization-card h3 {
    margin: 0 0 9px;
    color: var(--coach-dark);
    font-size: 15px;
}

.specialization-card p {
    margin: 0;
    color: var(--coach-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COACH CONNECTION
========================================================= */

.coach-connection {
    padding: 95px 0;
    background: var(--coach-soft);
}

.connection-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.connection-image {
    position: relative;
    min-height: 480px;
}

.connection-image::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(21,158,227,.2);
}

.connection-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.connection-badge {
    position: absolute;
    right: -20px;
    bottom: 35px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(12,76,105,.12);
}

.connection-badge strong {
    color: var(--coach-blue);
    font-size: 21px;
}

.connection-badge span {
    color: var(--coach-muted);
    font-size: 13px;
    font-weight: 600;
}

.connection-content h2 {
    max-width: 510px;
    font-size: clamp(34px, 4vw, 51px);
}

.connection-content > p {
    max-width: 540px;
    margin: 21px 0;
    color: var(--coach-muted);
    font-size: 20px;
    line-height: 1.85;
}

.connection-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 27px;
}

.connection-points div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.connection-points i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    border-radius: 50%;
    background: var(--coach-light);
    color: var(--coach-blue);
    font-size: 8px;
}

.connection-points span {
    color: var(--coach-text);
    font-size: 20px;
}


/* =========================================================
   VALUES
========================================================= */

.coach-values {
    padding: 90px 0;
    background: #fff;
}

.coach-values-header {
    margin-bottom: 40px;
}

.coach-values-header h2 {
    max-width: 570px;
    font-size: clamp(32px, 4vw, 48px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--coach-border);
    border-bottom: 1px solid var(--coach-border);
}

.value-card {
    min-height: 245px;
    padding: 25px;
    border-right: 1px solid var(--coach-border);
    transition: .3s ease;
}

.value-card:last-child {
    border-right: 0;
}

.value-card:hover {
    background: var(--coach-soft);
}

.value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}

.value-top span {
    color: #a5b4ba;
    font-size: 9px;
    font-weight: 800;
}

.value-top i {
    color: var(--coach-blue);
    font-size: 16px;
}

.value-card h3 {
    margin: 0 0 9px;
    color: var(--coach-dark);
    font-size: 16px;
}

.value-card p {
    margin: 0;
    color: var(--coach-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   FINAL
========================================================= */

.coaches-final {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        linear-gradient(130deg, #071923, #0a4966);
    color: #fff;
    text-align: center;
}

.coaches-final-ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.ring-one {
    width: 430px;
    height: 430px;
    top: -280px;
    right: 8%;
}

.ring-two {
    width: 250px;
    height: 250px;
    bottom: -170px;
    left: 8%;
}

.coaches-final-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
}

.coaches-final-inner .coach-section-label {
    color: #72d6ff;
}

.coaches-final-inner h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 57px);
}

.coaches-final-inner h2 span {
    display: block;
    color: #4fc7f7;
}

.coaches-final-inner > p {
    max-width: 560px;
    margin: 18px auto 27px;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.8;
}

.final-coach-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.coach-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 0 21px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 7px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    transition: .3s ease;
}

.coach-outline-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .apex-coaches-page,
.dark-mode .apex-coaches-page {
    --coach-soft: #091b24;
    --coach-white: #07151d;
    --coach-dark: #f2f8fb;
    --coach-text: #d3e1e6;
    --coach-muted: #8da0aa;
    --coach-border: rgba(255,255,255,.09);

    background: #07151d;
}

body.dark-mode .coaches-intro,
body.dark-mode .coach-specializations,
body.dark-mode .coach-values,
.dark-mode .coaches-intro,
.dark-mode .coach-specializations,
.dark-mode .coach-values {
    background: #07151d;
}

body.dark-mode .featured-coach-card,
body.dark-mode .specialization-card,
.dark-mode .featured-coach-card,
.dark-mode .specialization-card {
    background: #0d202a;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .featured-coach-card:hover,
body.dark-mode .specialization-card:hover {
    background: #102832;
}

body.dark-mode .coach-sport,
body.dark-mode .connection-badge,
.dark-mode .coach-sport,
.dark-mode .connection-badge {
    background: #0d202a;
}

body.dark-mode .coach-specialties span,
body.dark-mode .connection-points i {
    background: #102e3a;
}

body.dark-mode .coaches-intro,
body.dark-mode .featured-coaches,
body.dark-mode .coach-specializations,
body.dark-mode .coach-connection,
body.dark-mode .coach-values,
.dark-mode .coaches-intro,
.dark-mode .featured-coaches,
.dark-mode .coach-specializations,
.dark-mode .coach-connection,
.dark-mode .coach-values {
    border-color: rgba(255,255,255,.06);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .featured-coach-grid {
        grid-template-columns: 1fr;
    }

    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card:nth-child(2) {
        border-right: 0;
    }

    .value-card:nth-child(1),
    .value-card:nth-child(2) {
        border-bottom: 1px solid var(--coach-border);
    }

    .approach-grid {
        gap: 50px;
    }
}


@media (max-width: 900px) {

    .coaches-hero {
        min-height: 370px;
    }

    .coaches-hero-content {
        padding: 80px 0 70px;
    }

    .coaches-hero-content h1 {
        font-size: 52px;
    }

    .coaches-intro-grid {
        grid-template-columns: 50px 1fr;
    }

    .intro-text {
        grid-column: 2;
    }

    .coach-mini-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .coach-mini-stats > div:nth-child(2) {
        border-right: 0;
    }

    .coach-mini-stats > div:nth-child(1),
    .coach-mini-stats > div:nth-child(2) {
        border-bottom: 1px solid var(--coach-border);
    }

    .coach-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .connection-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .connection-image {
        max-width: 650px;
    }

    .connection-content {
        max-width: 650px;
    }
}


@media (max-width: 700px) {

    .apex-coaches-container {
        width: min(100% - 28px, 1180px);
    }

    .coaches-hero {
        min-height: 350px;
    }

    .coaches-hero-content {
        padding: 70px 0 65px;
    }

    .coaches-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.2px;
    }

    .coaches-hero-content p {
        font-size: 12px;
    }

    .coaches-hero-lines {
        right: -100px;
    }

    .coaches-intro,
    .featured-coaches,
    .coaching-approach,
    .coach-specializations,
    .coach-connection,
    .coach-values {
        padding: 65px 0;
    }

    .coaches-intro-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .intro-number {
        margin-bottom: 5px;
    }

    .intro-text {
        grid-column: auto;
    }

    .coach-mini-stats {
        margin-top: 45px;
    }

    .coach-mini-stats > div {
        padding: 20px 12px;
    }

    .featured-coach-card {
        grid-template-columns: 1fr;
    }

    .coach-image-wrap {
        min-height: 320px;
    }

    .coach-card-content {
        padding: 24px;
    }

    .specialization-grid {
        grid-template-columns: 1fr 1fr;
    }

    .specialization-card {
        min-height: 220px;
        padding: 21px;
    }

    .spec-number {
        margin-bottom: 35px;
    }

    .connection-image,
    .connection-image img {
        min-height: 390px;
        height: 390px;
    }

    .connection-badge {
        right: 10px;
        bottom: 20px;
    }

    .connection-points {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        border-right: 0;
        border-bottom: 1px solid var(--coach-border);
    }

    .value-card:last-child {
        border-bottom: 0;
    }

    .value-top {
        margin-bottom: 45px;
    }

    .coaches-final {
        padding: 70px 0;
    }
}


@media (max-width: 480px) {

    .coaches-hero-content h1 {
        font-size: 35px;
    }

    .coaches-hero-content p {
        font-size: 11px;
    }

    .coaches-hero-bottom {
        font-size: 7px;
    }

    .coach-mini-stats strong {
        font-size: 25px;
    }

    .coach-mini-stats span {
        font-size: 8px;
    }

    .specialization-grid {
        grid-template-columns: 1fr;
    }

    .specialization-card {
        min-height: 190px;
    }

    .featured-coach-card {
        display: block;
    }

    .coach-image-wrap {
        min-height: 300px;
        height: 300px;
    }

    .coach-info-row {
        flex-wrap: wrap;
    }

    .final-coach-buttons {
        flex-direction: column;
        width: 100%;
    }

    .final-coach-buttons a {
        width: 100%;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-coaches-page *,
    .apex-coaches-page *::before,
    .apex-coaches-page *::after {
        transition: none !important;
        animation: none !important;
    }

}
/* =========================================================
   APEX SPORTS ACADEMY
   FACILITIES PAGE
========================================================= */

.apex-facilities-page {
    --fac-primary: #159ee3;
    --fac-primary-dark: #087db8;
    --fac-blue-soft: #eaf8ff;
    --fac-bg: #f5fbff;
    --fac-white: #ffffff;
    --fac-dark: #071923;
    --fac-text: #263944;
    --fac-muted: #71818b;
    --fac-border: #dcecf4;
    --fac-shadow: 0 18px 45px rgba(14, 91, 122, 0.09);

    width: 100%;
    overflow: hidden;
    background: var(--fac-white);
    color: var(--fac-text);
    font-family: "Outfit", sans-serif;
}

.apex-facilities-page *,
.apex-facilities-page *::before,
.apex-facilities-page *::after {
    box-sizing: border-box;
}

.apex-facilities-page img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.apex-facilities-page a {
    text-decoration: none;
}

.apex-facilities-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   FACILITIES HERO — REAL IMAGE BANNER
========================================================= */

.facilities-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #071923;
    color: #fff;
}

/* REAL FACILITIES BANNER */
.facilities-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: url("../images/facilities-banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.03);
}

/* IMAGE OVERLAY */
.facilities-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.48) 40%,
            rgba(0, 0, 0, 0.22) 70%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

/* BLUE GRID EFFECT */
.facilities-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 35%,
        black 100%
    );

    opacity: .45;
}

/* HERO CONTAINER */
.facilities-hero .apex-facilities-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* HERO CONTENT */
.facilities-hero-content {
    max-width: 760px;
    padding: 105px 0 90px;
}

/* EYEBROW */
.facilities-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    color: #bcecff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.facilities-eyebrow i {
    color: #55c8f5;
    font-size: 12px;
}

/* HEADING */
.facilities-hero-content h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 800;
}

.facilities-hero-content h1 span {
    display: block;
    color: #55c8f5;
}

/* DESCRIPTION */
.facilities-hero-content p {
    max-width: 590px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.88);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   IMAGE ZOOM ANIMATION
========================================================= */

.facilities-hero-bg {
    animation: facilitiesHeroZoom 12s ease-in-out infinite alternate;
}

@keyframes facilitiesHeroZoom {

    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }

}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

.facilities-hero-content {
    animation: facilitiesHeroContent 1s ease both;
}

@keyframes facilitiesHeroContent {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .facilities-hero {
        min-height: 440px;
    }

    .facilities-hero-content {
        padding: 95px 30px 80px;
    }

    .facilities-hero-content h1 {
        font-size: clamp(42px, 6vw, 62px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .facilities-hero {
        min-height: 460px;
    }

    .facilities-hero-bg {
        background-position: 65% center;
    }

    .facilities-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.78) 0%,
                rgba(0,0,0,.58) 55%,
                rgba(0,0,0,.28) 100%
            );
    }

    .facilities-hero-content {
        max-width: 100%;
        padding: 90px 22px 70px;
    }

    .facilities-hero-content h1 {
        font-size: clamp(38px, 10vw, 52px);
        letter-spacing: -2px;
    }

    .facilities-hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .facilities-hero {
        min-height: 440px;
    }

    .facilities-hero-content {
        padding: 80px 18px 65px;
    }

    .facilities-hero-content h1 {
        font-size: 39px;
    }

    .facilities-hero-bg {
        background-position: 62% center;
    }

}
/* =========================================================
   INTRO
========================================================= */

.facilities-intro {
    padding: 88px 0 75px;
    background: #fff;
}

.facilities-intro-grid {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.facility-index {
    color: var(--fac-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.facility-label {
    display: block;
    margin-bottom: 12px;

    color: var(--fac-primary);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.facility-intro-title h2 {
    max-width: 480px;
    margin: 0;

    color: var(--fac-dark);

    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.1;
    letter-spacing: -1.3px;
    font-weight: 800;
}

.facility-intro-title h2 span {
    color: var(--fac-primary);
}

.facility-intro-text {
    padding-top: 4px;
}

.facility-intro-text p {
    margin: 0 0 16px;

    color: var(--fac-muted);

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================================
   FACILITY SHOWCASE
========================================================= */

.facility-showcase {
    padding: 90px 0;
    background: var(--fac-bg);
}

.facility-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;
    margin-bottom: 42px;
}

.facility-heading h2 {
    max-width: 580px;
    margin: 0;

    color: var(--fac-dark);

    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.2px;
    font-weight: 800;
}

.facility-heading h2 span {
    color: var(--fac-primary);
}

.facility-heading > p {
    max-width: 380px;
    margin: 0;

    color: var(--fac-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   FACILITY GRID
========================================================= */

.facility-feature-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
}

.facility-feature {
    overflow: hidden;

    border: 1px solid var(--fac-border);

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.facility-feature:hover {
    transform: translateY(-7px);
    border-color: rgba(21,158,227,.35);
    box-shadow: var(--fac-shadow);
}

.facility-large {
    grid-row: span 2;
}

.facility-wide {
    grid-column: span 2;
}

.facility-feature-image {
    position: relative;
    height: 255px;
    overflow: hidden;

    background: #dff4fc;
}

.facility-large .facility-feature-image {
    height: 355px;
}

.facility-wide .facility-feature-image {
    height: 300px;
}

.facility-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.facility-feature:hover .facility-feature-image img {
    transform: scale(1.06);
}

.facility-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,25,35,.08),
            rgba(7,25,35,.65)
        );
}

.facility-number {
    position: absolute;
    top: 17px;
    left: 17px;

    display: grid;
    place-items: center;

    width: 35px;
    height: 35px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;

    background: rgba(7,25,35,.35);

    color: #fff;

    font-size: 9px;
    font-weight: 800;

    backdrop-filter: blur(5px);
}

.facility-category {
    position: absolute;
    right: 15px;
    bottom: 15px;

    padding: 7px 10px;

    background: #fff;

    color: var(--fac-dark);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.facility-feature-content {
    padding: 25px;
}

.facility-large .facility-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.facility-wide .facility-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.facility-small-label {
    display: block;
    margin-bottom: 8px;

    color: var(--fac-primary);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.facility-feature-content h3 {
    margin: 0;

    color: var(--fac-dark);

    font-size: 22px;
    line-height: 1.15;
}

.facility-feature-content > p {
    margin: 0;

    color: var(--fac-muted);

    font-size: 15px;
    line-height: 1.8;
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 17px;
}

.facility-tags span {
    padding: 6px 8px;

    border-radius: 4px;

    background: var(--fac-blue-soft);

    color: var(--fac-primary-dark);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   TRAINING ENVIRONMENT
========================================================= */

.training-environment {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background: var(--fac-dark);
    color: #fff;
}

.training-bg-shape {
    position: absolute;

    width: 550px;
    height: 550px;

    right: -240px;
    top: -170px;

    border: 1px solid rgba(77,200,247,.12);
    border-radius: 50%;
}

.training-bg-shape::before,
.training-bg-shape::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(77,200,247,.08);
    border-radius: 50%;
}

.training-bg-shape::before {
    inset: 55px;
}

.training-bg-shape::after {
    inset: 110px;
}

.training-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.training-content h2 {
    max-width: 510px;
    margin: 0;

    color: #fff;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    font-weight: 800;
}

.training-content h2 span {
    color: #4fc8f7;
}

.training-content > p {
    max-width: 510px;
    margin: 20px 0 30px;

    color: rgba(255,255,255,.57);

    font-size: 15px;
    line-height: 1.85;
}

.training-list {
    display: flex;
    flex-direction: column;
}

.training-list > div {
    display: grid;
    grid-template-columns: 35px 1fr;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.training-list > div:first-child {
    border-top: 1px solid rgba(255,255,255,.09);
}

.training-list > div > span {
    color: rgba(255,255,255,.28);

    font-size: 8px;
    font-weight: 800;
}

.training-list h3 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 14px;
}

.training-list p {
    margin: 0;

    color: rgba(255,255,255,.43);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TRAINING VISUAL
========================================================= */

.training-visual {
    position: relative;
    min-height: 480px;
}

.training-card-main {
    position: absolute;
    inset: 0 35px 25px 0;

    overflow: hidden;

    background: #12323f;
}

.training-card-main::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7,25,35,.85) 100%
        );
}

.training-card-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .9;

    transition: transform .7s ease;
}

.training-visual:hover .training-card-main img {
    transform: scale(1.05);
}

.training-card-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 2;
}

.training-card-overlay span {
    display: block;
    margin-bottom: 7px;

    color: #67d4ff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.training-card-overlay strong {
    display: block;

    max-width: 330px;

    color: #fff;

    font-size: 27px;
    line-height: 1.08;
}

.training-floating-card {
    position: absolute;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 150px;

    padding: 20px;

    background: #fff;

    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.training-floating-card i {
    margin-bottom: 13px;

    color: var(--fac-primary);

    font-size: 19px;
}

.training-floating-card strong {
    color: var(--fac-dark);

    font-size: 13px;
}

.training-floating-card span {
    margin-top: 3px;

    color: #81919a;

    font-size: 13px;
}


/* =========================================================
   FACILITY FEATURES
========================================================= */

.facility-features {
    padding: 95px 0;

    background: #fff;
}

.facility-heading.centered {
    display: block;

    max-width: 680px;

    margin: 0 auto 48px;

    text-align: center;
}

.facility-heading.centered .facility-label {
    text-align: center;
}

.facility-heading.centered h2 {
    margin-bottom: 14px;
}

.facility-heading.centered > p {
    max-width: 570px;

    margin: auto;
}

.facility-feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--fac-border);
    border-bottom: 1px solid var(--fac-border);
}

.facility-detail-card {
    position: relative;

    min-height: 260px;

    padding: 25px;

    border-right: 1px solid var(--fac-border);

    transition: background .3s ease;
}

.facility-detail-card:last-child {
    border-right: 0;
}

.facility-detail-card:hover {
    background: var(--fac-bg);
}

.detail-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--fac-blue-soft);

    color: var(--fac-primary);

    font-size: 15px;
}

.facility-detail-card > span {
    display: block;

    margin-bottom: 50px;

    color: #a8b6bc;

    font-size: 8px;
    font-weight: 800;
}

.facility-detail-card h3 {
    margin: 0 0 9px;

    color: var(--fac-dark);

    font-size: 15px;
}

.facility-detail-card p {
    margin: 0;

    color: var(--fac-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FACILITY STATS
========================================================= */

.facility-stats {
    padding: 0;

    background: var(--fac-blue-soft);
}

.facility-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.facility-stat {
    padding: 35px 25px;

    text-align: center;

    border-right: 1px solid rgba(21,158,227,.14);
}

.facility-stat:last-child {
    border-right: 0;
}

.facility-stat strong {
    display: block;

    margin-bottom: 5px;

    color: var(--fac-primary-dark);

    font-size: 35px;
    line-height: 1;
    font-weight: 800;
}

.facility-stat span {
    color: #64818e;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   ATHLETE EXPERIENCE
========================================================= */

.athlete-experience {
    padding: 100px 0;

    background: var(--fac-bg);
}

.experience-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;

    gap: 80px;

    align-items: center;
}

.experience-image {
    position: relative;

    min-height: 450px;
}

.experience-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 450px;

    object-fit: cover;
}

.experience-image::before {
    content: "";

    position: absolute;

    left: -17px;
    bottom: -17px;

    width: 75%;
    height: 75%;

    border: 1px solid rgba(21,158,227,.22);
}

.experience-label {
    position: absolute;

    right: -18px;
    top: 35px;

    z-index: 4;

    display: flex;
    flex-direction: column;

    padding: 14px 18px;

    background: #fff;

    box-shadow: var(--fac-shadow);
}

.experience-label span {
    color: var(--fac-primary);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.experience-label strong {
    color: var(--fac-dark);

    font-size: 14px;
}

.experience-content h2 {
    max-width: 560px;

    margin: 0;

    color: var(--fac-dark);

    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    font-weight: 800;
}

.experience-content h2 span {
    color: var(--fac-primary);
}

.experience-content > p {
    max-width: 520px;

    margin: 20px 0 25px;

    color: var(--fac-muted);

    font-size: 15px;
    line-height: 1.85;
}

.experience-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.experience-points div {
    display: flex;
    align-items: center;

    gap: 9px;
}

.experience-points i {
    display: grid;
    place-items: center;

    width: 23px;
    height: 23px;

    flex: 0 0 23px;

    border-radius: 50%;

    background: var(--fac-blue-soft);

    color: var(--fac-primary);

    font-size: 8px;
}

.experience-points span {
    color: var(--fac-text);

    font-size: 13px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.facilities-final {
    position: relative;
    overflow: hidden;

    padding: 95px 0;

    background:
        linear-gradient(
            130deg,
            #071923,
            #0a4d6b
        );

    color: #fff;

    text-align: center;
}

.facility-final-circle {
    position: absolute;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.circle-one {
    width: 430px;
    height: 430px;

    right: 8%;
    top: -290px;
}

.circle-two {
    width: 260px;
    height: 260px;

    left: 8%;
    bottom: -190px;
}

.facilities-final-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: auto;
}

.facilities-final-content .facility-label {
    color: #6bd5ff;
}

.facilities-final-content h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.7px;
    font-weight: 800;
}

.facilities-final-content h2 span {
    display: block;

    color: #4fc8f7;
}

.facilities-final-content > p {
    max-width: 550px;

    margin: 18px auto 27px;

    color: rgba(255,255,255,.6);

    font-size: 15px;
    line-height: 1.8;
}

.facility-final-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.facility-primary-btn,
.facility-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 47px;

    padding: 0 20px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 700;

    transition: .3s ease;
}

.facility-primary-btn {
    gap: 10px;

    background: var(--fac-primary);

    color: #fff;
}

.facility-primary-btn:hover {
    background: #40bced;

    transform: translateY(-3px);
}

.facility-secondary-btn {
    border: 1px solid rgba(255,255,255,.25);

    color: #fff;
}

.facility-secondary-btn:hover {
    border-color: #fff;

    background: rgba(255,255,255,.08);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .apex-facilities-page,
.dark-mode .apex-facilities-page {
    --fac-white: #07151d;
    --fac-bg: #091b24;
    --fac-dark: #f1f8fb;
    --fac-text: #d4e1e6;
    --fac-muted: #8da0aa;
    --fac-border: rgba(255,255,255,.09);

    background: #07151d;
}

body.dark-mode .facilities-intro,
body.dark-mode .facility-features,
.dark-mode .facilities-intro,
.dark-mode .facility-features {
    background: #07151d;
}

body.dark-mode .facility-showcase,
body.dark-mode .athlete-experience,
.dark-mode .facility-showcase,
.dark-mode .athlete-experience {
    background: #091b24;
}

body.dark-mode .facility-feature,
body.dark-mode .facility-detail-card,
.dark-mode .facility-feature,
.dark-mode .facility-detail-card {
    background: #0d202a;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .facility-feature:hover,
body.dark-mode .facility-detail-card:hover,
.dark-mode .facility-feature:hover,
.dark-mode .facility-detail-card:hover {
    background: #102832;
}

body.dark-mode .facility-tags span,
body.dark-mode .detail-icon,
body.dark-mode .experience-points i,
.dark-mode .facility-tags span,
.dark-mode .detail-icon,
.dark-mode .experience-points i {
    background: #102e3a;
}

body.dark-mode .experience-label,
.dark-mode .experience-label {
    background: #0d202a;
}

body.dark-mode .facility-category,
.dark-mode .facility-category {
    background: #0d202a;
    color: #fff;
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .facility-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .facility-wide {
        grid-column: span 2;
    }

    .facility-large .facility-feature-image {
        height: 330px;
    }

    .facility-feature-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-detail-card:nth-child(2) {
        border-right: 0;
    }

    .facility-detail-card:nth-child(1),
    .facility-detail-card:nth-child(2) {
        border-bottom: 1px solid var(--fac-border);
    }

    .training-grid {
        gap: 50px;
    }

    .experience-grid {
        gap: 55px;
    }
}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .facilities-hero {
        min-height: 370px;
    }

    .facilities-hero-content {
        padding: 80px 0 70px;
    }

    .facilities-hero-content h1 {
        font-size: 53px;
    }

    .facilities-intro-grid {
        grid-template-columns: 50px 1fr;
    }

    .facility-intro-text {
        grid-column: 2;
    }

    .facility-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    .training-visual {
        min-height: 450px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-image {
        max-width: 650px;
    }

    .experience-content {
        max-width: 650px;
    }
}


/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .apex-facilities-container {
        width: min(100% - 28px, 1180px);
    }

    .facilities-hero {
        min-height: 350px;
    }

    .facilities-hero-content {
        padding: 70px 0 65px;
    }

    .facilities-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.2px;
    }

    .facilities-hero-content p {
        font-size: 11px;
    }

    .facilities-hero-bottom {
        font-size: 7px;
    }

    .facilities-intro,
    .facility-showcase,
    .training-environment,
    .facility-features,
    .athlete-experience {
        padding: 65px 0;
    }

    .facilities-intro-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .facility-intro-text {
        grid-column: auto;
    }

    .facility-feature-grid {
        grid-template-columns: 1fr;
    }

    .facility-large,
    .facility-wide {
        grid-column: auto;
    }

    .facility-large .facility-feature-image,
    .facility-feature-image,
    .facility-wide .facility-feature-image {
        height: 280px;
    }

    .facility-large .facility-feature-content,
    .facility-wide .facility-feature-content {
        display: block;
    }

    .facility-feature-content > p {
        margin-top: 15px;
    }

    .facility-feature-list {
        grid-template-columns: 1fr 1fr;
    }

    .facility-detail-card {
        min-height: 220px;
    }

    .facility-stat {
        padding: 28px 10px;
    }

    .facility-stat strong {
        font-size: 28px;
    }

    .training-visual {
        min-height: 390px;
    }

    .training-card-main {
        inset: 0 20px 20px 0;
    }

    .training-card-overlay strong {
        font-size: 23px;
    }

    .experience-image,
    .experience-image img {
        min-height: 390px;
        height: 390px;
    }

    .experience-label {
        right: 8px;
    }

    .experience-points {
        grid-template-columns: 1fr;
    }

    .facilities-final {
        padding: 70px 0;
    }
}


/* =========================================================
   RESPONSIVE — 480px
========================================================= */

@media (max-width: 480px) {

    .facilities-hero-content h1 {
        font-size: 35px;
    }

    .facilities-hero-content p {
        max-width: 330px;
    }

    .facility-heading h2,
    .facility-intro-title h2 {
        font-size: 32px;
    }

    .facility-feature-content {
        padding: 21px;
    }

    .facility-large .facility-feature-image,
    .facility-feature-image,
    .facility-wide .facility-feature-image {
        height: 240px;
    }

    .facility-feature-list {
        grid-template-columns: 1fr;
    }

    .facility-detail-card {
        min-height: auto;

        border-right: 0 !important;
        border-bottom: 1px solid var(--fac-border);
    }

    .facility-detail-card:last-child {
        border-bottom: 0;
    }

    .facility-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-stat:nth-child(2) {
        border-right: 0;
    }

    .facility-stat:nth-child(1),
    .facility-stat:nth-child(2) {
        border-bottom: 1px solid rgba(21,158,227,.14);
    }

    .training-visual {
        min-height: 330px;
    }

    .training-card-main {
        inset: 0 0 20px 0;
    }

    .training-floating-card {
        right: 8px;
        padding: 15px;
    }

    .training-floating-card strong {
        font-size: 11px;
    }

    .experience-image,
    .experience-image img {
        min-height: 330px;
        height: 330px;
    }

    .experience-image::before {
        left: -8px;
        bottom: -8px;
    }

    .experience-points span {
        font-size: 8px;
    }

    .facility-final-buttons {
        flex-direction: column;
        width: 100%;
    }

    .facility-final-buttons a {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-facilities-page *,
    .apex-facilities-page *::before,
    .apex-facilities-page *::after {
        animation: none !important;
        transition: none !important;
    }

}
/* =========================================================
   APEX SPORTS ACADEMY
   SCHEDULE PAGE
   ========================================================= */

.apex-schedule-page {
    --sch-primary: #159ee3;
    --sch-primary-dark: #087db8;
    --sch-primary-soft: #eaf8ff;

    --sch-white: #ffffff;
    --sch-bg: #f5fbff;
    --sch-bg-soft: #eef9fe;

    --sch-dark: #071923;
    --sch-dark-2: #102b39;

    --sch-text: #263944;
    --sch-muted: #71818b;

    --sch-border: #d9eaf2;

    --sch-green: #20a66a;
    --sch-orange: #ef9a38;
    --sch-red: #e65e69;

    --sch-shadow: 0 18px 50px rgba(13, 86, 116, 0.09);

    width: 100%;
    overflow: hidden;
    background: var(--sch-white);
    color: var(--sch-text);
}


/* =========================================================
   COMMON
   ========================================================= */

.apex-schedule-page *,
.apex-schedule-page *::before,
.apex-schedule-page *::after {
    box-sizing: border-box;
}

.apex-schedule-page img {
    max-width: 100%;
}

.apex-schedule-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.apex-schedule-page h1,
.apex-schedule-page h2,
.apex-schedule-page h3,
.apex-schedule-page p {
    margin-top: 0;
}

.schedule-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--sch-primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.schedule-label::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--sch-primary);
}


/* =========================================================
   HERO
   ========================================================= */

.schedule-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--sch-dark);
}

.schedule-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        linear-gradient(
            90deg,
            rgba(4, 19, 28, 0.94) 0%,
            rgba(4, 19, 28, 0.78) 48%,
            rgba(4, 19, 28, 0.55) 100%
        ),
        url("../images/schedule-banner.jpg") center / cover no-repeat;

    transform: scale(1.04);
    animation: scheduleHeroZoom 14s ease-in-out infinite alternate;
}

.schedule-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(21, 158, 227, 0.22),
            transparent 30%
        );
}

.schedule-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.12;

    background-image:
        linear-gradient(
            90deg,
            transparent 49.5%,
            rgba(255,255,255,.5) 50%,
            transparent 50.5%
        ),
        linear-gradient(
            transparent 49.5%,
            rgba(255,255,255,.5) 50%,
            transparent 50.5%
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 80%
    );

    animation: gridMove 18s linear infinite;
}

.schedule-hero-content {
    max-width: 700px;
    padding: 80px 0 70px;
    animation: scheduleHeroIn 0.9s ease both;
}

.schedule-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;

    background: rgba(255,255,255,.07);

    color: rgba(255,255,255,.86);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.schedule-eyebrow i {
    color: var(--sch-primary);
}

.schedule-hero h1 {
    margin: 22px 0 18px;

    color: var(--sch-white);

    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.schedule-hero h1 span {
    display: block;
    color: var(--sch-primary);
}

.schedule-hero-content p {
    max-width: 570px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 15px;
    line-height: 1.8;
}

.schedule-hero-meta {
    position: absolute;
    left: 50%;
    bottom: 25px;

    width: min(1180px, calc(100% - 40px));

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,.45);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.schedule-hero-meta div {
    width: 45px;
    height: 1px;
    background: rgba(255,255,255,.3);
}


/* =========================================================
   WEEK PLANNER
   ========================================================= */

.schedule-planner {
    position: relative;
    padding: 95px 0 100px;
    background: var(--sch-bg);
}

.planner-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.planner-top h2,
.schedule-heading h2,
.cycle-intro h2,
.events-heading h2 {
    margin: 13px 0 0;

    color: var(--sch-dark);

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.planner-top h2 span,
.schedule-heading h2 span,
.cycle-intro h2 span,
.events-heading h2 span {
    color: var(--sch-primary);
}

.week-control {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 7px;

    border: 1px solid var(--sch-border);
    border-radius: 50px;

    background: var(--sch-white);

    box-shadow: 0 8px 25px rgba(13,86,116,.05);
}

.week-control button {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: var(--sch-primary-soft);
    color: var(--sch-primary-dark);

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.week-control button:hover {
    background: var(--sch-primary);
    color: var(--sch-white);
    transform: translateY(-2px);
}

.week-control strong {
    padding: 0 10px;

    color: var(--sch-dark);

    font-size: 11px;
    letter-spacing: 1.2px;
}


/* =========================================================
   DAYS
   ========================================================= */

.schedule-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    border: 1px solid var(--sch-border);
    border-radius: 18px 18px 0 0;

    overflow: hidden;

    background: var(--sch-white);
}

.schedule-day {
    position: relative;

    padding: 19px 10px;

    text-align: center;

    border-right: 1px solid var(--sch-border);

    color: var(--sch-muted);

    transition:
        background .25s ease,
        color .25s ease;
}

.schedule-day:last-child {
    border-right: 0;
}

.schedule-day span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.schedule-day strong {
    font-size: 20px;
    font-weight: 800;
}

.schedule-day.active {
    background: var(--sch-primary);
    color: var(--sch-white);
}

.schedule-day.active::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 35px;
    height: 3px;

    transform: translateX(-50%);

    background: var(--sch-white);
}


/* =========================================================
   TRAINING TIMELINE
   ========================================================= */

.training-timeline {
    position: relative;

    padding: 30px 30px 40px;

    border: 1px solid var(--sch-border);
    border-top: 0;

    border-radius: 0 0 20px 20px;

    background: var(--sch-white);
}

.training-timeline::before {
    content: "";

    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 92px;

    width: 1px;

    background:
        repeating-linear-gradient(
            to bottom,
            var(--sch-primary) 0 5px,
            transparent 5px 11px
        );

    opacity: .4;
}

.timeline-row {
    position: relative;

    display: grid;
    grid-template-columns: 65px 28px 1fr;
    align-items: center;

    gap: 0;

    min-height: 125px;

    animation: timelineReveal .7s ease both;
}

.timeline-row:nth-child(2) {
    animation-delay: .1s;
}

.timeline-row:nth-child(3) {
    animation-delay: .2s;
}

.timeline-row:nth-child(4) {
    animation-delay: .3s;
}

.timeline-time {
    text-align: right;
    padding-right: 14px;
}

.timeline-time span {
    display: block;

    color: var(--sch-dark);

    font-size: 16px;
    font-weight: 800;
}

.timeline-time small {
    color: var(--sch-muted);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.timeline-line {
    position: relative;
    z-index: 2;

    width: 11px;
    height: 11px;

    margin: 0 auto;

    border: 3px solid var(--sch-white);
    border-radius: 50%;

    background: var(--sch-primary);

    box-shadow: 0 0 0 4px var(--sch-primary-soft);
}

.session-card {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;

    gap: 20px;

    margin: 9px 0 9px 20px;
    padding: 18px 22px;

    border: 1px solid var(--sch-border);
    border-radius: 15px;

    background: var(--sch-white);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.session-card:hover {
    transform: translateX(7px);

    border-color: rgba(21,158,227,.35);

    box-shadow: var(--sch-shadow);
}

.session-sport {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--sch-primary-soft);

    color: var(--sch-primary);

    font-size: 20px;
}

.session-tag {
    display: block;

    margin-bottom: 5px;

    color: var(--sch-primary-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.session-main h3 {
    margin: 0 0 5px;

    color: var(--sch-dark);

    font-size: 18px;
}

.session-main p {
    margin: 0;

    color: var(--sch-muted);

    font-size: 12px;
    line-height: 1.6;
}

.session-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;

    color: var(--sch-muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3px;
}

.session-details span {
    white-space: nowrap;
}

.session-details i {
    margin-right: 5px;

    color: var(--sch-primary);
}


/* =========================================================
   TODAY TRAINING
   ========================================================= */

.today-training {
    padding: 105px 0;

    background: var(--sch-dark);
    color: var(--sch-white);
}

.today-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
    align-items: center;
}

.today-content .schedule-label {
    color: #76cef4;
}

.today-content h2 {
    margin: 15px 0 20px;

    color: var(--sch-white);

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -2px;
}

.today-content h2 span {
    display: block;
    color: var(--sch-primary);
}

.today-content > p {
    max-width: 500px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.62);

    font-size: 14px;
    line-height: 1.8;
}

.today-progress {
    max-width: 470px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;

    color: rgba(255,255,255,.52);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.progress-top strong {
    color: var(--sch-primary);
}

.progress-track {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(255,255,255,.1);
}

.progress-track span {
    display: block;

    width: 68%;
    height: 100%;

    border-radius: inherit;

    background: var(--sch-primary);

    animation: progressLoad 1.4s ease both;
}

.today-session {
    position: relative;

    padding: 35px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(21,158,227,.2),
            transparent 35%
        ),
        rgba(255,255,255,.045);

    box-shadow: 0 25px 70px rgba(0,0,0,.18);

    overflow: hidden;
}

.today-session::before {
    content: "";

    position: absolute;
    top: -90px;
    right: -90px;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(21,158,227,.25);
    border-radius: 50%;
}

.today-session-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.today-session-top > span {
    color: rgba(255,255,255,.45);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #6fe0ac;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.live-status i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #38cf88;

    box-shadow: 0 0 0 5px rgba(56,207,136,.1);

    animation: livePulse 1.7s infinite;
}

.today-session-time {
    display: flex;
    align-items: baseline;
    gap: 8px;

    margin: 28px 0 5px;
}

.today-session-time strong {
    color: var(--sch-white);

    font-size: 48px;
    line-height: 1;

    letter-spacing: -2px;
}

.today-session-time span {
    color: var(--sch-primary);

    font-size: 13px;
    font-weight: 800;
}

.today-session h3 {
    max-width: 380px;

    margin: 0 0 24px;

    color: var(--sch-white);

    font-size: 24px;
    line-height: 1.25;
}

.today-session-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);
}

.today-session-info span {
    color: rgba(255,255,255,.57);

    font-size: 10px;
}

.today-session-info i {
    margin-right: 5px;

    color: var(--sch-primary);
}

.schedule-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;
    padding: 13px 19px;

    border-radius: 8px;

    background: var(--sch-primary);

    color: var(--sch-white);

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.schedule-action-btn:hover {
    background: var(--sch-primary-dark);
    transform: translateY(-2px);
}


/* =========================================================
   SPORT TRACKS
   ========================================================= */

.sport-schedule {
    padding: 105px 0;

    background: var(--sch-white);
}

.schedule-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.schedule-heading > p {
    max-width: 560px;

    margin: 18px 0 0;

    color: var(--sch-muted);

    font-size: 14px;
    line-height: 1.8;
}

.sport-track-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sport-track-card {
    position: relative;

    min-height: 365px;

    padding: 27px;

    border: 1px solid var(--sch-border);
    border-radius: 18px;

    background: var(--sch-white);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.sport-track-card::after {
    content: "";

    position: absolute;
    right: -50px;
    bottom: -50px;

    width: 130px;
    height: 130px;

    border: 1px solid var(--sch-primary);
    border-radius: 50%;

    opacity: .12;

    transition: transform .4s ease;
}

.sport-track-card:hover {
    transform: translateY(-8px);

    border-color: rgba(21,158,227,.35);

    box-shadow: var(--sch-shadow);
}

.sport-track-card:hover::after {
    transform: scale(1.4);
}

.track-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.track-number {
    color: var(--sch-muted);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.track-top i {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--sch-primary-soft);

    color: var(--sch-primary);

    font-size: 18px;
}

.sport-track-card h3 {
    margin: 0 0 9px;

    color: var(--sch-dark);

    font-size: 24px;
}

.track-days {
    display: block;

    color: var(--sch-primary-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.track-time {
    margin: 18px 0 14px;

    color: var(--sch-dark);

    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.track-bar {
    width: 100%;
    height: 3px;

    margin-bottom: 19px;

    background: var(--sch-bg-soft);

    overflow: hidden;
}

.track-bar span {
    display: block;

    width: 55%;
    height: 100%;

    background: var(--sch-primary);

    transition: width .5s ease;
}

.sport-track-card:hover .track-bar span {
    width: 85%;
}

.sport-track-card p {
    max-width: 230px;

    margin: 0;

    color: var(--sch-muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   TRAINING CYCLE
   ========================================================= */

.schedule-cycle {
    padding: 105px 0;

    background: var(--sch-bg);
}

.cycle-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 80px;
    align-items: center;
}

.cycle-intro > p {
    max-width: 450px;

    margin: 22px 0 0;

    color: var(--sch-muted);

    font-size: 14px;
    line-height: 1.9;
    text-align: justify;
}

.cycle-steps {
    position: relative;
}

.cycle-steps::before {
    content: "";

    position: absolute;
    left: 28px;
    top: 30px;
    bottom: 30px;

    width: 1px;

    background: var(--sch-border);
}

.cycle-step {
    position: relative;

    display: grid;
    grid-template-columns: 56px 58px 1fr;
    align-items: center;

    gap: 17px;

    min-height: 105px;

    padding: 13px 20px;

    border: 1px solid transparent;
    border-radius: 15px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.cycle-step:hover {
    border-color: var(--sch-border);
    background: var(--sch-white);
    transform: translateX(5px);
}

.cycle-step > span {
    position: relative;
    z-index: 2;

    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border: 4px solid var(--sch-bg);
    border-radius: 50%;

    background: var(--sch-primary);

    color: transparent;
}

.cycle-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--sch-white);

    color: var(--sch-primary);

    box-shadow: 0 7px 25px rgba(13,86,116,.06);

    font-size: 17px;
}

.cycle-step h3 {
    margin: 0 0 4px;

    color: var(--sch-dark);

    font-size: 17px;
}

.cycle-step p {
    margin: 0;

    color: var(--sch-muted);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   IMPORTANT EVENTS
   ========================================================= */

.schedule-events {
    padding: 105px 0;

    background: var(--sch-white);
}

.events-heading {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 50px;
    align-items: end;

    margin-bottom: 48px;
}

.events-heading > p {
    margin: 0;

    color: var(--sch-muted);

    font-size: 13px;
    line-height: 1.8;
}

.event-list {
    border-top: 1px solid var(--sch-border);
}

.event-item {
    display: grid;
    grid-template-columns: 90px 1fr 50px;
    align-items: center;

    gap: 30px;

    padding: 25px 10px;

    border-bottom: 1px solid var(--sch-border);

    transition:
        background .25s ease,
        padding .25s ease;
}

.event-item:hover {
    padding-left: 20px;
    padding-right: 20px;

    background: var(--sch-bg);
}

.event-date {
    width: 70px;
    height: 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--sch-primary-soft);
}

.event-date strong {
    color: var(--sch-primary-dark);

    font-size: 24px;
    line-height: 1;
}

.event-date span {
    margin-top: 4px;

    color: var(--sch-muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.event-content > span {
    color: var(--sch-primary-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.event-content h3 {
    margin: 7px 0 5px;

    color: var(--sch-dark);

    font-size: 18px;
}

.event-content p {
    max-width: 600px;

    margin: 0;

    color: var(--sch-muted);

    font-size: 11px;
    line-height: 1.6;
}

.event-arrow {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--sch-border);
    border-radius: 50%;

    color: var(--sch-primary);

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.event-item:hover .event-arrow {
    background: var(--sch-primary);
    color: var(--sch-white);

    transform: translateX(4px);
}


/* =========================================================
   NOTE
   ========================================================= */

.schedule-note {
    padding: 0 0 100px;

    background: var(--sch-white);
}

.schedule-note-inner {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;

    gap: 20px;

    padding: 25px 30px;

    border: 1px solid var(--sch-border);
    border-radius: 15px;

    background: var(--sch-bg);
}

.note-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--sch-white);

    color: var(--sch-primary);

    font-size: 17px;
}

.schedule-note-inner span {
    display: block;

    margin-bottom: 5px;

    color: var(--sch-primary-dark);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.schedule-note-inner p {
    max-width: 720px;

    margin: 0;

    color: var(--sch-muted);

    font-size: 15px;
    line-height: 1.7;
}

.schedule-note-inner > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 16px;

    border-radius: 7px;

    background: var(--sch-dark);

    color: var(--sch-white);

    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.schedule-note-inner > a:hover {
    background: var(--sch-primary);
    transform: translateY(-2px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.schedule-final {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: var(--sch-primary);
}

.schedule-final::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06) 25%,
            transparent 25%
        );

    background-size: 80px 80px;

    opacity: .5;
}

.schedule-final-circle {
    position: absolute;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    pointer-events: none;
}

.circle-one {
    width: 430px;
    height: 430px;

    top: -220px;
    right: -100px;
}

.circle-two {
    width: 270px;
    height: 270px;

    bottom: -180px;
    left: -70px;
}

.schedule-final-content {
    position: relative;
    z-index: 2;

    max-width: 720px;

    text-align: center;

    margin: 0 auto;
}

.schedule-final .schedule-label {
    color: rgba(255,255,255,.8);
}

.schedule-final .schedule-label::before {
    background: rgba(255,255,255,.8);
}

.schedule-final h2 {
    margin: 18px 0 18px;

    color: var(--sch-white);

    font-size: clamp(38px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -2.5px;
}

.schedule-final h2 span {
    display: block;

    color: var(--sch-dark);
}

.schedule-final-content > p {
    max-width: 560px;

    margin: 0 auto;

    color: rgba(255,255,255,.78);

    font-size: 14px;
    line-height: 1.8;
}

.schedule-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.schedule-primary-btn,
.schedule-outline-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.schedule-primary-btn {
    background: var(--sch-dark);
    color: var(--sch-white);
}

.schedule-primary-btn:hover {
    background: #000d14;
    transform: translateY(-3px);
}

.schedule-outline-btn {
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: var(--sch-white);
}

.schedule-outline-btn:hover {
    background: var(--sch-white);
    color: var(--sch-primary-dark);
    transform: translateY(-3px);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes scheduleHeroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.11);
    }
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 80px 80px;
    }
}

@keyframes scheduleHeroIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes timelineReveal {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressLoad {
    from {
        width: 0;
    }

    to {
        width: 68%;
    }
}

@keyframes livePulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(56,207,136,.1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(56,207,136,.03);
    }
}


/* =========================================================
   DARK MODE
   ========================================================= */

html.dark-mode .apex-schedule-page,
body.dark-mode .apex-schedule-page,
.dark-mode .apex-schedule-page {

    --sch-white: #0d202b;
    --sch-bg: #091a24;
    --sch-bg-soft: #102630;

    --sch-dark: #f2f9fc;
    --sch-dark-2: #dcecf3;

    --sch-text: #d7e6ed;
    --sch-muted: #91a8b3;

    --sch-border: rgba(255,255,255,.1);

    --sch-shadow: 0 18px 50px rgba(0,0,0,.25);
}

html.dark-mode .apex-schedule-page .schedule-planner,
body.dark-mode .apex-schedule-page .schedule-planner,
.dark-mode .apex-schedule-page .schedule-planner {
    background: #091a24;
}

html.dark-mode .apex-schedule-page .schedule-days,
body.dark-mode .apex-schedule-page .schedule-days,
.dark-mode .apex-schedule-page .schedule-days,
html.dark-mode .apex-schedule-page .training-timeline,
body.dark-mode .apex-schedule-page .training-timeline,
.dark-mode .apex-schedule-page .training-timeline {
    background: #0d202b;
}

html.dark-mode .apex-schedule-page .sport-schedule,
body.dark-mode .apex-schedule-page .sport-schedule,
.dark-mode .apex-schedule-page .sport-schedule {
    background: #0d202b;
}

html.dark-mode .apex-schedule-page .sport-track-card,
body.dark-mode .apex-schedule-page .sport-track-card,
.dark-mode .apex-schedule-page .sport-track-card {
    background: #102630;
}

html.dark-mode .apex-schedule-page .schedule-cycle,
body.dark-mode .apex-schedule-page .schedule-cycle,
.dark-mode .apex-schedule-page .schedule-cycle {
    background: #091a24;
}

html.dark-mode .apex-schedule-page .cycle-icon,
body.dark-mode .apex-schedule-page .cycle-icon,
.dark-mode .apex-schedule-page .cycle-icon {
    background: #102630;
}

html.dark-mode .apex-schedule-page .cycle-step:hover,
body.dark-mode .apex-schedule-page .cycle-step:hover,
.dark-mode .apex-schedule-page .cycle-step:hover {
    background: #102630;
}

html.dark-mode .apex-schedule-page .schedule-events,
body.dark-mode .apex-schedule-page .schedule-events,
.dark-mode .apex-schedule-page .schedule-events {
    background: #0d202b;
}

html.dark-mode .apex-schedule-page .event-item:hover,
body.dark-mode .apex-schedule-page .event-item:hover,
.dark-mode .apex-schedule-page .event-item:hover {
    background: #102630;
}

html.dark-mode .apex-schedule-page .schedule-note,
body.dark-mode .apex-schedule-page .schedule-note,
.dark-mode .apex-schedule-page .schedule-note {
    background: #0d202b;
}

html.dark-mode .apex-schedule-page .schedule-note-inner,
body.dark-mode .apex-schedule-page .schedule-note-inner,
.dark-mode .apex-schedule-page .schedule-note-inner {
    background: #091a24;
}

html.dark-mode .apex-schedule-page .note-icon,
body.dark-mode .apex-schedule-page .note-icon,
.dark-mode .apex-schedule-page .note-icon {
    background: #102630;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .sport-track-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cycle-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .today-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .today-session {
        max-width: 650px;
    }

}


/* =========================================================
   TABLET / SMALL
   ========================================================= */

@media (max-width: 850px) {

    .apex-schedule-container {
        width: min(100% - 30px, 700px);
    }

    .schedule-hero {
        min-height: 350px;
    }

    .schedule-hero-content {
        padding: 70px 0 60px;
    }

    .schedule-hero h1 {
        font-size: clamp(40px, 9vw, 60px);
    }

    .planner-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .week-control {
        width: 100%;
        justify-content: space-between;
    }

    .schedule-days {
        overflow-x: auto;
    }

    .schedule-day {
        min-width: 80px;
    }

    .training-timeline {
        padding: 25px 15px 30px;
    }

    .training-timeline::before {
        left: 68px;
    }

    .timeline-row {
        grid-template-columns: 48px 28px 1fr;
    }

    .session-card {
        grid-template-columns: 50px 1fr;
        gap: 14px;

        margin-left: 10px;
    }

    .session-details {
        grid-column: 2;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .events-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-note-inner {
        grid-template-columns: 50px 1fr;
    }

    .schedule-note-inner > a {
        grid-column: 2;
        justify-self: start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .apex-schedule-container {
        width: calc(100% - 28px);
    }

    .schedule-hero {
        min-height: 330px;
    }

    .schedule-hero-content {
        padding: 65px 0 55px;
    }

    .schedule-eyebrow {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .schedule-hero h1 {
        margin-top: 18px;

        font-size: 43px;
        letter-spacing: -2px;
    }

    .schedule-hero-content p {
        font-size: 12px;
        line-height: 1.7;
    }

    .schedule-hero-meta {
        bottom: 18px;

        width: calc(100% - 28px);

        font-size: 7px;
        letter-spacing: 1px;
    }

    .schedule-hero-meta div {
        width: 25px;
    }


    /* PLANNER */

    .schedule-planner,
    .today-training,
    .sport-schedule,
    .schedule-cycle,
    .schedule-events {
        padding: 75px 0;
    }

    .schedule-note {
        padding-bottom: 75px;
    }

    .planner-top h2,
    .schedule-heading h2,
    .cycle-intro h2,
    .events-heading h2 {
        font-size: 34px;
        letter-spacing: -1.3px;
    }

    .week-control strong {
        font-size: 9px;
    }

    .schedule-day {
        min-width: 68px;
        padding: 15px 7px;
    }

    .schedule-day strong {
        font-size: 17px;
    }

    .training-timeline {
        padding: 20px 8px 25px;
    }

    .training-timeline::before {
        left: 58px;
    }

    .timeline-row {
        grid-template-columns: 38px 22px 1fr;

        min-height: 145px;
    }

    .timeline-time {
        padding-right: 7px;
    }

    .timeline-time span {
        font-size: 12px;
    }

    .timeline-time small {
        font-size: 7px;
    }

    .timeline-line {
        width: 9px;
        height: 9px;
    }

    .session-card {
        grid-template-columns: 42px 1fr;

        gap: 11px;

        margin-left: 5px;
        padding: 15px 12px;

        border-radius: 12px;
    }

    .session-sport {
        width: 42px;
        height: 42px;

        border-radius: 11px;

        font-size: 15px;
    }

    .session-main h3 {
        font-size: 14px;
    }

    .session-main p {
        font-size: 9px;
    }

    .session-details {
        grid-column: 2;

        gap: 8px;

        font-size: 8px;
    }


    /* TODAY */

    .today-grid {
        gap: 40px;
    }

    .today-content h2 {
        font-size: 38px;
    }

    .today-session {
        padding: 25px 20px;
    }

    .today-session-time strong {
        font-size: 42px;
    }

    .today-session h3 {
        font-size: 20px;
    }

    .today-session-info {
        flex-direction: column;
        gap: 9px;
    }


    /* SPORTS */

    .sport-track-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .sport-track-card {
        min-height: auto;
        padding: 24px;
    }

    .track-top {
        margin-bottom: 30px;
    }


    /* CYCLE */

    .cycle-grid {
        gap: 40px;
    }

    .cycle-step {
        grid-template-columns: 35px 48px 1fr;

        gap: 10px;

        padding: 12px 5px;
    }

    .cycle-steps::before {
        left: 17px;
    }

    .cycle-icon {
        width: 44px;
        height: 44px;

        border-radius: 11px;

        font-size: 14px;
    }

    .cycle-step h3 {
        font-size: 14px;
    }

    .cycle-step p {
        font-size: 9px;
    }


    /* EVENTS */

    .event-item {
        grid-template-columns: 65px 1fr 35px;

        gap: 14px;

        padding: 20px 0;
    }

    .event-date {
        width: 58px;
        height: 58px;
    }

    .event-date strong {
        font-size: 20px;
    }

    .event-content h3 {
        font-size: 14px;
    }

    .event-content p {
        font-size: 9px;
    }

    .event-arrow {
        width: 32px;
        height: 32px;

        font-size: 10px;
    }


    /* NOTE */

    .schedule-note-inner {
        grid-template-columns: 42px 1fr;

        gap: 14px;

        padding: 20px 17px;
    }

    .note-icon {
        width: 42px;
        height: 42px;
    }

    .schedule-note-inner p {
        font-size: 9px;
    }

    .schedule-note-inner > a {
        padding: 10px 13px;

        font-size: 9px;
    }


    /* FINAL */

    .schedule-final {
        padding: 80px 0;
    }

    .schedule-final h2 {
        font-size: 42px;
    }

    .schedule-final-content > p {
        font-size: 11px;
    }

    .schedule-primary-btn,
    .schedule-outline-btn {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .schedule-hero h1 {
        font-size: 38px;
    }

    .planner-top h2,
    .schedule-heading h2,
    .cycle-intro h2,
    .events-heading h2 {
        font-size: 30px;
    }

    .timeline-row {
        grid-template-columns: 34px 18px 1fr;
    }

    .training-timeline::before {
        left: 51px;
    }

    .session-card {
        padding: 12px 9px;
    }

    .session-main h3 {
        font-size: 12px;
    }

    .session-main p {
        font-size: 8px;
    }

    .event-item {
        grid-template-columns: 56px 1fr 30px;
        gap: 9px;
    }

    .event-date {
        width: 50px;
        height: 50px;
    }

    .event-date strong {
        font-size: 18px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-schedule-page *,
    .apex-schedule-page *::before,
    .apex-schedule-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
/* =========================================================
   APEX SPORTS ACADEMY
   404 ERROR PAGE
   ========================================================= */

.apex-404-page {

    --err-primary: #159ee3;
    --err-primary-dark: #087db8;
    --err-soft: #eaf8ff;

    --err-white: #ffffff;
    --err-bg: #f5fbff;

    --err-dark: #071923;
    --err-text: #263944;
    --err-muted: #71818b;

    --err-border: #dcecf4;

    width: 100%;
    overflow: hidden;

    background: var(--err-white);
    color: var(--err-text);
}

.apex-404-page *,
.apex-404-page *::before,
.apex-404-page *::after {
    box-sizing: border-box;
}

.apex-error-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   ERROR HERO
   ========================================================= */

.error-404 {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(21,158,227,.16),
            transparent 30%
        ),
        var(--err-dark);

    isolation: isolate;
}


/* COURT LINES */

.error-court-lines {
    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(
            90deg,
            transparent 49.7%,
            #ffffff 50%,
            transparent 50.3%
        ),
        linear-gradient(
            transparent 49.7%,
            #ffffff 50%,
            transparent 50.3%
        );

    background-size: 130px 130px;

    transform: perspective(500px) rotateX(45deg) scale(1.4);

    transform-origin: center bottom;

    z-index: -2;
}


/* CONTENT */

.error-content {
    position: relative;

    width: 100%;

    text-align: center;

    padding: 80px 0 70px;

    animation: errorEnter .9s ease both;
}

.error-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;

    background: rgba(255,255,255,.05);

    color: rgba(255,255,255,.7);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.error-label i {
    color: var(--err-primary);
}


/* =========================================================
   404 NUMBER
   ========================================================= */

.error-number {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 25px 0 10px;

    color: var(--err-white);

    font-size: clamp(150px, 24vw, 275px);

    line-height: .75;

    font-weight: 900;

    letter-spacing: -20px;
}

.error-number > span {
    position: relative;
    z-index: 2;

    text-shadow:
        0 20px 60px rgba(0,0,0,.25);
}


/* ZERO */

.error-zero {
    position: relative;

    width: clamp(145px, 19vw, 220px);
    height: clamp(145px, 19vw, 220px);

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: clamp(15px, 2.5vw, 25px) solid var(--err-primary);

    border-radius: 50%;

    box-shadow:
        0 0 0 8px rgba(21,158,227,.08),
        0 20px 50px rgba(21,158,227,.2);

    animation: zeroFloat 4s ease-in-out infinite;
}

.zero-inner {
    width: 55%;
    height: 55%;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(21,158,227,.12);

    color: var(--err-primary);

    font-size: clamp(30px, 4vw, 48px);

    transform: rotate(-8deg);
}


/* =========================================================
   HEADING
   ========================================================= */

.error-content h1 {
    margin: 35px auto 15px;

    max-width: 700px;

    color: var(--err-white);

    font-size: clamp(32px, 5vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}

.error-content h1 span {
    display: block;

    color: var(--err-primary);
}

.error-content > p {
    max-width: 560px;

    margin: 0 auto;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.error-actions {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.error-primary-btn,
.error-outline-btn {

    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 23px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.error-primary-btn {
    background: var(--err-primary);
    color: var(--err-white);
}

.error-primary-btn:hover {
    background: var(--err-primary-dark);

    transform: translateY(-3px);
}

.error-outline-btn {

    border: 1px solid rgba(255,255,255,.25);

    background: transparent;

    color: var(--err-white);
}

.error-outline-btn:hover {

    border-color: var(--err-primary);

    background: var(--err-primary);

    transform: translateY(-3px);
}


/* =========================================================
   BOTTOM INFO
   ========================================================= */

.error-bottom-info {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 60px;
}

.error-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;

    text-align: left;
}

.error-info-item strong {
    color: var(--err-primary);

    font-size: 10px;

    letter-spacing: 1px;
}

.error-info-item span {
    color: rgba(255,255,255,.45);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.error-info-line {
    width: 45px;
    height: 1px;

    background: rgba(255,255,255,.15);
}


/* =========================================================
   FLOATING SPORTS
   ========================================================= */

.error-floating {

    position: absolute;

    display: grid;
    place-items: center;

    color: var(--err-primary);

    opacity: .12;

    pointer-events: none;

    z-index: -1;
}

.error-floating i {
    font-size: 70px;
}

.error-ball-one {
    left: 7%;
    top: 20%;

    animation:
        errorBallOne 9s ease-in-out infinite;
}

.error-ball-two {
    right: 7%;
    top: 25%;

    animation:
        errorBallTwo 10s ease-in-out infinite;
}

.error-ball-three {
    right: 14%;
    bottom: 15%;

    animation:
        errorBallThree 8s ease-in-out infinite;
}


/* =========================================================
   CORNER DETAILS
   ========================================================= */

.error-corner-text {

    position: absolute;

    left: 25px;
    bottom: 25px;

    writing-mode: vertical-rl;

    color: rgba(255,255,255,.18);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
}

.error-corner-number {

    position: absolute;

    right: 30px;
    bottom: 22px;

    color: rgba(255,255,255,.08);

    font-size: 80px;
    font-weight: 900;

    line-height: 1;
}


/* =========================================================
   QUICK NAV
   ========================================================= */

.error-quick-nav {

    padding: 100px 0;

    background: var(--err-bg);
}

.quick-nav-heading {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.error-section-label {

    display: block;

    color: var(--err-primary-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.quick-nav-heading h2 {

    margin: 10px 0 0;

    color: var(--err-dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1;

    letter-spacing: -1.8px;
}

.quick-nav-heading h2 span {
    color: var(--err-primary);
}


.quick-nav-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.quick-nav-card {

    position: relative;

    min-height: 230px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 25px;

    border: 1px solid var(--err-border);

    border-radius: 17px;

    background: var(--err-white);

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.quick-nav-card::before {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    bottom: -45px;

    border: 1px solid var(--err-primary);

    border-radius: 50%;

    opacity: .1;

    transition: transform .4s ease;
}

.quick-nav-card:hover {

    transform: translateY(-8px);

    border-color: rgba(21,158,227,.35);

    box-shadow:
        0 18px 45px rgba(13,86,116,.09);
}

.quick-nav-card:hover::before {
    transform: scale(1.7);
}


.quick-nav-icon {

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--err-soft);

    color: var(--err-primary);

    font-size: 17px;

    transition:
        background .3s ease,
        color .3s ease;
}

.quick-nav-card:hover .quick-nav-icon {

    background: var(--err-primary);

    color: var(--err-white);
}


.quick-nav-card div:nth-child(2) {
    margin-top: 30px;
}

.quick-nav-card div:nth-child(2) span {

    color: var(--err-primary);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.quick-nav-card h3 {

    margin: 6px 0;

    color: var(--err-dark);

    font-size: 20px;
}

.quick-nav-card p {

    margin: 0;

    color: var(--err-muted);

    font-size: 10px;

    line-height: 1.6;
}

.quick-nav-arrow {

    position: absolute;

    right: 24px;
    bottom: 24px;

    color: var(--err-primary);

    font-size: 12px;

    transition: transform .3s ease;
}

.quick-nav-card:hover .quick-nav-arrow {
    transform: translateX(5px);
}


/* =========================================================
   FINAL
   ========================================================= */

.error-final {

    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: var(--err-primary);
}

.error-final-shape {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -300px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;
}

.error-final-inner {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: auto;

    text-align: center;
}

.error-final-inner > span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.8);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.error-final-inner h2 {

    margin: 18px 0 28px;

    color: var(--err-white);

    font-size: clamp(35px, 5vw, 56px);

    line-height: 1;

    letter-spacing: -2px;
}

.error-final-inner h2 strong {

    display: block;

    color: var(--err-dark);
}

.error-final-inner > a {

    display: inline-flex;

    align-items: center;
    gap: 10px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 8px;

    background: var(--err-dark);

    color: var(--err-white);

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.error-final-inner > a:hover {

    background: #000d14;

    transform: translateY(-3px);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes errorEnter {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes zeroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }

}

@keyframes errorBallOne {

    0%,
    100% {
        transform: translate(0,0) rotate(0);
    }

    50% {
        transform: translate(30px,-35px) rotate(180deg);
    }

}

@keyframes errorBallTwo {

    0%,
    100% {
        transform: translate(0,0) rotate(0);
    }

    50% {
        transform: translate(-35px,30px) rotate(-180deg);
    }

}

@keyframes errorBallThree {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-20px,-30px);
    }

}


/* =========================================================
   DARK MODE
   ========================================================= */

html.dark-mode .apex-404-page,
body.dark-mode .apex-404-page,
.dark-mode .apex-404-page {

    --err-white: #0d202b;
    --err-bg: #091a24;

    --err-dark: #f2f9fc;

    --err-text: #d7e6ed;
    --err-muted: #91a8b3;

    --err-border: rgba(255,255,255,.1);
}

html.dark-mode .apex-404-page .quick-nav-card,
body.dark-mode .apex-404-page .quick-nav-card,
.dark-mode .apex-404-page .quick-nav-card {

    background: #102630;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .apex-error-container {
        width: calc(100% - 28px);
    }

    .error-404 {
        min-height: 650px;
    }

    .error-content {
        padding: 70px 0 60px;
    }

    .error-number {

        gap: 6px;

        font-size: 130px;

        letter-spacing: -12px;
    }

    .error-zero {

        width: 120px;
        height: 120px;

        border-width: 14px;
    }

    .zero-inner {
        font-size: 28px;
    }

    .error-content h1 {

        margin-top: 28px;

        font-size: 32px;

        letter-spacing: -1px;
    }

    .error-content > p {
        font-size: 11px;
    }

    .error-bottom-info {
        gap: 10px;

        margin-top: 45px;
    }

    .error-info-line {
        width: 20px;
    }

    .error-info-item span {
        font-size: 6px;
    }

    .error-floating i {
        font-size: 45px;
    }

    .error-ball-one {
        left: 4%;
        top: 18%;
    }

    .error-ball-two {
        right: 4%;
        top: 20%;
    }

    .error-ball-three {
        right: 8%;
        bottom: 12%;
    }

    .error-corner-text,
    .error-corner-number {
        display: none;
    }


    /* QUICK NAV */

    .error-quick-nav {
        padding: 75px 0;
    }

    .quick-nav-heading {
        display: block;

        margin-bottom: 35px;
    }

    .quick-nav-heading h2 {
        font-size: 35px;
    }

    .quick-nav-grid {
        grid-template-columns: 1fr;
    }

    .quick-nav-card {
        min-height: 190px;
    }


    /* FINAL */

    .error-final {
        padding: 80px 0;
    }

    .error-final-inner h2 {
        font-size: 38px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .error-number {
        font-size: 100px;
        letter-spacing: -8px;
    }

    .error-zero {
        width: 94px;
        height: 94px;

        border-width: 11px;
    }

    .zero-inner {
        font-size: 22px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-primary-btn,
    .error-outline-btn {
        width: 100%;
    }

    .error-bottom-info {
        display: none;
    }

    .error-content h1 {
        font-size: 28px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-404-page *,
    .apex-404-page *::before,
    .apex-404-page *::after {

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}
/* =========================================================
   APEX SPORTS ACADEMY
   COMING SOON PAGE
   ========================================================= */

.apex-coming-page {

    --cs-primary: #159ee3;
    --cs-primary-dark: #087db8;
    --cs-soft: #eaf8ff;

    --cs-white: #ffffff;
    --cs-bg: #f5fbff;

    --cs-dark: #071923;
    --cs-text: #263944;
    --cs-muted: #71818b;

    --cs-border: #dcecf4;

    width: 100%;
    overflow: hidden;

    background: var(--cs-white);
    color: var(--cs-text);
}

.apex-coming-page *,
.apex-coming-page *::before,
.apex-coming-page *::after {
    box-sizing: border-box;
}

.apex-coming-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.coming-soon-hero {

    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(21,158,227,.13),
            transparent 34%
        ),
        var(--cs-dark);

    isolation: isolate;
}


/* GRID */

.coming-grid {

    position: absolute;
    inset: 0;

    opacity: .055;

    background-image:
        linear-gradient(
            90deg,
            #fff 1px,
            transparent 1px
        ),
        linear-gradient(
            #fff 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    animation: gridSlide 20s linear infinite;
}


/* ORBITS */

.coming-orbit {

    position: absolute;

    border: 1px solid rgba(21,158,227,.16);

    border-radius: 50%;

    pointer-events: none;
}

.coming-orbit-one {

    width: 650px;
    height: 650px;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    animation: orbitRotate 25s linear infinite;
}

.coming-orbit-two {

    width: 460px;
    height: 460px;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    border-style: dashed;

    opacity: .45;

    animation: orbitRotateReverse 18s linear infinite;
}


/* SIDE DETAILS */

.coming-decoration {

    position: absolute;

    display: flex;
    flex-direction: column;

    gap: 8px;

    color: rgba(255,255,255,.18);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;

    z-index: 2;
}

.coming-decoration strong {

    color: rgba(21,158,227,.3);

    font-size: 45px;

    line-height: 1;
}

.coming-left {

    left: 28px;
    bottom: 80px;

    writing-mode: vertical-rl;
}

.coming-right {

    right: 28px;
    top: 90px;

    text-align: right;
}


/* =========================================================
   CONTENT
   ========================================================= */

.coming-content {

    position: relative;
    z-index: 5;

    width: 100%;

    max-width: 900px;

    margin: auto;

    padding: 80px 0;

    text-align: center;

    animation: comingEnter .9s ease both;
}

.coming-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50px;

    background: rgba(255,255,255,.05);

    color: rgba(255,255,255,.65);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.coming-label i {
    color: var(--cs-primary);
}


/* =========================================================
   TITLE
   ========================================================= */

.coming-title-wrap {

    position: relative;

    margin: 35px auto 20px;
}

.coming-small-number {

    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-280px);

    color: rgba(255,255,255,.12);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.coming-title-wrap h1 {

    margin: 0;

    color: var(--cs-white);

    font-size: clamp(75px, 13vw, 150px);

    line-height: .78;

    letter-spacing: -8px;

    font-weight: 900;
}

.coming-title-wrap h1 span {

    display: block;

    color: var(--cs-primary);
}


/* DESCRIPTION */

.coming-description {

    max-width: 590px;

    margin: 25px auto 35px;

    color: rgba(255,255,255,.56);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SCOREBOARD
   ========================================================= */

.coming-scoreboard {

    width: min(760px, 100%);

    margin: auto;

    padding: 20px 22px 23px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 15px;

    background: rgba(255,255,255,.035);

    text-align: left;

    box-shadow: 0 25px 80px rgba(0,0,0,.15);

    backdrop-filter: blur(8px);
}

.scoreboard-top {

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.4);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.scoreboard-live {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #61dca2;
}

.scoreboard-live i {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #39d38b;

    box-shadow: 0 0 0 5px rgba(57,211,139,.08);

    animation: statusPulse 1.6s infinite;
}


/* SCORE MAIN */

.scoreboard-main {

    display: grid;

    grid-template-columns: 1fr 70px 1fr;

    align-items: center;

    padding: 25px 0;
}

.score-box strong {

    display: block;

    color: var(--cs-white);

    font-size: 30px;

    letter-spacing: -1px;
}

.score-box span {

    color: var(--cs-primary);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.score-box-right {
    text-align: right;
}

.score-divider {

    display: flex;

    align-items: center;
    justify-content: center;
}

.score-divider span {

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    color: rgba(255,255,255,.35);

    font-size: 8px;
    font-weight: 800;
}


/* PROGRESS */

.progress-label {

    display: flex;

    justify-content: space-between;

    margin-bottom: 9px;

    color: rgba(255,255,255,.38);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.progress-label strong {
    color: var(--cs-primary);
}

.progress-line {

    width: 100%;
    height: 4px;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(255,255,255,.08);
}

.progress-line span {

    display: block;

    width: 78%;
    height: 100%;

    border-radius: inherit;

    background: var(--cs-primary);

    animation: progressFill 1.5s ease both;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.coming-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.coming-primary-btn,
.coming-outline-btn {

    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.coming-primary-btn {

    background: var(--cs-primary);

    color: var(--cs-white);
}

.coming-primary-btn:hover {

    background: var(--cs-primary-dark);

    transform: translateY(-3px);
}

.coming-outline-btn {

    border: 1px solid rgba(255,255,255,.2);

    color: var(--cs-white);

    background: transparent;
}

.coming-outline-btn:hover {

    border-color: var(--cs-primary);

    background: var(--cs-primary);

    transform: translateY(-3px);
}


/* =========================================================
   STATUS
   ========================================================= */

.coming-status {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 50px;
}

.status-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.3);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.status-item i {
    color: var(--cs-primary);
}

.status-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #39d38b;
}

.status-line {

    width: 30px;
    height: 1px;

    background: rgba(255,255,255,.1);
}


/* BOTTOM TEXT */

.coming-bottom-text {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    color: rgba(255,255,255,.12);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 4px;

    white-space: nowrap;
}


/* =========================================================
   NEXT SECTION
   ========================================================= */

.coming-next {

    padding: 105px 0;

    background: var(--cs-bg);
}

.coming-next-heading {

    max-width: 650px;

    margin-bottom: 50px;
}

.coming-section-label {

    color: var(--cs-primary-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.coming-next-heading h2 {

    margin: 12px 0 17px;

    color: var(--cs-dark);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1;

    letter-spacing: -2px;
}

.coming-next-heading h2 span {
    display: block;
    color: var(--cs-primary);
}

.coming-next-heading p {

    max-width: 570px;

    margin: 0;

    color: var(--cs-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* FEATURES */

.coming-feature-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}

.coming-feature-card {

    position: relative;

    min-height: 330px;

    padding: 28px;

    border: 1px solid var(--cs-border);

    border-radius: 17px;

    background: var(--cs-white);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.coming-feature-card::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -90px;
    bottom: -90px;

    border: 1px solid var(--cs-primary);

    border-radius: 50%;

    opacity: .1;

    transition: transform .4s ease;
}

.coming-feature-card:hover {

    transform: translateY(-8px);

    border-color: rgba(21,158,227,.35);

    box-shadow:
        0 20px 50px rgba(13,86,116,.08);
}

.coming-feature-card:hover::after {
    transform: scale(1.5);
}

.featured-card {
    background: var(--cs-dark);
    border-color: var(--cs-dark);
}

.featured-card h3 {
    color: var(--cs-white);
}

.featured-card p {
    color: rgba(255,255,255,.5);
}

.feature-number {

    position: absolute;

    top: 25px;
    right: 25px;

    color: var(--cs-primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.feature-icon {

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 60px;

    border-radius: 13px;

    background: var(--cs-soft);

    color: var(--cs-primary);

    font-size: 17px;
}

.featured-card .feature-icon {
    background: rgba(21,158,227,.12);
}

.coming-feature-card h3 {

    margin: 0 0 10px;

    color: var(--cs-dark);

    font-size: 22px;
}

.coming-feature-card p {

    max-width: 270px;

    margin: 0 0 25px;

    color: var(--cs-muted);

    font-size: 10px;

    line-height: 1.7;
}

.coming-feature-card a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--cs-primary-dark);

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;
}

.featured-card a {
    color: var(--cs-primary);
}


/* =========================================================
   FINAL
   ========================================================= */

.coming-final {

    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background: var(--cs-primary);
}

.coming-final-ring {

    position: absolute;

    width: 550px;
    height: 550px;

    top: -320px;
    right: -150px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;
}

.coming-final-content {

    position: relative;
    z-index: 2;

    max-width: 700px;

    margin: auto;

    text-align: center;
}

.coming-final-content > span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.75);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.coming-final-content h2 {

    margin: 18px 0 27px;

    color: var(--cs-white);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -2px;
}

.coming-final-content h2 strong {

    display: block;

    color: var(--cs-dark);
}

.coming-final-content > a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 8px;

    background: var(--cs-dark);

    color: var(--cs-white);

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.coming-final-content > a:hover {

    background: #000d14;

    transform: translateY(-3px);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes comingEnter {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridSlide {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 70px 70px;
    }
}

@keyframes orbitRotate {

    from {
        transform: translate(-50%,-50%) rotate(0);
    }

    to {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes orbitRotateReverse {

    from {
        transform: translate(-50%,-50%) rotate(360deg);
    }

    to {
        transform: translate(-50%,-50%) rotate(0);
    }
}

@keyframes progressFill {

    from {
        width: 0;
    }

    to {
        width: 78%;
    }
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(57,211,139,.08);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(57,211,139,.02);
    }
}


/* =========================================================
   DARK MODE
   ========================================================= */

html.dark-mode .apex-coming-page,
body.dark-mode .apex-coming-page,
.dark-mode .apex-coming-page {

    --cs-white: #0d202b;
    --cs-bg: #091a24;

    --cs-dark: #f2f9fc;

    --cs-text: #d7e6ed;
    --cs-muted: #91a8b3;

    --cs-border: rgba(255,255,255,.1);
}

html.dark-mode .apex-coming-page .coming-feature-card,
body.dark-mode .apex-coming-page .coming-feature-card,
.dark-mode .apex-coming-page .coming-feature-card {
    background: #102630;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .coming-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .coming-feature-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .apex-coming-container {
        width: calc(100% - 28px);
    }

    .coming-soon-hero {
        min-height: 700px;
    }

    .coming-content {
        padding: 65px 0;
    }

    .coming-title-wrap {
        margin-top: 30px;
    }

    .coming-title-wrap h1 {

        font-size: 76px;

        letter-spacing: -5px;
    }

    .coming-small-number {
        display: none;
    }

    .coming-description {
        font-size: 11px;

        max-width: 430px;
    }

    .coming-scoreboard {
        padding: 16px;
    }

    .scoreboard-main {
        grid-template-columns: 1fr 50px 1fr;

        padding: 20px 0;
    }

    .score-box strong {
        font-size: 22px;
    }

    .score-box span {
        font-size: 6px;
    }

    .score-divider span {
        width: 34px;
        height: 34px;
    }

    .coming-status {
        gap: 9px;

        margin-top: 38px;
    }

    .status-line {
        width: 14px;
    }

    .status-item {
        font-size: 6px;
    }

    .coming-decoration {
        display: none;
    }

    .coming-orbit-one {
        width: 450px;
        height: 450px;
    }

    .coming-orbit-two {
        width: 330px;
        height: 330px;
    }


    /* NEXT */

    .coming-next {
        padding: 75px 0;
    }

    .coming-next-heading h2 {
        font-size: 35px;
    }

    .coming-feature-grid {
        grid-template-columns: 1fr;
    }

    .coming-feature-card:last-child {
        grid-column: auto;
    }


    /* FINAL */

    .coming-final {
        padding: 80px 0;
    }

    .coming-final-content h2 {
        font-size: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .coming-title-wrap h1 {
        font-size: 64px;
    }

    .scoreboard-main {
        grid-template-columns: 1fr 40px 1fr;
    }

    .score-box strong {
        font-size: 19px;
    }

    .coming-actions {
        flex-direction: column;
    }

    .coming-primary-btn,
    .coming-outline-btn {
        width: 100%;
    }

    .coming-status {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-coming-page *,
    .apex-coming-page *::before,
    .apex-coming-page *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}
/* =========================================================
   CONTACT HERO — CENTER CONTENT
========================================================= */

.ac-contact-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ac-hero-container {
    width: 100%;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.ac-hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Eyebrow */

.ac-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

/* Heading */

.ac-hero-content h1 {
    margin: 0 auto 18px;
    max-width: 850px;
    text-align: center;
}

/* Highlight */

.ac-hero-content h1 span {
    display: inline;
}

/* Paragraph */

.ac-hero-content > p {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

/* Buttons */

.ac-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
}

/* Hide side content so the banner is properly centered */

.ac-hero-side {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.35;
}

/* Scroll indicator */

.ac-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 6;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    text-align: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .ac-contact-hero {
        min-height: 400px;
    }

    .ac-hero-container {
        min-height: 400px;
        padding: 70px 20px 65px;
    }

    .ac-hero-content {
        max-width: 100%;
    }

    .ac-hero-content h1 {
        max-width: 600px;
        margin-bottom: 16px;
    }

    .ac-hero-content > p {
        max-width: 560px;
        margin-bottom: 24px;
    }

    .ac-hero-actions {
        flex-wrap: wrap;
    }

    .ac-hero-side {
        display: none;
    }

    .ac-scroll {
        bottom: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ac-contact-hero {
        min-height: 390px;
    }

    .ac-hero-container {
        min-height: 390px;
        padding: 60px 16px 60px;
    }

    .ac-eyebrow {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .ac-hero-content h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .ac-hero-content > p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .ac-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .ac-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .ac-scroll {
        font-size: 9px;
    }
}
/* =========================================================
   CONTACT FORM SECTION - SPORTS BACKGROUND IMAGE
========================================================= */

.ac-form-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 20, 32, 0.88) 0%,
            rgba(4, 20, 32, 0.76) 42%,
            rgba(4, 20, 32, 0.84) 100%
        ),
        url("../images/contact-form-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 110px 0;
}

/* Dark blue overlay */

.ac-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            135deg,
            rgba(21, 158, 227, 0.12),
            transparent 35%,
            rgba(7, 25, 35, 0.35)
        );
}

/* Existing pattern should stay behind content */

.ac-form-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;

    opacity: 0.12;
    pointer-events: none;
}

/* =========================================================
   FORM GRID
========================================================= */

.ac-form-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.ac-form-intro {
    color: #ffffff;
    max-width: 560px;
}

.ac-form-intro .ac-section-label {
    color: #8ed8ff;
}

.ac-label-white {
    color: #ffffff;
}

.ac-form-intro h2 {
    color: #ffffff;
    margin: 18px 0 20px;
}

.ac-form-intro h2 span {
    color: #159ee3;
}

.ac-form-intro > p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    max-width: 510px;
}


/* =========================================================
   FORM POINTS
========================================================= */

.ac-form-points {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ac-form-point {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
}

.ac-form-point > span {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(21, 158, 227, 0.8);
    border-radius: 50%;

    color: #159ee3;
    font-size: 14px;
    font-weight: 800;

    background: rgba(21, 158, 227, 0.08);
}

.ac-form-point strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 5px;
}

.ac-form-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   RIGHT FORM CARD
========================================================= */

.ac-form-wrapper {
    position: relative;

    padding: 34px;

    border: 1px solid rgba(157, 220, 250, 0.28);
    border-radius: 22px;

    background: rgba(7, 27, 40, 0.72);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* Top line */

.ac-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;
    margin-bottom: 26px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    color: #ffffff;
}

.ac-form-top span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.ac-form-top i {
    color: #159ee3;
    font-size: 16px;
}


/* =========================================================
   FORM ROW
========================================================= */

.ac-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ac-form-group {
    margin-bottom: 20px;
}

.ac-form-group label {
    display: block;
    margin-bottom: 8px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   INPUT
========================================================= */

.ac-input {
    position: relative;
    display: flex;
    align-items: center;
}

.ac-input > i:first-child {
    position: absolute;
    left: 16px;
    z-index: 2;

    color: #80b4cc;
    font-size: 14px;
    pointer-events: none;
}

.ac-input input,
.ac-input select,
.ac-input textarea {
    width: 100%;

    border: 1px solid rgba(157, 220, 250, 0.30);
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.ac-input input,
.ac-input select {
    height: 52px;
    padding: 0 16px 0 45px;
}

.ac-input textarea {
    min-height: 125px;
    padding: 15px 16px 15px 45px;
    resize: vertical;
}

.ac-input input::placeholder,
.ac-input textarea::placeholder {
    color: rgba(190, 216, 229, 0.65);
}

.ac-input input:focus,
.ac-input select:focus,
.ac-input textarea:focus {
    border-color: #159ee3;

    background: rgba(21, 158, 227, 0.08);

    box-shadow:
        0 0 0 3px rgba(21, 158, 227, 0.10);
}


/* Select */

.ac-select {
    position: relative;
}

.ac-select select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.ac-select select option {
    background: #071923;
    color: #ffffff;
}

.ac-select-arrow {
    position: absolute;
    right: 16px;

    color: #80b4cc;
    pointer-events: none;
}


/* =========================================================
   CHECKBOX
========================================================= */

.ac-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 5px 0 22px;

    cursor: pointer;
}

.ac-checkbox input {
    position: absolute;
    opacity: 0;
}

.ac-checkmark {
    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    border: 1px solid rgba(157, 220, 250, 0.45);
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.04);

    position: relative;
}

.ac-checkbox input:checked + .ac-checkmark {
    background: #159ee3;
    border-color: #159ee3;
}

.ac-checkbox input:checked + .ac-checkmark::after {
    content: "✓";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.ac-checkbox small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ac-submit {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 0;
    border-radius: 9px;

    background: #159ee3;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.ac-submit:hover {
    background: #087db8;
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(21, 158, 227, 0.28);
}

.ac-submit i {
    transition: transform 0.25s ease;
}

.ac-submit:hover i {
    transform: translateX(5px);
}


/* Form status */

.ac-form-status {
    min-height: 22px;

    margin-top: 16px;
    padding-top: 14px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    text-align: center;

    color: #8ed8ff;
    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ac-form-section {
        padding: 85px 0;
    }

    .ac-form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ac-form-intro {
        max-width: 720px;
    }

    .ac-form-points {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ac-form-point {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ac-form-point > span {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ac-form-section {
        padding: 70px 0;
        background-position: 60% center;
    }

    .ac-form-grid {
        gap: 38px;
    }

    .ac-form-points {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ac-form-point {
        grid-template-columns: 48px 1fr;
        gap: 15px;
    }

    .ac-form-wrapper {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .ac-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ac-form-intro h2 {
        font-size: 34px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ac-form-section {
        padding: 60px 0;
    }

    .ac-form-wrapper {
        padding: 20px 15px;
    }

    .ac-form-intro h2 {
        font-size: 30px;
    }

    .ac-form-intro > p {
        font-size: 13px;
    }

    .ac-form-top {
        margin-bottom: 20px;
    }

    .ac-input input,
    .ac-input select {
        height: 50px;
    }

    .ac-input textarea {
        min-height: 110px;
    }
}
/* =========================================================
   ABOUT HERO - CENTER CONTENT
========================================================= */

.aa-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aa-hero-inner {
    width: 100%;
    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 5;
}

/* CENTER TEXT */
.aa-hero-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* EYEBROW */
.aa-hero-content .aa-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

/* HEADING */
.aa-hero-content h1 {
    width: 100%;
    max-width: 800px;

    margin: 0 auto 18px;

    text-align: center;
}

/* PARAGRAPH */
.aa-hero-content p {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    text-align: center;
}

/* REMOVE SIDE NUMBER FROM CENTER FLOW */
.aa-hero-number {
    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);
}

/* BOTTOM TEXT */
.aa-hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;

    z-index: 6;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .aa-hero {
        min-height: 380px;
    }

    .aa-hero-inner {
        min-height: 380px;
    }

    .aa-hero-content {
        max-width: 700px;
        padding: 0 25px;
    }

    .aa-hero-number {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aa-hero {
        min-height: 350px;
    }

    .aa-hero-inner {
        min-height: 350px;
    }

    .aa-hero-content {
        padding: 0 20px;
    }

    .aa-hero-content h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .aa-hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .aa-hero-bottom {
        padding: 0 18px;
        bottom: 16px;
    }

    .aa-hero-bottom span {
        font-size: 9px;
    }

}
/* =========================================================
   APEX ABOUT — ADVANCED SCROLL ANIMATION SYSTEM
========================================================= */

.apex-about-page {
    --aa-blue: #159ee3;
    --aa-dark: #071923;
    --aa-ease: cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   SCROLL REVEAL BASE
========================================================= */

.aa-scroll-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 1s var(--aa-ease),
        transform 1.1s var(--aa-ease);
}

.aa-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* LEFT */

.aa-reveal-left {
    opacity: 0;
    transform: translateX(-90px);
    transition:
        opacity 1s var(--aa-ease),
        transform 1.2s var(--aa-ease);
}

.aa-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* RIGHT */

.aa-reveal-right {
    opacity: 0;
    transform: translateX(90px);
    transition:
        opacity 1s var(--aa-ease),
        transform 1.2s var(--aa-ease);
}

.aa-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* SCALE */

.aa-reveal-scale {
    opacity: 0;
    transform: scale(.82);
    transition:
        opacity 1s var(--aa-ease),
        transform 1.2s var(--aa-ease);
}

.aa-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   HERO
========================================================= */

.aa-hero-image {
    transform: scale(1.12);
    transition: transform 2s cubic-bezier(.16,1,.3,1);
}

.aa-hero.loaded .aa-hero-image {
    transform: scale(1);
}


.aa-hero-content {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 1.1s .25s var(--aa-ease),
        transform 1.2s .25s var(--aa-ease);
}

.aa-hero.loaded .aa-hero-content {
    opacity: 1;
    transform: translateY(0);
}


.aa-hero-number {
    opacity: 0;
    transform: translateX(80px);
    transition:
        opacity 1s .7s var(--aa-ease),
        transform 1.2s .7s var(--aa-ease);
}

.aa-hero.loaded .aa-hero-number {
    opacity: 1;
    transform: translateX(0);
}


/* HERO GRID PARALLAX */

.aa-hero-grid {
    transition: transform .15s linear;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.aa-intro-content h2,
.aa-story-content h2,
.aa-philosophy-heading h2,
.aa-journey-heading h2,
.aa-coaching-content h2,
.aa-values-heading h2 {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .9s var(--aa-ease),
        transform 1s var(--aa-ease);
}

.aa-heading-visible h2 {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   INTRO SECTION
========================================================= */

.aa-intro-content p {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .8s var(--aa-ease),
        transform .9s var(--aa-ease);
}

.aa-intro-visible p {
    opacity: 1;
    transform: translateY(0);
}

.aa-intro-visible p:nth-of-type(1) {
    transition-delay: .15s;
}

.aa-intro-visible p:nth-of-type(2) {
    transition-delay: .3s;
}

.aa-intro-visible p:nth-of-type(3) {
    transition-delay: .45s;
}


/* =========================================================
   STATS — STAGGER
========================================================= */

.aa-stat {
    opacity: 0;
    transform: translateY(60px) scale(.9);
    transition:
        opacity .8s var(--aa-ease),
        transform .9s var(--aa-ease);
}

.aa-stats-visible .aa-stat {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.aa-stats-visible .aa-stat:nth-child(1) {
    transition-delay: .05s;
}

.aa-stats-visible .aa-stat:nth-child(2) {
    transition-delay: .18s;
}

.aa-stats-visible .aa-stat:nth-child(3) {
    transition-delay: .31s;
}

.aa-stats-visible .aa-stat:nth-child(4) {
    transition-delay: .44s;
}


/* =========================================================
   STORY IMAGE — CLIP REVEAL
========================================================= */

.aa-story-image {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.15);

    transition:
        clip-path 1.4s var(--aa-ease),
        transform 1.5s var(--aa-ease);
}

.aa-story-visible .aa-story-image {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
}


.aa-story-card {
    opacity: 0;
    transform: translateY(45px) rotate(-6deg);
    transition:
        opacity .8s .7s var(--aa-ease),
        transform .9s .7s var(--aa-ease);
}

.aa-story-visible .aa-story-card {
    opacity: 1;
    transform: translateY(0) rotate(0);
}


.aa-story-outline {
    transform: translate(35px, 35px);
    opacity: 0;
    transition:
        transform 1.2s .4s var(--aa-ease),
        opacity .8s .4s ease;
}

.aa-story-visible .aa-story-outline {
    transform: translate(0, 0);
    opacity: 1;
}


/* =========================================================
   PHILOSOPHY — CARD STAGGER
========================================================= */

.aa-philosophy-card {
    opacity: 0;
    transform: translateY(80px) rotateX(12deg);
    transform-origin: bottom;

    transition:
        opacity .8s var(--aa-ease),
        transform 1s var(--aa-ease);
}

.aa-philosophy-visible .aa-philosophy-card {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.aa-philosophy-visible .aa-philosophy-card:nth-child(1) {
    transition-delay: .05s;
}

.aa-philosophy-visible .aa-philosophy-card:nth-child(2) {
    transition-delay: .18s;
}

.aa-philosophy-visible .aa-philosophy-card:nth-child(3) {
    transition-delay: .31s;
}

.aa-philosophy-visible .aa-philosophy-card:nth-child(4) {
    transition-delay: .44s;
}


/* CARD HOVER */

.aa-philosophy-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.aa-philosophy-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
}

.aa-card-icon {
    transition:
        transform .5s var(--aa-ease);
}

.aa-philosophy-card:hover .aa-card-icon {
    transform: translateZ(20px) scale(1.12) rotate(-8deg);
}


/* =========================================================
   JOURNEY — TIMELINE DRAW
========================================================= */

.aa-journey-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2s cubic-bezier(.16,1,.3,1);
}

.aa-journey-visible .aa-journey-line {
    transform: scaleX(1);
}


.aa-journey-item {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity .8s var(--aa-ease),
        transform .9s var(--aa-ease);
}

.aa-journey-visible .aa-journey-item {
    opacity: 1;
    transform: translateY(0);
}

.aa-journey-visible .aa-journey-item:nth-child(2) {
    transition-delay: .15s;
}

.aa-journey-visible .aa-journey-item:nth-child(3) {
    transition-delay: .35s;
}

.aa-journey-visible .aa-journey-item:nth-child(4) {
    transition-delay: .55s;
}

.aa-journey-visible .aa-journey-item:nth-child(5) {
    transition-delay: .75s;
}


/* JOURNEY DOT */

.aa-journey-dot {
    position: relative;
}

.aa-journey-dot::after {
    content: "";

    position: absolute;
    inset: -8px;

    border: 1px solid var(--aa-blue);
    border-radius: 50%;

    opacity: 0;
    transform: scale(.4);
}

.aa-journey-visible .aa-journey-item .aa-journey-dot::after {
    animation: aaDotPulse 1.5s ease-out forwards;
}

@keyframes aaDotPulse {

    0% {
        opacity: .8;
        transform: scale(.4);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}


/* =========================================================
   COACHING SECTION
========================================================= */

.aa-coaching-content {
    opacity: 0;
    transform: translateX(-90px);
    transition:
        opacity 1s var(--aa-ease),
        transform 1.2s var(--aa-ease);
}

.aa-coaching-visible .aa-coaching-content {
    opacity: 1;
    transform: translateX(0);
}


.aa-coaching-visual {
    opacity: 0;
    transform: translateX(90px) scale(.92);
    transition:
        opacity 1s .2s var(--aa-ease),
        transform 1.2s .2s var(--aa-ease);
}

.aa-coaching-visible .aa-coaching-visual {
    opacity: 1;
    transform: translateX(0) scale(1);
}


/* IMAGE CLIP */

.aa-coaching-image {
    clip-path: inset(0 0 100% 0);
    transition:
        clip-path 1.4s .35s var(--aa-ease);
}

.aa-coaching-visible .aa-coaching-image {
    clip-path: inset(0 0 0 0);
}


/* COACHING ITEMS */

.aa-coaching-item {
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity .7s var(--aa-ease),
        transform .7s var(--aa-ease);
}

.aa-coaching-visible .aa-coaching-item {
    opacity: 1;
    transform: translateX(0);
}

.aa-coaching-visible .aa-coaching-item:nth-child(1) {
    transition-delay: .5s;
}

.aa-coaching-visible .aa-coaching-item:nth-child(2) {
    transition-delay: .65s;
}

.aa-coaching-visible .aa-coaching-item:nth-child(3) {
    transition-delay: .8s;
}

.aa-coaching-visible .aa-coaching-item:nth-child(4) {
    transition-delay: .95s;
}


/* =========================================================
   VALUES
========================================================= */

.aa-value {
    opacity: 0;
    transform: translateY(70px) scale(.88);
    transition:
        opacity .8s var(--aa-ease),
        transform .9s var(--aa-ease);
}

.aa-values-visible .aa-value {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.aa-values-visible .aa-value:nth-child(1) {
    transition-delay: .05s;
}

.aa-values-visible .aa-value:nth-child(2) {
    transition-delay: .18s;
}

.aa-values-visible .aa-value:nth-child(3) {
    transition-delay: .31s;
}

.aa-values-visible .aa-value:nth-child(4) {
    transition-delay: .44s;
}


/* =========================================================
   VALUE ICON HOVER
========================================================= */

.aa-value-top i {
    transition:
        transform .6s var(--aa-ease);
}

.aa-value:hover .aa-value-top i {
    transform: rotate(15deg) scale(1.2);
}


/* =========================================================
   FINAL CTA
========================================================= */

.aa-final-inner {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 1s var(--aa-ease),
        transform 1.1s var(--aa-ease);
}

.aa-final-visible .aa-final-inner {
    opacity: 1;
    transform: translateY(0);
}


.aa-final-bg {
    transform: scale(1.12);
    transition:
        transform 2s var(--aa-ease);
}

.aa-final-visible .aa-final-bg {
    transform: scale(1);
}


/* =========================================================
   MOUSE PARALLAX DECORATIONS
========================================================= */

.aa-hero-circle {
    transition: transform .25s linear;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .aa-reveal-left,
    .aa-reveal-right {
        transform: translateY(50px);
    }

    .aa-reveal-left.is-visible,
    .aa-reveal-right.is-visible {
        transform: translateY(0);
    }

    .aa-philosophy-card:hover {
        transform: translateY(-7px);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .apex-about-page *,
    .apex-about-page *::before,
    .apex-about-page *::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        clip-path: none !important;
    }

}
/* =========================================================
   HOME TWO HERO — PERFECT CENTER CONTENT
========================================================= */

.h2-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* HERO IMAGE */

.h2-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.h2-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* DARK OVERLAY */

.h2-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 18, 28, .78),
            rgba(5, 18, 28, .48),
            rgba(5, 18, 28, .72)
        );
}


/* HERO CONTAINER */

.h2-hero-container {
    position: relative;
    z-index: 5;

    width: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* MAIN CONTENT — EXACT CENTER */

.h2-hero-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
    padding: 40px 25px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


/* EYEBROW */

.h2-hero-content .h2-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    text-align: center;
}


/* TITLE */

.h2-hero-content h1 {
    width: 100%;
    max-width: 850px;

    margin: 0 auto 20px;

    text-align: center;
}


/* DESCRIPTION */

.h2-hero-content p {
    width: 100%;
    max-width: 680px;

    margin: 0 auto 30px;

    text-align: center;
}


/* BUTTONS */

.h2-hero-buttons {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 0 auto;
}


/* RIGHT SIDE TRAIN / COMPETE / EVOLVE */

.h2-hero-side {
    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    z-index: 6;
}


/* BOTTOM TEXT */

.h2-hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 25px;

    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .h2-hero {
        min-height: 560px;
    }

    .h2-hero-container {
        min-height: 560px;
    }

    .h2-hero-content {
        max-width: 720px;
        padding: 30px 25px;
    }

    .h2-hero-side {
        display: none;
    }

}


@media (max-width: 600px) {

    .h2-hero {
        min-height: 520px;
    }

    .h2-hero-container {
        min-height: 520px;
    }

    .h2-hero-content {
        padding: 25px 18px;
    }

    .h2-hero-content h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .h2-hero-content p {
        font-size: 14px;
        line-height: 1.65;
        max-width: 500px;
    }

    .h2-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .h2-hero-buttons .btn,
    .h2-outline-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .h2-hero-bottom {
        bottom: 16px;
        padding: 0 18px;
    }

    .h2-hero-bottom span {
        font-size: 9px;
    }

}
/* =========================================================
   APEX PERFORMANCE LAB
   PERCENTAGE PROGRESS BAR
========================================================= */

.performance-lab-section .metric-card {
    position: relative;
}

/* Background track */
.performance-lab-section .metric-bar {
    width: 100% !important;
    height: 8px !important;
    display: block !important;
    position: relative !important;

    margin-top: 18px !important;

    background: #e3edf2 !important;
    border-radius: 50px !important;

    overflow: hidden !important;
}

/* Actual percentage fill */
.performance-lab-section .metric-bar span {
    display: block !important;
    position: absolute !important;

    left: 0 !important;
    top: 0 !important;

    height: 100% !important;

    /* IMPORTANT:
       HTML width value controls this
       92% = 92% blue
       86% = 86% blue
       89% = 89% blue
       84% = 84% blue
    */
    width: auto;

    background: linear-gradient(
        90deg,
        #087db8 0%,
        #159ee3 100%
    ) !important;

    border-radius: 50px !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    box-shadow:
        0 2px 8px rgba(21, 158, 227, 0.28) !important;
}

/* Small highlight at the end of blue progress */
.performance-lab-section .metric-bar span::after {
    content: "";
    position: absolute;

    right: 0;
    top: 50%;

    width: 8px;
    height: 8px;

    transform: translateY(-50%);

    background: #ffffff;

    border: 2px solid #159ee3;

    border-radius: 50%;

    box-sizing: border-box;
}

/* Percentage number */
.performance-lab-section .metric-card > strong {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 26px;

    margin-top: 10px !important;
    padding: 0 9px;

    background: #eaf8ff !important;

    border: 1px solid #c9eaf8;

    border-radius: 7px;

    color: #087db8 !important;

    font-size: 11px !important;
    font-weight: 800 !important;

    line-height: 1;

    transition: all 0.3s ease;
}

/* Hover */
.performance-lab-section .metric-card:hover .metric-bar span {
    background: linear-gradient(
        90deg,
        #087db8 0%,
        #159ee3 70%,
        #45c4f5 100%
    ) !important;

    box-shadow:
        0 3px 12px rgba(21, 158, 227, 0.40) !important;
}

.performance-lab-section .metric-card:hover > strong {
    background: #159ee3 !important;
    color: #ffffff !important;
    border-color: #159ee3 !important;
    transform: translateY(-2px);
}

/* Dark mode */
body.dark-mode .performance-lab-section .metric-bar {
    background: #243b47 !important;
}

body.dark-mode .performance-lab-section .metric-card > strong {
    background: rgba(21, 158, 227, 0.12) !important;
    border-color: rgba(21, 158, 227, 0.3);
    color: #45c4f5 !important;
}

/* Mobile */
@media (max-width: 600px) {

    .performance-lab-section .metric-bar {
        height: 7px !important;
        margin-top: 15px !important;
    }

    .performance-lab-section .metric-card > strong {
        min-width: 45px;
        height: 24px;
        font-size: 10px !important;
    }
}
/* =========================================================
   APEX PERFORMANCE LAB
   EXACT PERCENTAGE PROGRESS BARS
========================================================= */

/* Grey background pipe */
.performance-lab-section .metric-bar {
    position: relative !important;
    width: 100% !important;
    height: 9px !important;

    margin-top: 18px !important;

    background: #dfeaf1 !important;
    border-radius: 50px !important;

    overflow: hidden !important;
    box-shadow: inset 0 1px 3px rgba(7, 25, 35, 0.08) !important;
}

/* Blue progress */
.performance-lab-section .metric-bar span {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;

    display: block !important;
    height: 100% !important;

    background: linear-gradient(
        90deg,
        #087db8 0%,
        #159ee3 70%,
        #42c4f5 100%
    ) !important;

    border-radius: 50px !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    box-shadow:
        0 2px 8px rgba(21, 158, 227, 0.35) !important;

    transition: width 1.2s cubic-bezier(.16,1,.3,1) !important;
}


/* =========================================================
   EXACT PERCENTAGES
========================================================= */

/* 01 - Speed - 92% */
.performance-lab-section .metric-card:nth-child(1) .metric-bar span {
    width: 92% !important;
}

/* 02 - Strength - 86% */
.performance-lab-section .metric-card:nth-child(2) .metric-bar span {
    width: 86% !important;
}

/* 03 - Agility - 89% */
.performance-lab-section .metric-card:nth-child(3) .metric-bar span {
    width: 89% !important;
}

/* 04 - Endurance - 84% */
.performance-lab-section .metric-card:nth-child(4) .metric-bar span {
    width: 84% !important;
}


/* =========================================================
   END DOT
========================================================= */

.performance-lab-section .metric-bar span::after {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    width: 10px;
    height: 10px;

    transform: translateY(-50%);

    background: #ffffff;

    border: 3px solid #159ee3;

    border-radius: 50%;

    box-sizing: border-box;

    box-shadow: 0 0 7px rgba(21, 158, 227, 0.35);
}


/* =========================================================
   PERCENTAGE BADGE
========================================================= */

.performance-lab-section .metric-card > strong {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 27px;

    margin-top: 10px !important;
    padding: 0 9px;

    background: #eaf8ff !important;

    border: 1px solid #c5e8f8 !important;

    border-radius: 7px;

    color: #087db8 !important;

    font-size: 11px !important;
    font-weight: 800 !important;

    line-height: 1;

    transition: all .3s ease;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.performance-lab-section .metric-card:hover .metric-bar span {
    background: linear-gradient(
        90deg,
        #087db8,
        #159ee3,
        #55cdf7
    ) !important;

    box-shadow:
        0 3px 14px rgba(21, 158, 227, 0.45) !important;
}

.performance-lab-section .metric-card:hover > strong {
    background: #159ee3 !important;
    color: #ffffff !important;
    border-color: #159ee3 !important;

    transform: translateY(-2px);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .performance-lab-section .metric-bar {
    background: #263d49 !important;
}

body.dark-mode .performance-lab-section .metric-card > strong {
    background: rgba(21, 158, 227, .12) !important;
    color: #45c4f5 !important;
    border-color: rgba(21, 158, 227, .3) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .performance-lab-section .metric-bar {
        height: 7px !important;
        margin-top: 15px !important;
    }

    .performance-lab-section .metric-card > strong {
        min-width: 45px;
        height: 25px;
        font-size: 10px !important;
    }

    .performance-lab-section .metric-bar span::after {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }
}
/* =========================================================
   TRAINING ZONES - FLOATING SPORTS OBJECTS
========================================================= */

.training-zones-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.training-zones-section > .container {
    position: relative;
    z-index: 3;
}

.training-zones-section .sports-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.training-zones-section .sport-float {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: .105;
    filter: grayscale(1) saturate(.35);
    transform-origin: center;
    user-select: none;
    will-change: transform;
}

.training-zones-section .sport-cricket-bat {
    width: 115px;
    left: -18px;
    top: 7%;
    animation: apexBatFloat 10s ease-in-out infinite;
}

.training-zones-section .sport-tennis-racket {
    width: 135px;
    right: -28px;
    top: 8%;
    animation: apexRacketFloat 11s ease-in-out infinite 1.2s;
}

.training-zones-section .sport-basketball {
    width: 48px;
    left: 11%;
    top: 18%;
    animation: apexBallFloat 7s ease-in-out infinite 1s;
}

.training-zones-section .sport-football {
    width: 52px;
    right: 12%;
    top: 22%;
    animation: apexBallFloat 8s ease-in-out infinite 2.1s;
}

.training-zones-section .sport-volleyball {
    width: 52px;
    left: 5%;
    bottom: 18%;
    animation: apexBallFloat 8.5s ease-in-out infinite .5s;
}

.training-zones-section .sport-shuttlecock {
    width: 62px;
    right: 5%;
    bottom: 18%;
    animation: apexShuttleFloat 8s ease-in-out infinite 2.4s;
}

.training-zones-section .sport-tennis-ball {
    width: 34px;
    left: 26%;
    bottom: 10%;
    animation: apexBallFloat 6.5s ease-in-out infinite 1.7s;
}

.training-zones-section .sport-cricket-ball {
    width: 36px;
    right: 27%;
    bottom: 11%;
    animation: apexBallFloat 7s ease-in-out infinite 3s;
}

.training-zones-section .sport-basketball-two {
    width: 39px;
    right: 31%;
    top: 12%;
    animation: apexBallFloat 7.5s ease-in-out infinite 2.7s;
}


/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

@keyframes apexBatFloat {

    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-18deg);
    }

    25% {
        transform: translate3d(16px, -14px, 0) rotate(-8deg);
    }

    50% {
        transform: translate3d(30px, 8px, 0) rotate(-25deg);
    }

    75% {
        transform: translate3d(10px, 22px, 0) rotate(-10deg);
    }
}

@keyframes apexRacketFloat {

    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(18deg);
    }

    25% {
        transform: translate3d(-16px, 14px, 0) rotate(8deg);
    }

    50% {
        transform: translate3d(-30px, -8px, 0) rotate(28deg);
    }

    75% {
        transform: translate3d(-10px, -20px, 0) rotate(12deg);
    }
}

@keyframes apexBallFloat {

    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(18px, -24px, 0) rotate(180deg);
    }
}

@keyframes apexShuttleFloat {

    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-14deg);
    }

    50% {
        transform: translate3d(-22px, -28px, 0) rotate(12deg);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .training-zones-section .sport-cricket-bat {
        width: 90px;
        left: -22px;
    }

    .training-zones-section .sport-tennis-racket {
        width: 105px;
        right: -25px;
    }

    .training-zones-section .sport-basketball {
        left: 7%;
    }

    .training-zones-section .sport-football {
        right: 7%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .training-zones-section .sport-float {
        opacity: .065;
    }

    .training-zones-section .sport-cricket-bat {
        width: 68px;
        left: -18px;
    }

    .training-zones-section .sport-tennis-racket {
        width: 78px;
        right: -18px;
    }

    .training-zones-section .sport-basketball,
    .training-zones-section .sport-football,
    .training-zones-section .sport-volleyball,
    .training-zones-section .sport-basketball-two {
        width: 32px;
    }

    .training-zones-section .sport-shuttlecock {
        width: 42px;
    }

    .training-zones-section .sport-tennis-ball,
    .training-zones-section .sport-cricket-ball {
        width: 24px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .training-zones-section .sport-float {
        animation: none !important;
    }
}
/* =========================================================
   ATHLETE BLUEPRINT
========================================================= */

.apex-about-page .aa-blueprint-section {
    position: relative;
    padding: 115px 0;
    background: #f5fbff;
    overflow: hidden;
}

.apex-about-page .aa-blueprint-section::before {
    content: "APEX";
    position: absolute;
    right: -35px;
    top: 55px;

    font-size: 170px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -8px;

    color: rgba(21,158,227,.035);
    pointer-events: none;
}


.apex-about-page .aa-blueprint-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.apex-about-page .aa-blueprint-heading h2 {
    max-width: 650px;
    margin-top: 15px;
    font-size: clamp(42px,5vw,70px);
    line-height: .98;
    letter-spacing: -3px;
}

.apex-about-page .aa-blueprint-heading h2 span {
    display: block;
    color: #159ee3;
}

.apex-about-page .aa-blueprint-heading p {
    max-width: 520px;
    margin-left: auto;
    color: #71818e;
    font-size: 14px;
    line-height: 1.9;
}


/* MAIN LAYOUT */

.apex-about-page .aa-blueprint-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 20px;
    align-items: stretch;
}


/* BIG CARD */

.apex-about-page .aa-blueprint-main {
    position: relative;
    min-height: 560px;
    padding: 55px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            rgba(5,25,39,.98),
            rgba(7,52,76,.96)
        );

    border-radius: 24px;
    color: #fff;
}

.apex-about-page .aa-blueprint-main::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -150px;
    top: -120px;

    border: 1px solid rgba(66,196,245,.2);
    border-radius: 50%;
}

.apex-about-page .aa-blueprint-main::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    top: -50px;

    border: 1px solid rgba(66,196,245,.14);
    border-radius: 50%;
}


.apex-about-page .aa-blueprint-number {
    position: absolute;
    top: 35px;
    left: 40px;

    font-size: 110px;
    line-height: 1;
    font-weight: 900;

    color: rgba(255,255,255,.045);
}


.apex-about-page .aa-blueprint-icon {
    position: absolute;
    top: 45px;
    right: 45px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;

    color: #55c9ff;
    font-size: 20px;

    transition: .5s ease;
}

.apex-about-page .aa-blueprint-main:hover .aa-blueprint-icon {
    transform: rotate(-8deg) scale(1.12);
    background: #159ee3;
    color: #fff;
}


.apex-about-page .aa-blueprint-small {
    position: relative;
    z-index: 2;

    margin-bottom: 15px;

    color: #55c9ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}


.apex-about-page .aa-blueprint-main h3 {
    position: relative;
    z-index: 2;

    max-width: 450px;

    margin: 0 0 20px;

    font-size: clamp(38px,4vw,58px);
    line-height: 1;
    letter-spacing: -2px;
}

.apex-about-page .aa-blueprint-main h3 strong {
    display: block;
    color: #55c9ff;
}


.apex-about-page .aa-blueprint-main p {
    position: relative;
    z-index: 2;

    max-width: 470px;

    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.85;
}


.apex-about-page .aa-blueprint-line {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 2px;

    margin: 30px 0 18px;

    background: #159ee3;

    transition: width .6s ease;
}

.apex-about-page .aa-blueprint-main:hover .aa-blueprint-line {
    width: 140px;
}


.apex-about-page .aa-blueprint-bottom {
    position: relative;
    z-index: 2;

    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.45);
}


/* RIGHT CARDS */

.apex-about-page .aa-blueprint-stack {
    display: grid;
    grid-template-rows: repeat(3,1fr);
    gap: 20px;
}


.apex-about-page .aa-blueprint-card {
    position: relative;

    display: grid;
    grid-template-columns: 75px 1fr 25px;
    gap: 20px;
    align-items: start;

    padding: 32px 35px;

    background: #fff;
    border: 1px solid #dceaf2;
    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        background .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.apex-about-page .aa-blueprint-card:hover {
    transform: translateX(10px);
    background: #071923;
    border-color: #071923;
    box-shadow: 0 25px 50px rgba(7,25,35,.12);
}


.apex-about-page .aa-blueprint-card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apex-about-page .aa-blueprint-card-top span {
    font-size: 12px;
    font-weight: 900;
    color: #159ee3;
}

.apex-about-page .aa-blueprint-card-top i {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 12px;
    background: #eaf8ff;
    color: #159ee3;

    transition: .45s ease;
}

.apex-about-page .aa-blueprint-card:hover .aa-blueprint-card-top i {
    background: #159ee3;
    color: #fff;
    transform: rotate(-8deg);
}


.apex-about-page .aa-blueprint-card > div:nth-child(2) > span {
    display: block;
    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #8a9aa5;

    transition: color .4s ease;
}

.apex-about-page .aa-blueprint-card h3 {
    margin-bottom: 10px;

    font-size: 25px;
    line-height: 1.15;

    transition: color .4s ease;
}

.apex-about-page .aa-blueprint-card p {
    max-width: 560px;

    color: #71818e;
    font-size: 13px;
    line-height: 1.7;

    transition: color .4s ease;
}


.apex-about-page .aa-blueprint-card:hover h3 {
    color: #fff;
}

.apex-about-page .aa-blueprint-card:hover p {
    color: rgba(255,255,255,.65);
}

.apex-about-page .aa-blueprint-card:hover > div:nth-child(2) > span {
    color: #55c9ff;
}


.apex-about-page .aa-blueprint-arrow {
    color: #b8c8d1;
    font-size: 13px;

    transition:
        transform .4s ease,
        color .4s ease;
}

.apex-about-page .aa-blueprint-card:hover .aa-blueprint-arrow {
    color: #55c9ff;
    transform: translate(4px,-4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .apex-about-page .aa-blueprint-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .apex-about-page .aa-blueprint-heading p {
        margin-left: 0;
    }

    .apex-about-page .aa-blueprint-layout {
        grid-template-columns: 1fr;
    }

    .apex-about-page .aa-blueprint-main {
        min-height: 480px;
    }

}


@media (max-width: 700px) {

    .apex-about-page .aa-blueprint-section {
        padding: 80px 0;
    }

    .apex-about-page .aa-blueprint-heading h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .apex-about-page .aa-blueprint-main {
        min-height: 440px;
        padding: 35px;
    }

    .apex-about-page .aa-blueprint-card {
        grid-template-columns: 60px 1fr 20px;
        gap: 15px;
        padding: 25px;
    }

}


@media (max-width: 480px) {

    .apex-about-page .aa-blueprint-heading h2 {
        font-size: 35px;
    }

    .apex-about-page .aa-blueprint-main {
        min-height: 430px;
        padding: 28px;
        border-radius: 18px;
    }

    .apex-about-page .aa-blueprint-number {
        left: 25px;
        top: 25px;
        font-size: 80px;
    }

    .apex-about-page .aa-blueprint-icon {
        top: 25px;
        right: 25px;
        width: 48px;
        height: 48px;
    }

    .apex-about-page .aa-blueprint-main h3 {
        font-size: 36px;
    }

    .apex-about-page .aa-blueprint-card {
        grid-template-columns: 1fr 20px;
        padding: 24px;
    }

    .apex-about-page .aa-blueprint-card-top {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .apex-about-page .aa-blueprint-card-top i {
        width: 42px;
        height: 42px;
    }

}
/* =========================================================
   PROGRAMS HERO — CENTER CONTENT
========================================================= */

.apex-programs-page .ap-program-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #062b45;
}


/* BACKGROUND IMAGE */

.apex-programs-page .ap-program-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,25,40,.78),
            rgba(5,52,78,.55),
            rgba(8,103,143,.55)
        ),
        url("../images/programs-banner.jpg") center center / cover no-repeat;
}


/* GRID */

.apex-programs-page .ap-program-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;

    opacity: .07;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}


/* RINGS */

.apex-programs-page .ap-program-ring {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(78,207,255,.20);
    border-radius: 50%;
    pointer-events: none;
}


/* HERO INNER */

.apex-programs-page .ap-program-hero-inner {
    position: relative;
    z-index: 5;

    width: 100%;
    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 25px;
}


/* MAIN CONTENT */

.apex-programs-page .ap-program-hero-content {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* EYEBROW */

.apex-programs-page .ap-program-hero-content .ap-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    text-align: center;
}


/* TITLE */

.apex-programs-page .ap-program-hero-content h1 {
    width: 100%;
    max-width: 800px;

    margin: 0 auto 18px;

    text-align: center;

    color: #fff;

    font-size: clamp(45px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}


.apex-programs-page .ap-program-hero-content h1 strong {
    display: block;
    color: #42c4f5;
}


/* DESCRIPTION */

.apex-programs-page .ap-program-hero-content p {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    text-align: center;

    color: rgba(255,255,255,.78);

    font-size: 15px;
    line-height: 1.8;
}


/* HIDE COUNT FROM CENTER AREA */

.apex-programs-page .ap-hero-program-count {
    position: absolute;

    right: 30px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 6;
}


/* BOTTOM TEXT */

.apex-programs-page .ap-hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 22px;

    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    color: rgba(255,255,255,.65);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .apex-programs-page .ap-program-hero {
        min-height: 390px;
    }

    .apex-programs-page .ap-program-hero-inner {
        min-height: 390px;
        padding: 35px 25px;
    }

    .apex-programs-page .ap-program-hero-content {
        max-width: 700px;
    }

    .apex-programs-page .ap-program-hero-content h1 {
        font-size: 52px;
    }

    .apex-programs-page .ap-hero-program-count {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .apex-programs-page .ap-program-hero {
        min-height: 380px;
    }

    .apex-programs-page .ap-program-hero-inner {
        min-height: 380px;
        padding: 30px 18px 55px;
    }

    .apex-programs-page .ap-program-hero-content {
        max-width: 100%;
    }

    .apex-programs-page .ap-program-hero-content h1 {
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .apex-programs-page .ap-program-hero-content p {
        max-width: 500px;
        font-size: 14px;
        line-height: 1.7;
    }

    .apex-programs-page .ap-hero-bottom {
        bottom: 14px;
        padding: 0 18px;
    }

    .apex-programs-page .ap-hero-bottom span {
        font-size: 8px;
        letter-spacing: 1.3px;
    }

}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .apex-programs-page .ap-program-hero {
        min-height: 360px;
    }

    .apex-programs-page .ap-program-hero-inner {
        min-height: 360px;
    }

    .apex-programs-page .ap-program-hero-content h1 {
        font-size: 36px;
    }

    .apex-programs-page .ap-program-hero-content p {
        font-size: 13px;
    }

    .apex-programs-page .ap-hero-bottom span:last-child {
        display: none;
    }

}

/* =========================================================
   WHAT YOU'LL LEARN
   PREMIUM BENTO SKILL SECTION
========================================================= */

.apex-programs-page .ap-learn-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #f4fbff;
}

.apex-programs-page .ap-learn-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(21, 158, 227, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(21, 158, 227, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


/* Header */

.apex-programs-page .ap-learn-header {
    position: relative;
    max-width: 760px;
    margin-bottom: 55px;
}

.apex-programs-page .ap-learn-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #159ee3;
}

.apex-programs-page .ap-learn-kicker span {
    width: 32px;
    height: 2px;
    background: #159ee3;
}

.apex-programs-page .ap-learn-header h2 {
    margin: 0 0 20px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -3px;
    color: #101820;
}

.apex-programs-page .ap-learn-header h2 strong {
    color: #159ee3;
}

.apex-programs-page .ap-learn-header p {
    max-width: 680px;

    margin: 0;

    font-size: 15px;
    line-height: 1.9;
    color: #718092;
}


/* Grid */

.apex-programs-page .ap-learn-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* Cards */

.apex-programs-page .ap-learn-card {
    position: relative;

    min-height: 285px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid #dceaf2;
    background: #ffffff;

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.apex-programs-page .ap-learn-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 55px rgba(20, 80, 110, .12);
    border-color: rgba(21, 158, 227, .35);
}


/* Large */

.apex-programs-page .ap-learn-large {
    grid-column: span 2;
    grid-row: span 2;

    min-height: 585px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #eefaff 100%
        );
}


/* Wide */

.apex-programs-page .ap-learn-wide {
    grid-column: span 2;

    min-height: 230px;

    flex-direction: row;
    align-items: flex-end;
    gap: 35px;
}


/* Dark */

.apex-programs-page .ap-learn-dark {
    background: #082f49;
    border-color: #082f49;
}

.apex-programs-page .ap-learn-dark h3,
.apex-programs-page .ap-learn-dark p {
    color: #ffffff;
}

.apex-programs-page .ap-learn-dark .ap-learn-number {
    color: rgba(255,255,255,.4);
}

.apex-programs-page .ap-learn-dark .ap-learn-icon {
    background: rgba(255,255,255,.1);
    color: #ffffff;
}


/* Highlight */

.apex-programs-page .ap-learn-highlight {
    background: #159ee3;
    border-color: #159ee3;
}

.apex-programs-page .ap-learn-highlight h3,
.apex-programs-page .ap-learn-highlight p {
    color: #ffffff;
}

.apex-programs-page .ap-learn-highlight .ap-learn-number {
    color: rgba(255,255,255,.55);
}

.apex-programs-page .ap-learn-highlight .ap-learn-icon {
    background: rgba(255,255,255,.16);
    color: #ffffff;
}


/* Card top */

.apex-programs-page .ap-learn-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.apex-programs-page .ap-learn-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #9badb9;
}


/* Icon */

.apex-programs-page .ap-learn-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    background: #eaf8ff;
    color: #159ee3;

    font-size: 19px;

    transition:
        transform .4s ease,
        border-radius .4s ease;
}

.apex-programs-page .ap-learn-card:hover .ap-learn-icon {
    transform: rotate(-8deg) scale(1.08);
    border-radius: 50%;
}


/* Content */

.apex-programs-page .ap-learn-card h3 {
    margin: 25px 0 12px;

    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.7px;
    color: #101820;
}

.apex-programs-page .ap-learn-card p {
    margin: 0;

    max-width: 430px;

    font-size: 14px;
    line-height: 1.8;
    color: #718092;
}


/* Large typography */

.apex-programs-page .ap-learn-large h3 {
    font-size: clamp(34px, 4vw, 52px);
    max-width: 450px;
}

.apex-programs-page .ap-learn-large p {
    max-width: 500px;
    font-size: 15px;
}


/* Arrow */

.apex-programs-page .ap-learn-arrow {
    position: absolute;

    right: 28px;
    bottom: 28px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid #dceaf2;

    color: #159ee3;

    transition:
        transform .35s ease,
        background .35s ease;
}

.apex-programs-page .ap-learn-card:hover .ap-learn-arrow {
    transform: translate(4px, -4px);
    background: #ffffff;
}


/* Bottom line */

.apex-programs-page .ap-learn-line {
    width: 0;
    height: 2px;

    margin-top: 25px;

    background: #159ee3;

    transition: width .5s ease;
}

.apex-programs-page .ap-learn-card:hover .ap-learn-line {
    width: 55px;
}


/* Tag */

.apex-programs-page .ap-learn-tag {
    display: inline-block;

    margin-top: 22px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,.75);
}


/* Responsive */

@media (max-width: 1000px) {

    .apex-programs-page .ap-learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-programs-page .ap-learn-large {
        grid-column: span 2;
        min-height: 430px;
    }

    .apex-programs-page .ap-learn-wide {
        grid-column: span 2;
    }

}

@media (max-width: 650px) {

    .apex-programs-page .ap-learn-section {
        padding: 80px 0;
    }

    .apex-programs-page .ap-learn-header {
        margin-bottom: 35px;
    }

    .apex-programs-page .ap-learn-header h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .apex-programs-page .ap-learn-grid {
        grid-template-columns: 1fr;
    }

    .apex-programs-page .ap-learn-large,
    .apex-programs-page .ap-learn-wide {
        grid-column: span 1;
    }

    .apex-programs-page .ap-learn-card {
        min-height: 270px;
    }

    .apex-programs-page .ap-learn-large {
        min-height: 390px;
    }

    .apex-programs-page .ap-learn-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}
/* =========================================================
   ABOUT PAGE
   A WEEK AT APEX
========================================================= */

.apex-about-page .ap-week-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #062b45;
    color: #ffffff;
}


/* Background glow */

.apex-about-page .ap-week-glow {
    position: absolute;
    width: 650px;
    height: 650px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(66, 196, 245, 0.18),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.apex-about-page .ap-week-header {
    position: relative;
    margin-bottom: 65px;
}

.apex-about-page .ap-week-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;

    color: #42c4f5;
}

.apex-about-page .ap-week-kicker span {
    width: 32px;
    height: 2px;
    background: #42c4f5;
}


.apex-about-page .ap-week-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}


.apex-about-page .ap-week-heading-row h2 {
    margin: 0;

    max-width: 600px;

    font-size: clamp(48px, 6vw, 76px);
    line-height: .94;
    letter-spacing: -4px;

    color: #ffffff;
}


.apex-about-page .ap-week-heading-row h2 strong {
    display: block;
    color: #42c4f5;
}


.apex-about-page .ap-week-heading-row p {
    max-width: 450px;

    margin: 0 0 5px;

    font-size: 14px;
    line-height: 1.9;

    color: rgba(255,255,255,.65);
}


/* =========================================================
   WEEK TIMELINE
========================================================= */

.apex-about-page .ap-week-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}


/* Connecting line */

.apex-about-page .ap-week-timeline::before {
    content: "";

    position: absolute;

    top: 82px;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(66,196,245,.7),
            transparent
        );

    z-index: 0;
}


/* =========================================================
   DAY CARD
========================================================= */

.apex-about-page .ap-week-day {
    position: relative;

    min-height: 475px;

    padding: 25px 25px 28px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid rgba(255,255,255,.1);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.025),
            transparent
        );

    transition:
        background .4s ease,
        transform .4s ease;
}


.apex-about-page .ap-week-day:last-child {
    border-right: none;
}


.apex-about-page .ap-week-day:hover {
    background: rgba(66,196,245,.07);
    transform: translateY(-6px);
}


/* =========================================================
   DAY TOP
========================================================= */

.apex-about-page .ap-week-day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}


.apex-about-page .ap-week-day-name {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    color: rgba(255,255,255,.5);
}


.apex-about-page .ap-week-day-number {
    font-size: 11px;
    font-weight: 800;

    color: #42c4f5;
}


/* =========================================================
   ICON
========================================================= */

.apex-about-page .ap-week-day-icon {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    margin-bottom: 70px;

    border: 1px solid rgba(66,196,245,.4);

    background: #062b45;

    color: #42c4f5;

    font-size: 20px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        border-radius .4s ease;
}


.apex-about-page .ap-week-day:hover .ap-week-day-icon {
    transform: rotate(8deg) scale(1.08);

    background: #159ee3;
    color: #ffffff;

    border-radius: 50%;
}


/* =========================================================
   CONTENT
========================================================= */

.apex-about-page .ap-week-day-content {
    margin-top: auto;
}


.apex-about-page .ap-week-day-content > span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;

    color: #42c4f5;
}


.apex-about-page .ap-week-day-content h3 {
    margin: 12px 0 15px;

    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.6px;

    color: #ffffff;
}


.apex-about-page .ap-week-day-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.8;

    color: rgba(255,255,255,.58);
}


/* =========================================================
   DURATION
========================================================= */

.apex-about-page .ap-week-duration {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;
    padding-top: 17px;

    border-top: 1px solid rgba(255,255,255,.1);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.45);
}


.apex-about-page .ap-week-duration i {
    color: #42c4f5;
}


/* =========================================================
   FOCUS DAY
========================================================= */

.apex-about-page .ap-week-focus {
    background:
        linear-gradient(
            180deg,
            rgba(21,158,227,.15),
            rgba(21,158,227,.025)
        );
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.apex-about-page .ap-week-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 50px;
}


.apex-about-page .ap-week-bottom-label {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    color: rgba(255,255,255,.4);
}


.apex-about-page .ap-week-bottom strong {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.5px;

    color: #ffffff;
}


.apex-about-page .ap-week-bottom strong span {
    color: #42c4f5;
}


/* =========================================================
   STATUS
========================================================= */

.apex-about-page .ap-week-status {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    border: 1px solid rgba(255,255,255,.13);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.5);
}


.apex-about-page .ap-week-status i {
    font-size: 6px;
    color: #42c4f5;

    animation: aaWeekPulse 1.8s infinite;
}


@keyframes aaWeekPulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .apex-about-page .ap-week-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .apex-about-page .ap-week-day {
        min-height: 400px;
    }

    .apex-about-page .ap-week-day:nth-child(2n) {
        border-right: none;
    }

    .apex-about-page .ap-week-day:nth-child(n + 3) {
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .apex-about-page .ap-week-timeline::before {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .apex-about-page .ap-week-section {
        padding: 85px 0;
    }

    .apex-about-page .ap-week-heading-row {
        display: block;
    }

    .apex-about-page .ap-week-heading-row h2 {
        font-size: 50px;
        letter-spacing: -2.5px;

        margin-bottom: 25px;
    }

    .apex-about-page .ap-week-heading-row p {
        max-width: 100%;
    }

    .apex-about-page .ap-week-timeline {
        grid-template-columns: 1fr;
    }

    .apex-about-page .ap-week-day,
    .apex-about-page .ap-week-day:nth-child(2n) {

        min-height: 350px;

        border-right: none;
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .apex-about-page .ap-week-day:first-child {
        border-top: none;
    }

    .apex-about-page .ap-week-day-icon {
        margin-bottom: 45px;
    }

    .apex-about-page .ap-week-bottom {
        display: block;
    }

    .apex-about-page .ap-week-status {
        width: fit-content;
        margin-top: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .apex-about-page .ap-week-heading-row h2 {
        font-size: 42px;
    }

    .apex-about-page .ap-week-day {
        padding: 22px;
    }

    .apex-about-page .ap-week-bottom strong {
        font-size: 19px;
        line-height: 1.4;
    }

}
/* =====================================================
   COACHES HERO - CONTENT ONLY CENTER
   Does not affect banner, bottom text or other sections
===================================================== */

.apex-coaches-page .coaches-hero {
    position: relative;
}

.apex-coaches-page .coaches-hero .apex-coaches-container {
    position: relative;
}

/* Main banner content ONLY */
.apex-coaches-page .coaches-hero .coaches-hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(850px, calc(100% - 40px));

    margin: 0;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 5;
}

/* Eyebrow */
.apex-coaches-page .coaches-hero .coaches-eyebrow {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Heading */
.apex-coaches-page .coaches-hero .coaches-hero-content h1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Heading second line */
.apex-coaches-page .coaches-hero .coaches-hero-content h1 span {
    display: block;
}

/* Description */
.apex-coaches-page .coaches-hero .coaches-hero-content p {
    width: 100%;
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .apex-coaches-page .coaches-hero .coaches-hero-content {
        width: calc(100% - 35px);
    }

}


@media (max-width: 480px) {

    .apex-coaches-page .coaches-hero .coaches-hero-content {
        width: calc(100% - 28px);
    }

}
/* =====================================================
   COACHES BANNER - HEIGHT ONLY
===================================================== */

.apex-coaches-page .coaches-hero {
    min-height: 550px;
}

.apex-coaches-page .coaches-hero .apex-coaches-container {
    min-height: 550px;
}
.facilities-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.apex-facilities-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.facilities-hero .apex-facilities-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.facilities-hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.facilities-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.facilities-hero-content h1 {
    margin: 0 auto 20px;
    text-align: center;
}

.facilities-hero-content h1 span {
    display: block;
}

.facilities-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.facilities-hero-bottom {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}
/* =====================================================
   SCHEDULE BANNER
   CONTENT ONLY - EXACT CENTER
===================================================== */

.apex-schedule-page .schedule-hero .schedule-hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    transform: translate(-50%, -50%) !important;

    width: 90% !important;
    max-width: 850px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 5 !important;
}

/* Eyebrow only */
.apex-schedule-page .schedule-hero .schedule-eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Heading only */
.apex-schedule-page .schedule-hero .schedule-hero-content h1 {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Heading second line */
.apex-schedule-page .schedule-hero .schedule-hero-content h1 span {
    display: block;
}

/* Paragraph only */
.apex-schedule-page .schedule-hero .schedule-hero-content p {
    width: 100% !important;
    max-width: 650px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}


/* =====================================================
   MOBILE — CONTENT ONLY
===================================================== */

@media (max-width: 768px) {

    .apex-schedule-page .schedule-hero .schedule-hero-content {
        width: 92% !important;
    }

}


@media (max-width: 480px) {

    .apex-schedule-page .schedule-hero .schedule-hero-content {
        width: 94% !important;
    }

}
/* =====================================================
   SCHEDULE BANNER - HEIGHT ONLY
===================================================== */

.apex-schedule-page .schedule-hero {
    min-height: 550px !important;
}

.apex-schedule-page .schedule-hero .apex-schedule-container {
    min-height: 550px !important;
}
/* =========================================================
   CONTACT FORM VALIDATION
   LOGIN / REGISTER STYLE ERROR
========================================================= */

.apex-contact-page .ac-form-group {
    position: relative;
}


/* INPUT ERROR */

.apex-contact-page .ac-form-group.has-error .ac-input {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.10) !important;
}


/* ERROR ICON */

.apex-contact-page .ac-form-group.has-error
.ac-input > i:first-child {
    color: #e53935 !important;
}


/* ERROR MESSAGE */

.apex-contact-page .ac-error-message {
    display: none;
    width: 100%;
    margin: 7px 0 0;
    padding: 0;
    color: #e53935;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}


/* SHOW ERROR */

.apex-contact-page .ac-form-group.has-error
.ac-error-message {
    display: block;
}


/* SELECT ERROR */

.apex-contact-page .ac-form-group.has-error
.ac-select .ac-select-arrow {
    color: #e53935 !important;
}


/* TEXTAREA ERROR */

.apex-contact-page .ac-form-group.has-error
.ac-textarea {
    border-color: #e53935 !important;
}


/* CHECKBOX AREA */

.apex-contact-page .ac-checkbox-wrapper {
    width: 100%;
    margin-top: 4px;
}

.apex-contact-page .ac-checkbox-wrapper
.ac-error-message {
    margin-left: 29px;
}


/* CHECKBOX ERROR */

.apex-contact-page .ac-checkbox-wrapper.has-error
.ac-checkmark {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.10);
}


/* STATUS MESSAGE */

.apex-contact-page .ac-form-status {
    width: 100%;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.apex-contact-page .ac-form-status.success {
    color: #159ee3;
}

.apex-contact-page .ac-form-status.error {
    color: #e53935;
}


/* SUCCESS INPUT */

.apex-contact-page .ac-form-group.is-valid
.ac-input {
    border-color: #159ee3 !important;
}


/* REMOVE DEFAULT OUTLINE */

.apex-contact-page .ac-contact-form input:focus,
.apex-contact-page .ac-contact-form select:focus,
.apex-contact-page .ac-contact-form textarea:focus {
    outline: none;
}


/* MOBILE */

@media (max-width: 700px) {

    .apex-contact-page .ac-error-message {
        font-size: 11px;
        margin-top: 6px;
    }

    .apex-contact-page .ac-checkbox-wrapper
    .ac-error-message {
        margin-left: 0;
    }

}
/* =========================================================
   APEX ATHLETE BLUEPRINT
========================================================= */

.apex-programs-page .ap-blueprint-section {
    position: relative;
    padding: 65px 0;

    background: #f4fbfe;

    overflow: hidden;
}


/* subtle background circle */

.apex-programs-page .ap-blueprint-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -220px;

    border: 70px solid rgba(22, 169, 220, .035);

    border-radius: 50%;
}


/* =========================================================
   CONTAINER
========================================================= */

.apex-programs-page .ap-blueprint-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: auto;

    display: grid;

    grid-template-columns: .8fr 1.4fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.apex-programs-page .ap-blueprint-intro {
    padding-right: 20px;
}


.apex-programs-page .ap-blueprint-label {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #119ed3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


.apex-programs-page .ap-blueprint-label i {
    font-size: 11px;
}


.apex-programs-page .ap-blueprint-intro h2 {
    margin: 0;

    color: #062d46;

    font-size: clamp(38px, 4vw, 58px);

    line-height: .98;

    letter-spacing: -2.5px;
}


.apex-programs-page .ap-blueprint-intro h2 strong {
    display: block;

    color: #119ed3;
}


.apex-programs-page .ap-blueprint-intro p {
    max-width: 430px;

    margin: 20px 0 25px;

    color: #6b808d;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   STAT
========================================================= */

.apex-programs-page .ap-blueprint-stat {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}


.apex-programs-page .ap-blueprint-stat strong {
    color: #062d46;

    font-size: 45px;

    line-height: 1;

    letter-spacing: -2px;
}


.apex-programs-page .ap-blueprint-stat span {
    color: #8195a0;

    font-size: 9px;

    font-weight: 800;

    line-height: 1.5;

    letter-spacing: 1.5px;
}


.apex-programs-page .ap-blueprint-line {
    width: 75px;
    height: 2px;

    margin-bottom: 10px;

    background: #119ed3;
}


.apex-programs-page .ap-blueprint-intro small {
    color: #91a3ad;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   SKILL LIST
========================================================= */

.apex-programs-page .ap-blueprint-skills {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #d6e8ef;
    border-left: 1px solid #d6e8ef;
}


/* =========================================================
   SKILL ROW
========================================================= */

.apex-programs-page .ap-blueprint-skill {
    position: relative;

    min-height: 105px;

    display: grid;

    grid-template-columns: 30px 42px 1fr 28px;

    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    background: #fff;

    border-right: 1px solid #d6e8ef;
    border-bottom: 1px solid #d6e8ef;

    transition:
        background .3s ease,
        transform .3s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.apex-programs-page .bp-number {
    color: #a4b7c0;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.apex-programs-page .bp-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #effaff;

    color: #119ed3;

    font-size: 14px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.apex-programs-page .bp-content h3 {
    margin: 0 0 4px;

    color: #08344d;

    font-size: 14px;

    line-height: 1.2;

    letter-spacing: -.2px;
}


.apex-programs-page .bp-content p {
    margin: 0;

    color: #7b8d98;

    font-size: 10.5px;

    line-height: 1.45;
}


/* =========================================================
   ARROW
========================================================= */

.apex-programs-page .bp-arrow {
    width: 26px;
    height: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d9eaf1;

    border-radius: 50%;

    color: #9aafb9;

    font-size: 8px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.apex-programs-page .ap-blueprint-skill:hover {
    background: #062d46;

    transform: translateY(-3px);

    z-index: 5;

    box-shadow: 0 15px 35px rgba(5, 48, 72, .14);
}


.apex-programs-page .ap-blueprint-skill:hover .bp-number {
    color: rgba(255,255,255,.45);
}


.apex-programs-page .ap-blueprint-skill:hover .bp-icon {
    background: #119ed3;

    color: #fff;

    transform: scale(1.08);
}


.apex-programs-page .ap-blueprint-skill:hover .bp-content h3 {
    color: #fff;
}


.apex-programs-page .ap-blueprint-skill:hover .bp-content p {
    color: rgba(255,255,255,.55);
}


.apex-programs-page .ap-blueprint-skill:hover .bp-arrow {
    background: #119ed3;

    border-color: #119ed3;

    color: #fff;

    transform: translateX(3px);
}


/* =========================================================
   FINAL SKILL
========================================================= */

.apex-programs-page .ap-blueprint-skill.bp-final {
    background: #119ed3;
}


.apex-programs-page .bp-final .bp-number {
    color: rgba(255,255,255,.55);
}


.apex-programs-page .bp-final .bp-icon {
    background: rgba(255,255,255,.13);

    color: #fff;

    border: 1px solid rgba(255,255,255,.15);
}


.apex-programs-page .bp-final .bp-content h3 {
    color: #fff;
}


.apex-programs-page .bp-final .bp-content p {
    color: rgba(255,255,255,.65);
}


.apex-programs-page .bp-final .bp-arrow {
    color: #fff;

    border-color: rgba(255,255,255,.3);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .apex-programs-page .ap-blueprint-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .apex-programs-page .ap-blueprint-intro {
        text-align: center;

        padding: 0;
    }

    .apex-programs-page .ap-blueprint-label {
        justify-content: center;
    }

    .apex-programs-page .ap-blueprint-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .apex-programs-page .ap-blueprint-stat {
        justify-content: center;
    }

    .apex-programs-page .ap-blueprint-line {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .apex-programs-page .ap-blueprint-section {
        padding: 55px 0;
    }

    .apex-programs-page .ap-blueprint-container {
        width: calc(100% - 24px);

        gap: 30px;
    }

    .apex-programs-page .ap-blueprint-intro h2 {
        font-size: 38px;
    }

    .apex-programs-page .ap-blueprint-intro p {
        font-size: 12px;
    }

    .apex-programs-page .ap-blueprint-skills {
        grid-template-columns: 1fr;
    }

    .apex-programs-page .ap-blueprint-skill {
        min-height: 90px;

        grid-template-columns: 28px 40px 1fr 25px;

        gap: 10px;

        padding: 13px;
    }

    .apex-programs-page .bp-icon {
        width: 38px;
        height: 38px;
    }

    .apex-programs-page .bp-content h3 {
        font-size: 13px;
    }

    .apex-programs-page .bp-content p {
        font-size: 10px;
    }
}


@media (max-width: 400px) {

    .apex-programs-page .ap-blueprint-skill {
        grid-template-columns: 25px 36px 1fr;

        padding: 12px 10px;
    }

    .apex-programs-page .bp-arrow {
        display: none;
    }
}
/* =========================================================
   APEX ATHLETE BLUEPRINT — DARK MODE
========================================================= */

html.dark-mode .apex-programs-page .ap-blueprint-section,
body.dark-mode .apex-programs-page .ap-blueprint-section {
    background: #06151f;
}


/* Background circle */

html.dark-mode .apex-programs-page .ap-blueprint-section::before,
body.dark-mode .apex-programs-page .ap-blueprint-section::before {
    border-color: rgba(57, 197, 243, .035);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

html.dark-mode .apex-programs-page .ap-blueprint-intro h2,
body.dark-mode .apex-programs-page .ap-blueprint-intro h2 {
    color: #ffffff;
}

html.dark-mode .apex-programs-page .ap-blueprint-intro h2 strong,
body.dark-mode .apex-programs-page .ap-blueprint-intro h2 strong {
    color: #39c5f3;
}

html.dark-mode .apex-programs-page .ap-blueprint-intro p,
body.dark-mode .apex-programs-page .ap-blueprint-intro p {
    color: rgba(255,255,255,.60);
}

html.dark-mode .apex-programs-page .ap-blueprint-stat strong,
body.dark-mode .apex-programs-page .ap-blueprint-stat strong {
    color: #ffffff;
}

html.dark-mode .apex-programs-page .ap-blueprint-stat span,
body.dark-mode .apex-programs-page .ap-blueprint-stat span {
    color: rgba(255,255,255,.45);
}

html.dark-mode .apex-programs-page .ap-blueprint-intro small,
body.dark-mode .apex-programs-page .ap-blueprint-intro small {
    color: rgba(255,255,255,.40);
}


/* =========================================================
   SKILL GRID
========================================================= */

html.dark-mode .apex-programs-page .ap-blueprint-skills,
body.dark-mode .apex-programs-page .ap-blueprint-skills {
    border-top-color: rgba(255,255,255,.10);
    border-left-color: rgba(255,255,255,.10);
}


/* =========================================================
   SKILL ROWS
========================================================= */

html.dark-mode .apex-programs-page .ap-blueprint-skill,
body.dark-mode .apex-programs-page .ap-blueprint-skill {
    background: #0b202d;

    border-right-color: rgba(255,255,255,.10);
    border-bottom-color: rgba(255,255,255,.10);
}


/* Number */

html.dark-mode .apex-programs-page .bp-number,
body.dark-mode .apex-programs-page .bp-number {
    color: rgba(255,255,255,.35);
}


/* Icon */

html.dark-mode .apex-programs-page .bp-icon,
body.dark-mode .apex-programs-page .bp-icon {
    background: rgba(57,197,243,.08);

    color: #39c5f3;
}


/* Title */

html.dark-mode .apex-programs-page .bp-content h3,
body.dark-mode .apex-programs-page .bp-content h3 {
    color: #ffffff;
}


/* Description */

html.dark-mode .apex-programs-page .bp-content p,
body.dark-mode .apex-programs-page .bp-content p {
    color: rgba(255,255,255,.50);
}


/* Arrow */

html.dark-mode .apex-programs-page .bp-arrow,
body.dark-mode .apex-programs-page .bp-arrow {
    border-color: rgba(255,255,255,.12);

    color: rgba(255,255,255,.45);
}


/* =========================================================
   HOVER
========================================================= */

html.dark-mode .apex-programs-page .ap-blueprint-skill:hover,
body.dark-mode .apex-programs-page .ap-blueprint-skill:hover {
    background: #0e3448;

    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

html.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-number,
body.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-number {
    color: rgba(255,255,255,.50);
}

html.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-icon,
body.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-icon {
    background: #119ed3;

    color: #ffffff;
}

html.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-content h3,
body.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-content h3 {
    color: #ffffff;
}

html.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-content p,
body.dark-mode .apex-programs-page .ap-blueprint-skill:hover .bp-content p {
    color: rgba(255,255,255,.62);
}


/* =========================================================
   FINAL BLUE CARD
========================================================= */

html.dark-mode .apex-programs-page .ap-blueprint-skill.bp-final,
body.dark-mode .apex-programs-page .ap-blueprint-skill.bp-final {
    background: #087fae;
}

html.dark-mode .apex-programs-page .bp-final .bp-content h3,
body.dark-mode .apex-programs-page .bp-final .bp-content h3 {
    color: #ffffff;
}

html.dark-mode .apex-programs-page .bp-final .bp-content p,
body.dark-mode .apex-programs-page .bp-final .bp-content p {
    color: rgba(255,255,255,.70);
}
/* =========================================================
   FACILITY EXPLORER
========================================================= */

.apex-facilities-page .facility-explorer {
    position: relative;
    padding: 75px 0 65px;

    background: #f7fcfe;

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.apex-facilities-page .facility-explorer-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 38px;
}


.apex-facilities-page .facility-head-title {
    max-width: 600px;
}


.apex-facilities-page .facility-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #149fd3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


.apex-facilities-page .facility-head-title h2 {
    margin: 0;

    color: #062d46;

    font-size: clamp(40px, 5vw, 64px);

    line-height: .95;

    letter-spacing: -3px;
}


.apex-facilities-page .facility-head-title h2 span {
    color: #149fd3;
}


/* right info */

.apex-facilities-page .facility-head-info {
    max-width: 350px;

    display: flex;
    align-items: flex-start;

    gap: 18px;
}


.apex-facilities-page .facility-count {
    color: #149fd3;

    font-size: 42px;
    font-weight: 800;

    line-height: .8;
}


.apex-facilities-page .facility-head-info p {
    margin: 0;

    color: #718490;

    font-size: 12.5px;

    line-height: 1.7;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.apex-facilities-page .facility-explorer-layout {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 20px;

    min-height: 570px;
}


/* =========================================================
   MAIN FACILITY
========================================================= */

.apex-facilities-page .facility-main {
    min-width: 0;
}


.apex-facilities-page .facility-main-image {
    position: relative;

    height: 570px;

    overflow: hidden;

    background: #062d46;
}


.apex-facilities-page .facility-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}


.apex-facilities-page .facility-main:hover img {
    transform: scale(1.06);
}


/* overlay */

.apex-facilities-page .facility-main-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(3,26,41,.15),
            rgba(3,26,41,.05) 40%,
            rgba(3,26,41,.88)
        );
}


/* top */

.apex-facilities-page .facility-main-top {
    position: absolute;

    top: 22px;
    left: 22px;
    right: 22px;

    display: flex;
    justify-content: space-between;
}


.apex-facilities-page .facility-main-top span:first-child {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.35);

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}


.apex-facilities-page .facility-main-top span:last-child {
    padding: 8px 12px;

    background: #149fd3;

    color: #fff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* bottom content */

.apex-facilities-page .facility-main-bottom {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;
}


.apex-facilities-page .facility-main-bottom .facility-small-label {
    color: #50cdf4;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.apex-facilities-page .facility-main-bottom h3 {
    margin: 7px 0 8px;

    color: #fff;

    font-size: 34px;

    letter-spacing: -1px;
}


.apex-facilities-page .facility-main-bottom p {
    max-width: 550px;

    margin: 0;

    color: rgba(255,255,255,.70);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   SIDE LIST
========================================================= */

.apex-facilities-page .facility-side-list {
    display: flex;

    flex-direction: column;

    border-top: 1px solid #d9eaf1;
}


.apex-facilities-page .facility-side-item {
    position: relative;

    flex: 1;

    display: grid;

    grid-template-columns: 35px 120px 1fr 30px;

    align-items: center;

    gap: 15px;

    padding: 13px 15px;

    background: #fff;

    border-bottom: 1px solid #d9eaf1;

    overflow: hidden;

    transition:
        background .3s ease,
        padding .3s ease;
}


/* number */

.apex-facilities-page .facility-side-number {
    align-self: flex-start;

    padding-top: 5px;

    color: #a1b5bf;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* image */

.apex-facilities-page .facility-side-image {
    width: 120px;
    height: 92px;

    overflow: hidden;
}


.apex-facilities-page .facility-side-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}


.apex-facilities-page .facility-side-item:hover .facility-side-image img {
    transform: scale(1.1);
}


/* content */

.apex-facilities-page .facility-side-content span {
    color: #149fd3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.apex-facilities-page .facility-side-content h3 {
    margin: 5px 0 5px;

    color: #07324b;

    font-size: 16px;

    line-height: 1.2;
}


.apex-facilities-page .facility-side-content p {
    max-width: 260px;

    margin: 0;

    color: #7a8d98;

    font-size: 10.5px;

    line-height: 1.5;
}


/* arrow */

.apex-facilities-page .facility-side-arrow {
    color: #a3b6bf;

    font-size: 10px;

    transition:
        color .3s ease,
        transform .3s ease;
}


/* hover */

.apex-facilities-page .facility-side-item:hover {
    background: #eefaff;

    padding-left: 22px;
}


.apex-facilities-page .facility-side-item:hover .facility-side-arrow {
    color: #149fd3;

    transform: translate(3px,-3px);
}


/* blue hover line */

.apex-facilities-page .facility-side-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: #149fd3;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform .3s ease;
}


.apex-facilities-page .facility-side-item:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.apex-facilities-page .facility-explorer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 18px;

    padding-top: 14px;

    border-top: 1px solid #d9eaf1;

    color: #8aa0ab;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.apex-facilities-page .facility-explorer-bottom i {
    margin-right: 5px;

    color: #149fd3;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .apex-facilities-page .facility-explorer-head {
        align-items: flex-start;
    }

    .apex-facilities-page .facility-explorer-layout {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .apex-facilities-page .facility-main-image {
        height: 460px;
    }

    .apex-facilities-page .facility-side-list {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        border-top: 1px solid #d9eaf1;
    }

    .apex-facilities-page .facility-side-item {
        grid-template-columns: 30px 1fr;

        display: grid;

        align-content: start;

        gap: 8px;

        padding: 15px;
    }

    .apex-facilities-page .facility-side-image {
        grid-column: 1 / -1;

        width: 100%;
        height: 130px;
    }

    .apex-facilities-page .facility-side-content {
        grid-column: 1 / -1;
    }

    .apex-facilities-page .facility-side-arrow {
        position: absolute;

        right: 15px;
        top: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .apex-facilities-page .facility-explorer {
        padding: 55px 0;
    }

    .apex-facilities-page .facility-explorer-head {
        flex-direction: column;

        gap: 18px;

        margin-bottom: 28px;
    }

    .apex-facilities-page .facility-head-title h2 {
        font-size: 39px;
    }

    .apex-facilities-page .facility-head-info {
        max-width: 100%;
    }

    .apex-facilities-page .facility-count {
        font-size: 34px;
    }

    .apex-facilities-page .facility-main-image {
        height: 380px;
    }

    .apex-facilities-page .facility-main-bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .apex-facilities-page .facility-main-bottom h3 {
        font-size: 27px;
    }

    .apex-facilities-page .facility-side-list {
        grid-template-columns: 1fr;
    }

    .apex-facilities-page .facility-side-item {
        min-height: 105px;

        grid-template-columns: 32px 90px 1fr 25px;

        align-items: center;
    }

    .apex-facilities-page .facility-side-image {
        grid-column: auto;

        width: 90px;
        height: 75px;
    }

    .apex-facilities-page .facility-side-content {
        grid-column: auto;
    }

    .apex-facilities-page .facility-side-content h3 {
        font-size: 14px;
    }

    .apex-facilities-page .facility-side-content p {
        font-size: 9.5px;
    }

    .apex-facilities-page .facility-explorer-bottom {
        display: none;
    }
}
/* =====================================================
   FACILITY SUPPORT SECTIONS
====================================================== */

.apex-facilities-page .facility-support-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.apex-facilities-page .facility-support-section:nth-of-type(even) {
    background: #f5fbff;
}

.apex-facilities-page .facility-support-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.apex-facilities-page .facility-support-header h2,
.apex-facilities-page .facility-support-content h2 {
    margin: 12px 0 0;
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -2.5px;
    color: #082f49;
}

.apex-facilities-page .facility-support-header h2 span,
.apex-facilities-page .facility-support-content h2 span {
    display: block;
    color: #20a9df;
}

.apex-facilities-page .facility-support-header > p {
    max-width: 430px;
    margin: 0;
    color: #607789;
    font-size: 15px;
    line-height: 1.8;
}


/* MAIN IMAGE + CONTENT */

.apex-facilities-page .facility-support-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 65px;
    align-items: center;
}

.apex-facilities-page .reverse-layout {
    grid-template-columns: .9fr 1.1fr;
}

.apex-facilities-page .facility-support-image {
    position: relative;
    height: 470px;
    overflow: hidden;
}

.apex-facilities-page .facility-support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.apex-facilities-page .facility-support-image:hover img {
    transform: scale(1.05);
}

.apex-facilities-page .facility-support-number {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.apex-facilities-page .facility-support-tag {
    position: absolute;
    bottom: 25px;
    left: 25px;
    padding: 9px 14px;
    background: #20a9df;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* NUTRITION ITEMS */

.apex-facilities-page .support-item {
    display: flex;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid #dceaf1;
}

.apex-facilities-page .support-item:first-child {
    border-top: 1px solid #dceaf1;
}

.apex-facilities-page .support-item > span {
    font-size: 12px;
    font-weight: 800;
    color: #20a9df;
    min-width: 25px;
}

.apex-facilities-page .support-item h3 {
    margin: 0 0 7px;
    color: #082f49;
    font-size: 19px;
}

.apex-facilities-page .support-item p {
    margin: 0;
    color: #718595;
    font-size: 14px;
    line-height: 1.7;
}


/* GEAR */

.apex-facilities-page .support-main-text {
    max-width: 540px;
    margin: 25px 0 35px;
    color: #607789;
    font-size: 15px;
    line-height: 1.8;
}

.apex-facilities-page .gear-list {
    display: grid;
    gap: 14px;
}

.apex-facilities-page .gear-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid #dceaf1;
    background: #fff;
    transition: .3s ease;
}

.apex-facilities-page .gear-item:hover {
    transform: translateX(8px);
    border-color: #20a9df;
}

.apex-facilities-page .gear-item i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: #e9f8fe;
    color: #20a9df;
    font-size: 17px;
}

.apex-facilities-page .gear-item h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #082f49;
}

.apex-facilities-page .gear-item p {
    margin: 0;
    color: #718595;
    font-size: 13px;
}


/* EQUIPMENT */

.apex-facilities-page .equipment-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dceaf1;
    border-left: 1px solid #dceaf1;
}

.apex-facilities-page .equipment-card {
    position: relative;
    min-height: 250px;
    padding: 30px 25px;
    border-right: 1px solid #dceaf1;
    border-bottom: 1px solid #dceaf1;
    background: #fff;
    transition: .35s ease;
}

.apex-facilities-page .equipment-card:hover {
    background: #082f49;
    transform: translateY(-6px);
}

.apex-facilities-page .equipment-card > span {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #20a9df;
    font-size: 11px;
    font-weight: 800;
}

.apex-facilities-page .equipment-card i {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 28px;
    color: #20a9df;
}

.apex-facilities-page .equipment-card h3 {
    margin: 0 0 10px;
    color: #082f49;
    font-size: 18px;
}

.apex-facilities-page .equipment-card p {
    margin: 0;
    color: #718595;
    font-size: 13px;
    line-height: 1.7;
}

.apex-facilities-page .equipment-card:hover h3,
.apex-facilities-page .equipment-card:hover p {
    color: #fff;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .apex-facilities-page .facility-support-header {
        display: block;
    }

    .apex-facilities-page .facility-support-header > p {
        margin-top: 25px;
    }

    .apex-facilities-page .facility-support-layout,
    .apex-facilities-page .reverse-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apex-facilities-page .reverse-layout .facility-support-content {
        order: 1;
    }

    .apex-facilities-page .reverse-layout .facility-support-image {
        order: 2;
    }

    .apex-facilities-page .equipment-strip {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .apex-facilities-page .facility-support-section {
        padding: 70px 0;
    }

    .apex-facilities-page .facility-support-header {
        margin-bottom: 35px;
    }

    .apex-facilities-page .facility-support-header h2,
    .apex-facilities-page .facility-support-content h2 {
        font-size: 38px;
    }

    .apex-facilities-page .facility-support-image {
        height: 320px;
    }

    .apex-facilities-page .equipment-strip {
        grid-template-columns: 1fr;
    }

    .apex-facilities-page .equipment-card {
        min-height: 210px;
    }

}
html.dark-mode .site-header .logo,
html.dark-mode .site-header .logo span,
html.dark-mode .site-header .logo i,
html.dark-mode .site-header .logo svg,
body.dark-mode .site-header .logo,
body.dark-mode .site-header .logo span,
body.dark-mode .site-header .logo i,
body.dark-mode .site-header .logo svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}
.asd-dashboard-top {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
}