/* CSS Variables & Theme Definition */
:root {
    /* Brand Colors */
    --primary-red: #E30613;
    --primary-red-hover: #B8050F;
    --deep-black: #1A1A1A;
    --pure-white: #FFFFFF;
    --light-grey: #F5F5F5;
    --medium-grey: #333333;
    --accent-gold: #D4A843;

    /* Typography */
    --font-heading: 'Oswald', 'Bebas Neue', 'Anton', sans-serif;
    --font-body: 'Roboto', 'Open Sans', 'Inter', sans-serif;

    /* Transition & Shadows */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* Base Styles & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--medium-grey);
    background-color: var(--pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Typography Classes */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

/* Accessibility: Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: white;
    padding: 8px;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.35);
    outline-offset: 3px;
}

#about,
#programs,
#international,
#facilities,
#coaches,
#news,
#contact,
#apply {
    scroll-margin-top: 110px;
}

.dark-text {
    color: var(--deep-black);
}

.text-center {
    text-align: center;
}

.mt-m {
    margin-top: var(--space-md);
}

.mt-l {
    margin-top: var(--space-lg);
}

.mobile-only {
    display: none;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--pure-white);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    color: var(--pure-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-ghost {
    display: inline-block;
    background-color: transparent;
    color: var(--pure-white);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--pure-white);
    transition: var(--transition-fast);
}

.btn-ghost:hover {
    background-color: var(--pure-white);
    color: var(--deep-black);
}

.btn-white {
    display: inline-block;
    background-color: var(--pure-white);
    color: var(--primary-red);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 2px solid var(--pure-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--pure-white);
}

/* 1. MAIN NAVIGATION */
.main-header {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all var(--transition-medium);
}

.main-header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo {
    height: 28px;
    width: auto;
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-fast);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 32px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-black);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    color: white;
    font-size: 32px;
}

.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-menu a {
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav-menu a:hover {
    color: var(--primary-red);
}

/* 3. HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--deep-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenburns 20s ease-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(227, 6, 19, 0.85) 0%, rgba(227, 6, 19, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-left: 10%;
    /* Specific requirement */
    color: white;
}

.hero-kicker-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeUpIn 1s ease 0.2s both;
}

.hero-line-accent {
    width: 60px;
    height: 2px;
    background-color: white;
}

.hero-kicker {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 3px;
}

.hero-heading {
    font-size: 72px;
    max-width: 700px;
    margin-bottom: 24px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeUpIn 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 40px;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeUpIn 1s ease 0.6s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUpIn 1s ease 0.8s both;
}

.hero-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--pure-white);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeUpIn 1s ease 0.9s both;
}

.hero-video-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hero-proof-list {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    animation: fadeUpIn 1s ease 1s both;
}

.hero-proof-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. BRAND STATS */
.stats-bar {
    background-color: var(--primary-red);
    padding: var(--space-md) 0;
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number,
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    display: inline-block;
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: -5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* 5. ABOUT SECTION */
.about-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--pure-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
}

.about-image-wrapper img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-geometric-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background-color: var(--light-grey);
    border-left: 5px solid var(--primary-red);
    border-bottom: 5px solid var(--primary-red);
    z-index: 1;
}

.section-label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-label-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-red);
}

.section-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-label.red {
    color: var(--primary-red);
}

.section-label.dark-red {
    color: var(--primary-red);
}

.section-heading {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--deep-black);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--deep-black);
}

.about-features i {
    color: var(--primary-red);
    font-size: 24px;
}

.text-link {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-fast);
}

.text-link:hover::after {
    width: 100%;
}

/* 6. PROGRAMS SECTION */
.programs-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--light-grey);
}

.centered-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-label.centered {
    display: block;
    margin-bottom: 16px;
}

.section-subtext {
    font-size: 18px;
    color: #666;
}

.programs-intro-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 24px;
    align-items: start;
}

.programs-filter-panel,
.program-guidance-card {
    border-radius: 16px;
    padding: 28px;
}

.programs-filter-panel {
    background: var(--pure-white);
    border: 1px solid #ececec;
    box-shadow: var(--shadow-sm);
}

.programs-panel-title {
    font-size: 28px;
    color: var(--deep-black);
    margin-bottom: 10px;
}

.programs-panel-text {
    color: #666;
    margin-bottom: 24px;
}

.program-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.program-filter-btn {
    border: 1px solid #ddd;
    border-radius: 999px;
    background: var(--pure-white);
    color: var(--deep-black);
    padding: 12px 18px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.program-filter-btn:hover,
.program-filter-btn:focus-visible,
.program-filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--pure-white);
}

.program-filter-status {
    margin-top: 18px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.program-guidance-card {
    background: linear-gradient(160deg, #111 0%, #1f1f1f 100%);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.program-guidance-label {
    display: inline-block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1.5px;
}

.program-guidance-title {
    font-size: 28px;
    margin-bottom: 14px;
}

.program-guidance-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.program-guidance-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.program-guidance-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
}

.program-guidance-list i {
    color: var(--accent-gold);
    margin-top: 2px;
}

.program-guidance-card .btn-white {
    align-self: flex-start;
}

.programs-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--pure-white);
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 6, 19, 0.15);
}

.program-card.is-hidden {
    display: none;
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.program-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-red-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-red);
    z-index: 2;
}

.card-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.age-badge {
    display: inline-block;
    background-color: var(--light-grey);
    color: var(--deep-black);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
    align-self: flex-start;
}

.program-format {
    display: inline-flex;
    align-items: center;
    background: rgba(227, 6, 19, 0.08);
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-title {
    font-size: 22px;
    color: var(--deep-black);
    margin-bottom: 12px;
}

.card-desc {
    color: #666;
    margin-bottom: 18px;
}

.program-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.program-meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    font-size: 14px;
}

.program-meta i {
    color: var(--primary-red);
    font-size: 18px;
    margin-top: 1px;
}

.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.program-highlights li {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fafafa;
    border: 1px solid #ededed;
    color: var(--medium-grey);
    font-size: 13px;
    font-weight: 500;
}

.card-link {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.card-link i {
    transition: transform var(--transition-fast);
}

.program-card:hover .card-link {
    gap: 12px;
}

.programs-cta-wrapper {
    text-align: center;
    margin-top: var(--space-lg);
}

/* 7. BRANCHES / GLOBAL NETWORK SECTION */
.international-section {
    padding: var(--space-xl) 0;
    background-color: var(--deep-black);
    overflow: hidden;
    position: relative;
}

.international-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(227, 6, 19, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.015) 40px,
            rgba(255,255,255,0.015) 41px
        );
    pointer-events: none;
}

.branches-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.branches-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-lg);
}

.branches-intro {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 16px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.branch-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-gold) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.branch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 6, 19, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(227, 6, 19, 0.1);
}

.branch-card:hover::before {
    opacity: 1;
}

.branch-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.branch-flag {
    font-size: 2.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.branch-badge {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    background: rgba(227, 6, 19, 0.12);
    border: 1px solid rgba(227, 6, 19, 0.25);
    border-radius: 4px;
    padding: 4px 10px;
    text-transform: uppercase;
}

.branch-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.branch-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.branch-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.branch-details li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.branch-details li span {
    flex: 1;
}

/* Legacy utility classes still used by other sections */
.white-text {
    color: var(--pure-white);
}

.white-subtext {
    color: #AAA;
    margin-bottom: 30px;
}

.partner-logos-scroll {
    overflow: hidden;
    padding: 40px 0;
    background: #111;
    margin-top: 60px;
}

.logos-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assuming duplicated content */
}

/* 8. FEATURED VIDEO SECTION */
.facilities-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--pure-white);
}

.facilities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    background: var(--pure-white);
    border-top: 4px solid var(--primary-red);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    padding: 32px 28px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.facility-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.facility-title {
    font-size: 24px;
    color: var(--deep-black);
    margin-bottom: 14px;
}

.facility-desc {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.facility-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 10px 18px;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    transition: background-color var(--transition-fast), color var(--transition-fast), gap var(--transition-fast);
    margin-top: auto;
}

.facility-inquiry-btn i {
    transition: transform var(--transition-fast);
}

.facility-inquiry-btn:hover {
    background-color: var(--primary-red);
    color: var(--pure-white);
    gap: 12px;
}

.facility-inquiry-btn:hover i {
    transform: translateX(3px);
}

.facility-card {
    display: flex;
    flex-direction: column;
}


.video-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.play-btn-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: all var(--transition-medium);
}

.play-btn-large i {
    margin-left: 6px;
}

.play-btn-large:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.play-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid white;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-heading {
    font-size: 48px;
}

.video-subtext {
    font-size: 20px;
    font-weight: 300;
}

/* 9. COACHES SECTION */
.coaches-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--pure-white);
}

.coaches-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.coach-card {
    text-align: center;
}

.coach-photo {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.coach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(227, 6, 19, 0.9), rgba(227, 6, 19, 0.2));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.coach-card:hover .coach-photo img {
    transform: scale(1.05);
    filter: grayscale(100%);
}

.coach-card:hover .coach-overlay {
    opacity: 1;
}

.coach-socials {
    display: flex;
    gap: 15px;
}

.coach-socials a {
    color: white;
    font-size: 24px;
}

.coach-socials a:hover {
    transform: translateY(-3px);
}

.coach-name {
    font-size: 24px;
    color: var(--deep-black);
}

.coach-role {
    color: var(--primary-red);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.coach-creds {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* 10. TESTIMONIALS SECTION */
.testimonials-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--light-grey);
}

.success-metrics {
    max-width: 1100px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.success-metric {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.success-metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
}

.success-metric-label {
    color: #666;
    font-size: 15px;
}

.testimonials-slider-container {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    min-height: 460px;
}

.testimonial-slide {
    background: var(--pure-white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.testimonial-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.08);
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quotes-icon {
    font-size: 60px;
    color: var(--primary-red);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    color: var(--deep-black);
    margin-bottom: 30px;
}

.testimonial-result-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.testimonial-result {
    min-width: 200px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--light-grey);
}

.testimonial-result-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.testimonial-result-label {
    color: #666;
    font-size: 13px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
}

.author-details {
    text-align: left;
}

.author-name {
    font-size: 18px;
    color: var(--deep-black);
}

.author-club {
    font-size: 14px;
    color: #666;
}

.rating {
    color: var(--accent-gold);
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-arrow {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--deep-black);
    transition: var(--transition-fast);
}

.nav-arrow:hover {
    background: var(--primary-red);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    border: none;
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.testimonial-status-text {
    margin-top: 16px;
    color: #666;
    font-size: 14px;
}

/* 11. NEWS SECTION */
.news-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--pure-white);
}

.news-alert-banner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.95) 0%, rgba(122, 0, 8, 0.92) 100%);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.news-alert-copy {
    display: grid;
    gap: 8px;
}

.news-alert-label {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.78);
}

.news-alert-text {
    margin: 0;
    font-size: 18px;
    max-width: 760px;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-end {
    align-items: flex-end;
}

.news-grid {
    max-width: 1400px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--pure-white);
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.featured-news-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.featured-news-card .news-img-wrapper {
    height: 100%;
    min-height: 100%;
}

.news-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1;
}

.date-badge small {
    font-size: 12px;
    letter-spacing: 1px;
}

.news-content {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-tag-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.news-category {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.news-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--light-grey);
    color: var(--medium-grey);
    font-size: 12px;
    font-weight: 600;
}

.news-headline {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--deep-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-card .news-headline {
    font-size: 30px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-card .news-excerpt {
    font-size: 16px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.read-more {
    color: var(--primary-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* 12. CTA SECTION */
.cta-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.9) 0%, rgba(227, 6, 19, 0.7) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 56px;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 14. ADMISSIONS PROCESS */
.admissions-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--pure-white);
}

.admissions-layout,
.faq-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
    align-items: start;
}

.admissions-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.admissions-overview-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 20px;
    padding: 38px 34px;
    box-shadow: var(--shadow-md);
}

.admissions-overview-label,
.faq-intro-label {
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1.6px;
}

.admissions-overview-label {
    color: var(--primary-red);
}

.admissions-overview-title,
.faq-intro-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.admissions-overview-title {
    color: var(--deep-black);
}

.admissions-overview-text,
.faq-intro-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.admissions-overview-text {
    color: #555;
}

.admissions-signal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.admissions-signal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.08);
    color: var(--deep-black);
    font-size: 14px;
    font-weight: 600;
}

.admissions-overview-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.admissions-overview-actions .text-link {
    display: inline-flex;
    align-items: center;
}

.admissions-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admissions-step-card {
    min-height: 100%;
    padding: 30px 28px;
    background: var(--light-grey);
    border-radius: 18px;
    border-top: 4px solid var(--primary-red);
}

.admissions-step-number {
    display: inline-flex;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-red);
}

.admissions-step-title {
    font-size: 24px;
    color: var(--deep-black);
    margin-bottom: 14px;
}

.admissions-step-text {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* 15. CONTACT & APPLY */
.contact-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--light-grey);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: start;
}

.contact-copy p {
    color: #555;
    margin-bottom: 24px;
    font-size: 17px;
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--deep-black);
    font-weight: 500;
}

.contact-detail-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.contact-benefits {
    margin-bottom: 0;
}

.apply-card {
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 36px 32px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-family: var(--font-heading);
    color: var(--deep-black);
    letter-spacing: 0.5px;
    font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--deep-black);
    background: var(--pure-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.application-form .btn-primary {
    align-self: flex-start;
}

.form-helper-text {
    color: #666;
    font-size: 14px;
    margin-top: -6px;
}

.form-status {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
}

.form-status.is-success {
    color: #0a7a35;
}

.form-status.is-error {
    color: var(--primary-red);
}

/* 16. FAQ */
.faq-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--light-grey);
}

.faq-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-intro-card {
    padding: 38px 34px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.88) 100%);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
}

.faq-intro-label {
    color: var(--accent-gold);
}

.faq-intro-title {
    color: var(--pure-white);
}

.faq-intro-text,
.faq-intro-points li {
    color: rgba(255, 255, 255, 0.88);
}

.faq-intro-points {
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.faq-intro-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-intro-points i {
    margin-top: 2px;
    font-size: 20px;
    color: var(--accent-gold);
}

.faq-accordion {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    background: var(--pure-white);
    border-radius: 18px;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: var(--shadow-md);
}

.faq-item.is-open {
    border-color: rgba(227, 6, 19, 0.18);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    border: none;
    background: transparent;
    color: var(--deep-black);
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.3px;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    flex: 1;
}

.faq-item.is-open .faq-question span,
.faq-question:hover span {
    color: var(--primary-red);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-red);
    font-size: 22px;
}

.faq-answer {
    padding: 0 28px 24px;
    color: #555;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* 17. PARTNERS & AFFILIATIONS */
.partners-section {
    padding: var(--space-xl) var(--space-md);
    background: white;
    text-align: left;
    border-top: 1px solid #eee;
}

.partners-proof-row {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.partners-proof-item {
    background: var(--light-grey);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.partners-proof-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.partners-proof-label {
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.partner-card {
    background: var(--pure-white);
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.partner-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.08);
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 18px;
}

.partner-card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--deep-black);
}

.partner-card-text {
    color: #666;
}


/* 14. FOOTER */
.main-footer {
    background-color: var(--deep-black);
    color: #999;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 20px;
    width: auto;
}

.footer-desc {
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-red);
}

.footer-heading {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col a {
    color: #999;
    font-size: 15px;
    transition: color 0.2s;
}

.links-col a:hover {
    color: var(--primary-red);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-list i {
    color: var(--primary-red);
    font-size: 20px;
    margin-top: 2px;
}

.footer-newsletter {
    background: #222;
    padding: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-xs {
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: #999;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    margin-left: 20px;
}

.footer-legal a:hover {
    color: white;
}

/* MODAL */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ANIMATION CLASSES (JS triggers) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-bg img,
    .scroll-indicator,
    .pulse,
    .play-pulse,
    .logos-track {
        animation: none !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================================================
   NEW: GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--light-grey);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: var(--space-lg);
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.06);
}

.gallery-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
    .hero-heading {
        font-size: 60px;
    }

    .about-section,
    .programs-section,
    .coaches-section {
        padding: var(--space-lg) var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        width: 40%;
    }

    .stat-divider {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reveal-right {
        transform: translateY(40px);
    }

    .programs-intro-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-news-card {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .branches-header {
        text-align: left;
    }

    .cta-heading {
        font-size: 40px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .admissions-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .btn-enroll {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-header {
        top: 0;
    }

    .programs-filter-panel,
    .program-guidance-card,
    .testimonial-slide,
    .news-alert-banner {
        padding: 24px;
    }

    .hero-heading {
        font-size: 48px;
    }

    .hero-content {
        padding-left: 20px;
        text-align: center;
    }

    .hero-kicker-wrapper {
        justify-content: center;
    }

    .hero-line-accent {
        display: none;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-video-link,
    .hero-proof-list {
        justify-content: center;
    }

    .hero-proof-item {
        justify-content: center;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-filter-bar {
        justify-content: center;
    }

    .facilities-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .admissions-steps-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .success-metrics,
    .partners-proof-row,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .news-alert-banner,
    .featured-news-card,
    .testimonial-author {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-news-card {
        grid-column: span 1;
    }

    .testimonials-track {
        min-height: 540px;
    }

    .testimonial-author,
    .author-details {
        text-align: left;
    }

    .slider-controls {
        gap: 15px;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal a {
        margin: 0 10px;
    }

    .admissions-overview-card,
    .faq-intro-card {
        padding: 30px 24px;
    }

    .admissions-overview-title,
    .faq-intro-title {
        font-size: 28px;
    }

    .admissions-step-card {
        padding: 26px 24px;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 24px 22px;
    }
}

@media (max-width: 576px) {
    .program-filter-bar {
        flex-direction: column;
    }

    .program-filter-btn,
    .news-alert-banner .btn-primary,
    .program-guidance-card .btn-white {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-heading {
        font-size: 40px;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .admissions-overview-card,
    .faq-intro-card,
    .admissions-step-card {
        padding: 24px 20px;
    }

    .admissions-overview-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admissions-overview-actions .btn-primary,
    .faq-intro-card .btn-primary {
        width: 100%;
        text-align: center;
    }

    .admissions-signal-row {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-question {
        padding: 20px;
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .apply-card {
        padding: 28px 20px;
    }

    .application-form .btn-primary {
        width: 100%;
    }

    .testimonial-text {
        font-size: 19px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* 11. PARTNERS, INVESTORS, AND SPONSORS */
.partners-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--light-grey);
}

.partners-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.partner-logo {
    width: 200px;
    height: 100px;
    background-color: var(--pure-white);
    border: 1px solid #eaeaea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-grey);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-red);
}

.partner-logo img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: filter var(--transition-medium), transform var(--transition-medium);
    filter: grayscale(100%) opacity(0.7);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}