/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--color-bg-dark);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Colors - Blue Devil Brand Palette */
    --color-primary: #6582C1;
    --color-primary-hover: #7D96D1;
    --color-primary-dark: #5270AD;
    --color-white: #ffffff;
    --color-bg-dark: #000000;
    --color-bg-section: #0a0a0a;
    --color-bg-dark-alt: #1a1a1a;
    --color-text-gray: #999999;
    --color-overlay-dark: rgba(0, 0, 0, 0.85);
    --color-overlay-medium: rgba(0, 0, 0, 0.6);
    --color-overlay-light: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-5xl: 6rem;

    /* Container */
    --container-max-width: 1400px;
    --container-padding: 6.25rem;

    /* Header */
    --header-height: 5.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-button: 0 4px 12px rgba(101, 130, 193, 0.3);
    --shadow-button-hover: 0 6px 20px rgba(101, 130, 193, 0.4);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.4);

    /* What We Do Section Spacing */
    --spacing-xxxl: 6.25rem;

    /* What We Do Section Border Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-pill: 50px;
    --radius-circle: 50%;

    /* What We Do Section Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-dot: 0 2px 8px rgba(101, 130, 193, 0.4);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999;
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
}

.header.hidden {
    opacity: 0;
    pointer-events: none;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
@font-face {
    font-family: 'Long Shot';
    src: url('fonts/Long_Shot.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
}

.logo__composite {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo__text {
    font-family: 'Long Shot', Arial, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    transition: color var(--transition-normal);
}

.logo__text--left {
    font-weight: 700;
}

.logo__text--right {
    font-weight: 400;
}

.logo__icon {
    height: 2.5rem;
    width: auto;
    display: block;
}

/* Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    transition: opacity var(--transition-fast);
    position: relative;
}

.nav__link:hover {
    opacity: 0.8;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav__link:hover::after {
    width: 100%;
}

/* Scrolled header styles */
.header.scrolled .nav__link {
    color: var(--color-bg-dark);
}

.header.scrolled .nav__link:hover {
    opacity: 0.7;
}

.header.scrolled .btn--nav {
    background: var(--color-white);
    color: var(--color-white);
}

.header.scrolled .btn--nav::before {
    background: var(--color-primary);
}

.header.scrolled .btn--nav:hover::before {
    background: var(--color-primary-hover);
}

.header.scrolled .logo__text {
    color: var(--color-bg-dark);
}

/* Dropdown Navigation */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

.nav__dropdown-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-normal);
}

.nav__dropdown:hover .nav__dropdown-arrow {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.25rem;
    background: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal), margin-top var(--transition-normal);
    z-index: 1000;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
}

.nav__dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__dropdown-menu li:last-child {
    border-bottom: none;
}

.nav__dropdown-menu a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--color-bg-dark);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    text-transform: none;
    letter-spacing: 0;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav__dropdown-menu a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.nav__dropdown-menu li:first-child a {
    border-radius: 0.5rem 0.5rem 0 0;
}

.nav__dropdown-menu li:last-child a {
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Scrolled header dropdown styles */
.header.scrolled .nav__dropdown-arrow {
    color: var(--color-bg-dark);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Change hamburger color when header is scrolled */
.header.scrolled .hamburger-line {
    background-color: var(--color-bg-dark);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
}

.btn--nav {
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--color-white);
    border: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    position: relative;
}

.btn--nav::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
    z-index: -1;
}

.btn--nav:hover::before {
    background: var(--color-primary-hover);
}

.btn--nav:hover {
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-0.125rem);
}

.btn--primary {
    padding: 1rem 2.25rem;
    background: var(--color-white);
    color: var(--color-white);
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.1s;
    position: relative;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
}

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

.btn--primary:hover {
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-0.125rem);
}

.btn--secondary {
    padding: 1rem 2.25rem;
    background: var(--color-white);
    color: var(--color-white);
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.3s;
    position: relative;
    display: inline-block;
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-bg-dark);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
}

.btn--secondary:hover {
    color: var(--color-white);
    transform: translateY(-0.125rem);
}

.btn--secondary:hover::before {
    background: var(--color-bg-dark-alt);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 100%
    ),
    url('images/gallery/mma/mma-class-training-01.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: slowZoomOut 10s ease-out forwards;
}

.hero__container {
    position: relative;
    max-width: var(--container-max-width);
    height: 100vh;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 10;
    max-width: 50rem;
}

/* Hero Eyebrow */
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.hero__eyebrow-line {
    width: 3.75rem;
    height: auto;
    display: block;
}

.hero__eyebrow-text {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Hero Headline */
.hero__headline {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1875rem;
    line-height: 1.1;
    margin-bottom: 2.1875rem;
}

.hero__headline-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero__headline-line--1 {
    animation-delay: 0.3s;
}

.hero__headline-line--2 {
    animation-delay: 0.5s;
}

/* Hero Subheadline */
.hero__subheadline {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    line-height: 1.7;
    max-width: 25rem;
    margin-bottom: 2.1875rem;
}

.hero__subheadline-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.7s;
}

/* Hero CTA */
.hero__cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Hero Micro-proof */
.hero__microproof {
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03125rem;
}

.hero__microproof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.5s;
}

.hero__microproof-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero__microproof-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.hero__microproof-text {
    display: inline-block;
}

/* Hero Testimonial Card */
.hero__testimonial-card {
    position: absolute;
    right: 6.25rem;
    bottom: calc(50% - 9.375rem);
    width: 22rem;
    height: 18.75rem;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(101, 130, 193, 0.3);
    border-radius: 0;
    padding: 1.875rem;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.7s;
}

.hero__testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__testimonial-stars {
    color: #6582C1;
    font-size: 1rem;
    letter-spacing: 0.125rem;
}

.hero__testimonial-text {
    flex: 1;
    color: var(--color-white);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.hero__testimonial-text.has-overflow {
    -webkit-line-clamp: 5;
}

.hero__testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hero__testimonial-name {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.hero__testimonial-readmore {
    color: #6582C1;
    font-size: 0.8125rem;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.hero__testimonial-readmore.visible {
    opacity: 1;
}

.hero__testimonial-readmore:hover {
    color: #7D96D1;
}

.hero__testimonial-readmore span {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.hero__testimonial-readmore:hover span {
    transform: translateX(0.25rem);
}

.hero__testimonial-logo {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 7rem;
    height: auto;
    opacity: 1;
    z-index: 11;
}

.hero__testimonial-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   WHAT WE DO + OUTCOMES SECTION
   ========================================================================== */

.what-we-do-section {
    background-color: var(--color-bg-dark-alt);
    padding: var(--spacing-xxxl) var(--container-padding);
    position: relative;
}

.what-we-do-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Top Section: What We Do Grid */
.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
    margin-bottom: var(--spacing-xxxl);
}

/* Left Column: Text Content */
.content-column {
    padding-right: 3.75rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.eyebrow-line {
    width: 3.75rem;
    height: auto;
    display: block;
}

.eyebrow-text {
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    color: var(--color-white);
}

.section-headline {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    max-width: 31.25rem;
}

.section-body {
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 2rem;
    max-width: 30rem;
}

.cta-button {
    background: var(--color-white);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    padding: 1rem 2rem;
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    box-shadow: var(--shadow-button);
    transition: var(--transition-normal);
    min-height: 3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
    transition: background var(--transition-normal);
}

.cta-button:hover::before {
    background: var(--color-primary-hover);
}

.cta-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-button-hover);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.section-cta-group {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

/* Right Column: Layered Image */
.image-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 31.25rem;
}

.main-image-cycling {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.main-image-cycle {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.main-image-cycle:first-child {
    position: relative;
}

.main-image-cycle.active {
    opacity: 1;
    pointer-events: auto;
}

.main-image-flipped {
    transform: scaleX(-1);
}

/* Overlay Stats Card */
.overlay-card {
    position: absolute;
    bottom: 3.75rem;
    left: -2.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 1.25rem;
    width: 12.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(101, 130, 193, 0.3);
}

.overlay-card--clickable {
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.overlay-card--clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(101, 130, 193, 0.5);
}

.overlay-card__arrow-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal), background-color var(--transition-normal);
    z-index: 10;
}

.overlay-card--clickable:hover .overlay-card__arrow-badge {
    transform: translate(2px, -2px);
    background: #7D96D1;
}

.overlay-card__arrow-badge svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--color-white);
}

.card-header {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

.stat-label {
    color: var(--color-text-gray);
    font-weight: var(--font-weight-regular);
}

.stat-value {
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
}

/* Bottom Section: Outcomes Grid (3 Cards) */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.outcome-card {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(101, 130, 193, 0.2);
    border-radius: 0;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.outcome-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary);
}

/* Card Number with Accent Dot */
.card-number-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.number-circle {
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: relative;
}

.number {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.accent-dot {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
    border-radius: var(--radius-circle);
    box-shadow: var(--shadow-dot);
}

.card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-text-gray);
}

/* ==========================================================================
   PROGRAMS SECTION
   ========================================================================== */

.programs {
    position: relative;
    width: 100%;
    background: var(--color-bg-section);
    padding: 6.25rem 0;
}

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

.programs .eyebrow {
    margin-bottom: 1.5rem;
}

/* Section Heading */
.programs__heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin-bottom: 3.75rem;
    text-align: left;
}

.programs__heading-light {
    display: inline;
    font-weight: var(--font-weight-light);
    color: var(--color-text-gray);
}

.programs__heading-bold {
    display: inline;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-white);
    margin-left: 0.5rem;
}

/* Programs Grid */
.programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

/* Program Card */
.program-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.program-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-card-hover);
}

/* Card Image Container */
.program-card__image {
    position: relative;
    width: 100%;
    height: 28rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform var(--transition-slow);
    overflow: hidden;
}

.program-card:hover .program-card__image {
    transform: scale(1.05);
}

/* Card Overlay */
.program-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    transition: background var(--transition-normal);
    z-index: 1;
}

.program-card:hover .program-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Card Content */
.program-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

/* Card Label */
.program-card__label {
    font-size: 0.8125rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.875rem;
    line-height: 1;
}

.program-card__label-accent {
    color: var(--color-primary);
}

.program-card__label-text {
    color: var(--color-white);
    margin-left: 0.25rem;
}

/* Card Title */
.program-card__title {
    font-size: 1.625rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* Card Description */
.program-card__description {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Card CTA Button */
.program-card__cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    background: var(--color-white);
    border: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
}

.program-card__cta::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(0, 0, 0, 0.85);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
    z-index: -1;
    transition: background var(--transition-normal);
}

.program-card__cta:hover {
    color: var(--color-bg-dark);
    transform: translateY(-0.125rem);
}

.program-card__cta:hover::before {
    background: var(--color-white);
}

/* ==========================================================================
   WHY CHOOSE SECTION - VARIATION A (MODERN DARK AESTHETIC)
   ========================================================================== */

.why-choose {
    background-color: var(--color-bg-dark);
    padding: 7.5rem var(--container-padding);
    width: 100%;
    overflow: hidden;
}

.why-choose__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

/* Left Column: Image with Overlay */
.why-choose__image-wrapper {
    position: relative;
    height: 100%;
    min-height: 40.625rem;
}

.why-choose__image-cycling {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 40.625rem;
}

.why-choose__image {
    width: 100%;
    height: 100%;
    min-height: 40.625rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    object-fit: cover;
}

.why-choose__image-cycle {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.why-choose__image-cycle:first-child {
    position: relative;
}

.why-choose__image-cycle.active {
    opacity: 1;
    pointer-events: auto;
}

.why-choose__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 127, 179, 0.2) 0%, rgba(10, 10, 10, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Right Column: Content */
.why-choose__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose__header {
    margin-bottom: 3rem;
}

.why-choose__header .eyebrow {
    margin-bottom: 1.5rem;
}

.why-choose__title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.09375rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.why-choose__subtitle {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-text-gray);
    margin: 1.5rem 0 0;
}

/* Feature Cards Grid - 2x2 */
.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Feature Card Component - Horizontal Layout */
.feature-card {
    background-color: var(--color-bg-dark-alt);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(108, 127, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.6);
    border-color: rgba(108, 127, 179, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(108, 127, 179, 0.2) 0%, rgba(108, 127, 179, 0.05) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(108, 127, 179, 0.2);
}

.feature-card:hover .feature-card__icon-wrapper {
    background: linear-gradient(135deg, var(--color-primary) 0%, #8A9DC9 100%);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.feature-card__icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card__icon {
    color: var(--color-white);
}

.feature-card__content {
    display: flex;
    flex-direction: column;
}

.feature-card__title {
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    letter-spacing: -0.01875rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-card__description {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-text-gray);
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
    background-color: var(--color-bg-dark);
    padding: 6.25rem var(--container-padding);
    width: 100%;
}

.testimonials__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.testimonials__container .eyebrow {
    margin-bottom: 1.5rem;
}

.testimonials__container .section-headline {
    margin-bottom: 1.5rem;
}

.testimonials__summary {
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text-gray);
    max-width: 50rem;
    margin: 0 0 4rem;
}

/* Stats Boxes */
.testimonials__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonials__stat-box {
    background-color: var(--color-bg-dark-alt);
    border: 1px solid rgba(101, 130, 193, 0.2);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.testimonials__stat-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-card-hover);
}

.testimonials__stat-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonials__stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonials__stat-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: var(--color-text-gray);
}

/* Testimonial Cards Grid */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: var(--color-bg-dark-alt);
    border: 1px solid rgba(101, 130, 193, 0.2);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-card__avatar {
    width: 5rem;
    height: 5rem;
    background-color: rgba(101, 130, 193, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.testimonial-card__avatar svg {
    color: var(--color-primary);
}

.testimonial-card__name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.testimonial-card__stars {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.25rem;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text-gray);
    margin: 0 0 1rem 0;
}

.testimonial-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-card__readmore:hover {
    color: var(--color-primary-hover);
}

.testimonial-card__readmore span {
    transition: transform 0.3s ease;
}

.testimonial-card__readmore:hover span {
    transform: translateX(0.25rem);
}

/* View All Button */
.testimonials__viewall {
    display: flex;
    justify-content: center;
}

.testimonials__button {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: var(--color-white);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: var(--transition-normal);
    position: relative;
}

.testimonials__button::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
    transition: background var(--transition-normal);
}

.testimonials__button:hover::before {
    background: var(--color-primary-hover);
}

.testimonials__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-button-hover);
}

/* Responsive: Tablet */
@media (max-width: 63.9375em) {
    .testimonials {
        padding: 5rem var(--container-padding);
    }

    .testimonials__stats {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonials__stat-box {
        padding: 2rem 1.5rem;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* Responsive: Mobile */
@media (max-width: 47.9375em) {
    .testimonials {
        padding: 4rem var(--container-padding);
    }

    .testimonials__summary {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .testimonials__stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .testimonials__stat-box {
        padding: 1.75rem 1.5rem;
    }

    .testimonials__stat-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .testimonials__stat-number {
        font-size: 2.5rem;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-card__avatar {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-card__name {
        font-size: 1.125rem;
    }

    .testimonial-card__stars {
        font-size: 1.125rem;
    }

    .testimonial-card__text {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slowZoomOut {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Large Desktop (1440px+) - Programs Section */
@media (min-width: 90em) {
    .programs__grid {
        gap: 2.25rem;
    }
}

/* Desktop (1200px - 1439px) - Programs Section */
@media (max-width: 89.9375em) {
    .programs__grid {
        gap: 1.5rem;
    }

    .program-card__image {
        height: 26rem;
    }
}

/* Tablet Large (1024px) - Hero, What We Do & Programs */
@media (max-width: 74.9375em) {
    :root {
        --container-padding: 3.75rem;
        --spacing-xxxl: 3.75rem;
    }

    .hero__headline {
        font-size: 3.25rem;
    }

    .what-we-do-section {
        padding: 3.75rem var(--container-padding);
    }

    .what-we-do-grid {
        gap: 2rem;
        margin-bottom: 3.75rem;
    }

    .content-column {
        padding-right: 2rem;
    }

    .section-headline {
        font-size: 2.25rem;
    }

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

    .outcome-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .programs {
        padding: 5rem 0;
    }

    .programs__heading {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

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

    .program-card__image {
        height: 30rem;
    }

    .why-choose {
        padding: 6.25rem var(--container-padding);
    }

    .why-choose__container {
        gap: 2.5rem;
    }

    .why-choose__image-wrapper,
    .why-choose__image-cycling,
    .why-choose__image {
        min-height: 34.375rem;
    }

    .why-choose__title {
        font-size: 3rem;
    }

    .why-choose__subtitle {
        font-size: 1.125rem;
    }
}

/* Tablet (768px - 1023px) - Hero, What We Do, Programs & Why Choose */
@media (max-width: 63.9375em) {
    :root {
        --container-padding: 2.5rem;
        --header-height: 4.5rem;
        --spacing-xxxl: 2.5rem;
    }

    .header__container {
        padding: 0 2.5rem;
    }

    .logo__text {
        font-size: 1.375rem;
    }

    .logo__icon {
        height: 2.25rem;
    }

    .nav__list {
        gap: 1.25rem;
    }

    .nav__link {
        font-size: 0.8125rem;
    }

    .hero__container {
        padding-top: var(--header-height);
    }

    .hero__headline {
        font-size: 2.75rem;
    }

    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        url('images/gallery/mma/mma-class-training-01.webp');
        background-size: cover;
        background-position: center;
    }

    .hero__cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn--primary,
    .btn--secondary {
        width: 100%;
        text-align: center;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .content-column {
        padding-right: 0;
    }

    .section-headline {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .section-body {
        max-width: 100%;
    }

    .main-image-wrapper {
        max-width: 100%;
    }

    .overlay-card {
        left: auto;
        right: -1.25rem;
        bottom: 2.5rem;
        width: 11.25rem;
        padding: 1rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .outcome-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .section-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
    }

    .programs {
        padding: 4rem 0;
    }

    .programs__heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .programs__grid {
        gap: 1.75rem;
    }

    .program-card__image {
        height: 28rem;
    }

    .program-card__content {
        padding: 1.75rem;
    }

    .program-card__title {
        font-size: 1.5rem;
    }

    .why-choose {
        padding: 5rem var(--container-padding);
    }

    .why-choose__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose__image-wrapper,
    .why-choose__image-cycling,
    .why-choose__image {
        min-height: 25rem;
        order: 1;
    }

    .why-choose__content {
        order: 2;
    }

    .why-choose__header {
        margin-bottom: 2.25rem;
    }

    .why-choose__title {
        font-size: 2.5rem;
    }

    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Mobile Large (425px - 767px) - Hero, Programs & Why Choose */
@media (max-width: 47.9375em) {
    :root {
        --container-padding: 1.5rem;
    }

    .header__container {
        padding: 0 1.5rem;
    }

    .logo__composite {
        gap: 12px;
    }

    .logo__text {
        font-size: 1.375rem;
    }

    .logo__icon {
        height: 2.25rem;
    }

    .programs {
        padding: 3rem 0;
    }

    .programs__heading {
        font-size: 1.75rem;
        letter-spacing: 0.1em;
        margin-bottom: 2rem;
    }

    .programs__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-card__image {
        height: 24rem;
    }

    .program-card__content {
        padding: 1.5rem;
    }

    .program-card__title {
        font-size: 1.375rem;
    }

    .program-card__description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .program-card__cta {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Medium (375px - 424px) - Hero, What We Do & Programs */
@media (max-width: 26.5625em) {
    .logo__icon {
        height: 2rem;
    }

    .logo__text {
        font-size: 1.25rem;
    }

    .nav__list {
        gap: 0.75rem;
    }

    .nav__link {
        font-size: 0.75rem;
        letter-spacing: 0.0625rem;
    }

    .btn--nav {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero__headline {
        font-size: 2.25rem;
        letter-spacing: 0.125rem;
    }

    .hero__subheadline {
        font-size: 0.875rem;
    }

    .overlay-card {
        right: -0.625rem;
        width: 10rem;
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .overlay-card__arrow-badge {
        right: -0.5rem;
    }

    .card-header {
        font-size: 0.75rem;
    }

    .stat-row {
        font-size: 0.6875rem;
    }

    .programs {
        padding: 2.5rem 0;
    }

    .programs__heading {
        font-size: 1.5rem;
    }

    .program-card__image {
        height: 22rem;
    }

    .program-card__title {
        font-size: 1.25rem;
    }

    .why-choose__image-wrapper,
    .why-choose__image-cycling,
    .why-choose__image {
        min-height: 21.875rem;
    }

    .why-choose__title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-card__icon-wrapper {
        width: 3rem;
        height: 3rem;
    }

    .feature-card__icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Mobile Small (320px - 374px) - Hero, Programs & Why Choose */
@media (max-width: 23.4375em) {
    :root {
        --container-padding: 1rem;
    }

    .hero__headline {
        font-size: 2rem;
    }

    .nav__item:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .programs__heading {
        font-size: 1.375rem;
    }

    .program-card__image {
        height: 20rem;
    }

    .program-card__content {
        padding: 1.25rem;
    }

    .program-card__label {
        font-size: 0.75rem;
    }

    .program-card__title {
        font-size: 1.125rem;
    }

    .program-card__description {
        font-size: 0.8125rem;
    }

    .program-card__cta {
        padding: 0.625rem 1.5rem;
        font-size: 0.6875rem;
    }

    .why-choose__title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Mobile Extra Small (320px) - Hero & Why Choose */
@media (max-width: 20em) {
    .hero__headline {
        font-size: 1.75rem;
    }

    .hero__subheadline {
        font-size: 0.8125rem;
    }

    .why-choose__title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   REVIEWS PAGE STYLES
   ========================================================================== */

/* Testimonials Hero Section */
.testimonials-hero {
    background: var(--color-bg-dark);
    padding: 8rem var(--container-padding) 2.5rem;
    position: relative;
    overflow: hidden;
}

.testimonials-hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.testimonials-hero__label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.testimonials-hero__title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-hero__summary {
    font-size: 1.125rem;
    color: var(--color-text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.testimonials-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-hero__fact-box {
    background: var(--color-bg-dark-alt);
    border: 1px solid rgba(101, 130, 193, 0.2);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonials-hero__fact-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-0.25rem);
}

.testimonials-hero__fact-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.testimonials-hero__fact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.testimonials-hero__fact-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials Page Grid */
.testimonials-page {
    background: var(--color-bg-dark);
    padding: 4rem var(--container-padding) 6rem;
}

.testimonials-page__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

/* Alternate card background colors for visual variety */
.testimonial-card--alt-blue {
    background-color: rgba(101, 130, 193, 0.05);
}

.testimonial-card--alt-green {
    background-color: rgba(101, 130, 193, 0.03);
}

/* ==========================================================================
   MOBILE MENU RESPONSIVE STYLES
   ========================================================================== */

/* Desktop - hide mobile close button */
@media (min-width: 969px) {
    .mobile-menu-close {
        display: none !important;
    }
}

/* Tablet and Mobile - Mobile Menu Activation */
@media (max-width: 968px) {
    .header__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
    }

    .nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: none !important;
        height: 100vh !important;
        height: 100dvh !important;
        margin: 0 !important;
        padding: 5rem 2rem !important;
        background: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(12px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        pointer-events: none;
        opacity: 0;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 10000 !important;
    }

    .mobile-menu-close {
        display: flex !important;
        position: fixed;
        top: calc((var(--header-height) - 44px) / 2);
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 2.5rem;
        cursor: pointer;
        padding: 8px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10001;
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
        color: var(--color-white);
    }

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

    .mobile-menu-close:hover svg {
        color: var(--color-primary);
    }

    .nav.active {
        pointer-events: auto;
        opacity: 1;
        transform: translateX(0) !important;
    }

    .nav.active .mobile-menu-close {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav__item {
        width: 100%;
        text-align: center;
    }

    .nav__link {
        font-size: 1.75rem !important;
        font-weight: 600 !important;
        padding: 1rem 2rem !important;
        text-align: center;
        width: 100%;
        display: block !important;
        color: var(--color-white) !important;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link:hover {
        color: var(--color-primary) !important;
        opacity: 1 !important;
    }

    /* Mobile dropdown menu styles */
    .nav__dropdown {
        width: 100%;
    }

    .nav__dropdown-toggle {
        cursor: pointer;
    }

    .nav__dropdown-arrow {
        color: var(--color-white) !important;
        transition: transform 0.3s ease;
    }

    .nav__dropdown.open .nav__dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav__dropdown-menu {
        position: static !important;
        left: auto !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: auto !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transition: max-height 0.3s ease;
    }

    .nav__dropdown.open .nav__dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0 !important;
        margin-top: 0.5rem !important;
    }

    .nav__dropdown-menu li {
        width: 100%;
        border: none !important;
    }

    .nav__dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 1.25rem !important;
        text-align: center !important;
        color: #ffffff !important;
        background: transparent !important;
        text-decoration: none !important;
    }

    .nav__dropdown-menu a:hover {
        background: rgba(101, 130, 193, 0.2) !important;
        color: var(--color-primary) !important;
    }

    /* Mobile menu CTA button */
    .btn--nav {
        display: inline-block !important;
        padding: 1rem 2.25rem !important;
        font-size: 1.25rem !important;
        margin-top: 1rem;
        background: var(--color-white) !important;
        color: var(--color-white) !important;
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        position: relative;
    }

    .btn--nav::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        background: var(--color-primary);
        clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
        z-index: -1;
    }

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

    .btn--nav:hover::before {
        background: var(--color-primary-hover) !important;
    }
}

/* Responsive Testimonials Hero */
@media (max-width: 768px) {
    /* Hero Testimonial Card - Smaller on tablet */
    .hero__testimonial-card {
        right: 2rem;
        bottom: calc(50% - 8rem);
        width: 18rem;
        height: 16rem;
        padding: 1.5rem;
    }

    .hero__testimonial-text {
        font-size: 0.875rem;
        -webkit-line-clamp: 5;
    }

    .hero__testimonial-text.has-overflow {
        -webkit-line-clamp: 4;
    }

    .hero__testimonial-logo {
        width: 5.5rem;
        top: -2rem;
        right: -2rem;
    }

    .testimonials-hero {
        padding: 6rem var(--container-padding) 2rem;
    }
    
    .testimonials-hero__title {
        font-size: 2.25rem;
    }
    
    .testimonials-hero__facts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-page__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   PROGRAMS PAGE STYLES
   ========================================================================== */

/* Programs Hero Section */
.programs-hero {
    background-color: var(--color-bg-dark);
    padding: 10rem var(--container-padding) 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gradient background shapes */
.programs-hero__gradient-shape {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}

.programs-hero__gradient-shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(200, 200, 200, 0.2) 100%);
    top: -200px;
    right: -100px;
    transform: rotate(-45deg);
}

.programs-hero__gradient-shape--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.4) 0%, rgba(150, 150, 150, 0.2) 100%);
    bottom: -200px;
    left: -100px;
    transform: rotate(30deg);
}

.programs-hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.programs-hero .eyebrow {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.programs-hero__title {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
}

.programs-hero__subtitle {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text-gray);
    max-width: 50rem;
    margin: 0 auto 3rem;
}

/* Program Navigation Buttons */
.program-navigation__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.program-navigation__button {
    background: var(--color-white);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    padding: 0.875rem 1.75rem;
    border: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.program-navigation__button::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-bg-dark);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
    z-index: -1;
    transition: background var(--transition-normal);
}

.program-navigation__button:hover::before {
    background: var(--color-bg-dark-alt);
}

.program-navigation__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-button-hover);
}

/* Program Detail Sections */
.program-detail {
    background-color: var(--color-bg-dark-alt);
    padding: 5rem var(--container-padding);
}

.program-detail:nth-of-type(even) {
    background-color: var(--color-bg-dark);
}

.program-detail__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-detail--reverse .program-detail__container {
    direction: rtl;
}

.program-detail--reverse .program-detail__content {
    direction: ltr;
}

.program-detail__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 28rem;
}

.program-detail__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.program-detail__content {
    max-width: 37.5rem;
}

.program-detail__title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.program-detail__subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.program-detail__description {
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

.program-detail__best-for {
    background-color: rgba(101, 130, 193, 0.1);
    border-left: 3px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

.program-detail__best-for-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.program-detail__best-for-text {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    margin: 0;
}

.program-detail__cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.program-detail__cta-group--centered {
    justify-content: center;
}

.cta-button-secondary {
    background: var(--color-white);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    padding: 1rem 2rem;
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    box-shadow: var(--shadow-button);
    transition: var(--transition-normal);
    min-height: 3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-bg-dark);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
    transition: background var(--transition-normal);
}

.cta-button-secondary:hover::before {
    background: var(--color-bg-dark-alt);
}

.cta-button-secondary:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-button-hover);
}

.cta-button-secondary:active {
    transform: scale(0.98);
}

.cta-button-secondary:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Private Lessons Section */
.private-lessons {
    background-color: var(--color-bg-dark);
    padding: 6.25rem var(--container-padding);
    text-align: center;
}

.private-lessons__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.private-lessons .eyebrow {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.private-lessons__title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
}

.private-lessons__content {
    max-width: 50rem;
    margin: 0 auto;
}

.private-lessons__info {
    background-color: var(--color-bg-dark-alt);
    border: 1px solid rgba(101, 130, 193, 0.2);
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
}

.private-lessons__price {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.private-lessons__price-amount {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    display: block;
    margin-top: 0.5rem;
}

.private-lessons__description {
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text-gray);
    margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 63.9375em) {
    .programs-hero {
        padding: 8rem var(--container-padding) 4rem;
    }

    .programs-hero__title {
        font-size: 3rem;
    }

    .programs-hero__subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .programs-hero__gradient-shape--1 {
        width: 450px;
        height: 450px;
        top: -150px;
        right: -80px;
    }

    .programs-hero__gradient-shape--2 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -80px;
    }

    .program-navigation__buttons {
        gap: 0.75rem;
    }

    .program-navigation__button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }

    .program-detail {
        padding: 4rem var(--container-padding);
    }

    .program-detail__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .program-detail--reverse .program-detail__container {
        direction: ltr;
    }

    .program-detail__image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .program-detail__content {
        max-width: 100%;
    }

    .program-detail__title {
        font-size: 2.5rem;
    }

    .program-detail__subtitle {
        font-size: 1.25rem;
    }

    .program-detail__description {
        font-size: 1rem;
    }

    .private-lessons {
        padding: 5rem var(--container-padding);
    }

    .private-lessons__title {
        font-size: 2.5rem;
    }

    .private-lessons__info {
        padding: 2.5rem 2rem;
    }

    .schedule-hero__gradient-shape--1 {
        width: 450px;
        height: 450px;
        top: -150px;
        right: -80px;
    }

    .schedule-hero__gradient-shape--2 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -80px;
    }
}

/* Responsive: Mobile */
@media (max-width: 47.9375em) {
    .programs-hero {
        padding: 7rem var(--container-padding) 3rem;
    }

    .programs-hero__title {
        font-size: 2.25rem;
    }

    .programs-hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .programs-hero__gradient-shape--1 {
        width: 350px;
        height: 350px;
        top: -120px;
        right: -60px;
    }

    .programs-hero__gradient-shape--2 {
        width: 300px;
        height: 300px;
        bottom: -120px;
        left: -60px;
    }

    .schedule-hero__gradient-shape--1 {
        width: 350px;
        height: 350px;
        top: -120px;
        right: -60px;
    }

    .schedule-hero__gradient-shape--2 {
        width: 300px;
        height: 300px;
        bottom: -120px;
        left: -60px;
    }

    .program-navigation__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .program-navigation__button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .program-detail {
        padding: 3rem var(--container-padding);
    }

    .program-detail__container {
        gap: 2.5rem;
    }

    .program-detail__title {
        font-size: 2rem;
    }

    .program-detail__subtitle {
        font-size: 1.125rem;
    }

    .program-detail__description {
        font-size: 0.9375rem;
    }

    .program-detail__best-for {
        padding: 1rem 1.25rem;
    }

    .program-detail__cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    .private-lessons {
        padding: 4rem var(--container-padding);
    }

    .private-lessons__title {
        font-size: 2rem;
    }

    .private-lessons__info {
        padding: 2rem 1.5rem;
    }

    .private-lessons__price {
        font-size: 1.125rem;
    }

    .private-lessons__price-amount {
        font-size: 2rem;
    }

    .private-lessons__description {
        font-size: 1rem;
    }
}

/* Responsive: Mobile Small */
@media (max-width: 26.5625em) {
    .programs-hero__title {
        font-size: 1.875rem;
    }

    .programs-hero__subtitle {
        margin-bottom: 1.75rem;
    }

    .program-navigation__button {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }

    .program-detail__title {
        font-size: 1.75rem;
    }

    .private-lessons__title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   SCHEDULE PAGE
   ========================================================================== */

/* Schedule Hero Section */
.schedule-hero {
    padding: calc(var(--header-height) + 4rem) var(--container-padding) 4rem;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.schedule-hero__gradient-shape {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}

.schedule-hero__gradient-shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(200, 200, 200, 0.2) 100%);
    top: -200px;
    right: -100px;
    transform: rotate(-45deg);
}

.schedule-hero__gradient-shape--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.4) 0%, rgba(150, 150, 150, 0.2) 100%);
    bottom: -200px;
    left: -100px;
    transform: rotate(30deg);
}

.schedule-hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.schedule-hero__title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin: 1rem 0;
}

.schedule-hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.schedule-hero__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Schedule Grid Section */
.schedule-section {
    padding: 4rem var(--container-padding);
    background: var(--color-bg-dark-alt);
}

.schedule-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.schedule__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.schedule__day-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule__day-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
    text-align: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    letter-spacing: 1px;
    border-radius: 0;
}

.schedule__class-card {
    background: var(--color-bg-dark);
    border: 2px solid rgba(101, 130, 193, 0.2);
    padding: 1rem;
    transition: all var(--transition-normal);
    border-radius: 0;
}

.schedule__class-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.schedule__time {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.schedule__class-type {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.25rem;
}

.schedule__instructor {
    font-size: 0.875rem;
    color: var(--color-text-gray);
    margin-bottom: 0.25rem;
}

.schedule__duration {
    font-size: 0.75rem;
    color: var(--color-text-gray);
}

.schedule__empty {
    background: var(--color-bg-dark);
    border: 2px dashed rgba(101, 130, 193, 0.2);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--color-text-gray);
    font-size: 0.875rem;
    border-radius: 0;
}

.schedule__loading,
.schedule__error {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.125rem;
}

.schedule__loading {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.schedule__spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(101, 130, 193, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.schedule__error {
    color: var(--color-text-gray);
}

/* Responsive: Desktop (1440px+) */
@media (min-width: 90em) {
    .schedule__grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* Responsive: Desktop (1200px - 1439px) */
@media (max-width: 89.9375em) {
    .schedule__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Responsive: Tablet (768px - 1199px) */
@media (max-width: 74.9375em) {
    .schedule__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .schedule-hero__title {
        font-size: 2.5rem;
    }
}

/* Responsive: Mobile (425px - 767px) */
@media (max-width: 47.9375em) {
    /* Hero Section - Compact layout */
    .hero__container {
        height: auto;
        min-height: auto;
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__content {
        margin-bottom: 2rem;
    }

    /* Hero Testimonial Card - Show below hero content */
    .hero__testimonial-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 28rem;
        margin: 0 auto 2rem;
        animation-delay: 1.9s;
    }

    .hero__testimonial-text {
        font-size: 0.875rem;
        -webkit-line-clamp: 5;
    }

    .hero__testimonial-text.has-overflow {
        -webkit-line-clamp: 4;
    }

    .hero__testimonial-logo {
        width: 5rem;
        top: -1.75rem;
        right: -1.75rem;
    }

    .schedule__grid {
        grid-template-columns: 1fr;
    }

    .schedule-hero__title {
        font-size: 2rem;
    }

    .schedule-hero__subtitle {
        font-size: 1rem;
    }

    .schedule-hero__cta-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .schedule-hero__cta-group .cta-button,
    .schedule-hero__cta-group .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }

    .schedule__day-column {
        border: 2px solid rgba(101, 130, 193, 0.2);
        border-radius: 0;
        background: var(--color-bg-dark);
    }

    .schedule__day-header {
        user-select: none;
    }

    .schedule-section {
        padding: 3rem var(--container-padding);
    }
}

/* Responsive: Mobile Small */
@media (max-width: 26.5625em) {
    .schedule-hero__title {
        font-size: 1.75rem;
    }

    .schedule-hero__subtitle {
        font-size: 0.9375rem;
    }

    .schedule__class-card {
        padding: 0.875rem;
    }
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

/* Pricing Plans Section */
.pricing-plans {
    padding: 4rem var(--container-padding);
    background: var(--color-bg-dark-alt);
}

.pricing-plans__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Center last 3 cards when there are 5 total */
.pricing-plans__container:has(.pricing-plan:nth-child(5):last-child) {
    grid-template-columns: repeat(6, 1fr);
}

.pricing-plans__container:has(.pricing-plan:nth-child(5):last-child) .pricing-plan:nth-child(1) {
    grid-column: 1 / 3;
}

.pricing-plans__container:has(.pricing-plan:nth-child(5):last-child) .pricing-plan:nth-child(2) {
    grid-column: 3 / 5;
}

.pricing-plans__container:has(.pricing-plan:nth-child(5):last-child) .pricing-plan:nth-child(3) {
    grid-column: 5 / 7;
}

.pricing-plans__container:has(.pricing-plan:nth-child(5):last-child) .pricing-plan:nth-child(4) {
    grid-column: 2 / 4;
}

.pricing-plans__container:has(.pricing-plan:nth-child(5):last-child) .pricing-plan:nth-child(5) {
    grid-column: 4 / 6;
}

/* Individual Pricing Plan Card */
.pricing-plan {
    background: var(--color-bg-dark);
    border: 2px solid rgba(101, 130, 193, 0.2);
    border-radius: 0;
    padding: 2.5rem 2rem;
    transition: all var(--transition-normal);
    text-align: center;
}

.pricing-plan:hover {
    border-color: var(--color-primary);
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-card-hover);
}

.pricing-plan--featured {
    border-color: var(--color-primary);
    position: relative;
}

.pricing-plan__title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.pricing-plan__price {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    margin: 0 0 1rem;
    line-height: 1;
}

.pricing-plan__period {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-gray);
}

.pricing-plan__description {
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Private Lesson Cards */
.pricing-plan--private {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pricing-plan__instructor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    margin-bottom: 0.5rem;
}

.pricing-plan__instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-plan--private .pricing-plan__title {
    font-size: 1.25rem;
    margin: 0 0 1.5rem;
}

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Pricing Discounts Section */
.pricing-discounts {
    padding: 4rem var(--container-padding);
    background: var(--color-bg-dark);
}

.pricing-discounts__container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-discounts__title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin: 0 0 2.5rem;
    text-align: center;
    line-height: 1.2;
}

.pricing-discount {
    background: var(--color-bg-dark-alt);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.pricing-discount:last-child {
    margin-bottom: 0;
}

.pricing-discount__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.pricing-discount__description {
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
}

.pricing-discount__description strong {
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
}

/* Responsive: Tablet */
@media (max-width: 63.9375em) {
    .pricing-plans {
        padding: 3rem var(--container-padding);
    }

    .pricing-plans__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-plan {
        padding: 2rem 1.5rem;
    }

    .pricing-plan__title {
        font-size: 1.375rem;
    }

    .pricing-plan__price {
        font-size: 2.5rem;
    }

    .pricing-discounts {
        padding: 3rem var(--container-padding);
    }

    .pricing-discounts__title {
        font-size: 2rem;
    }

    .pricing-discount {
        padding: 1.5rem;
    }

    .pricing-plan__instructor-photo {
        width: 70px;
        height: 70px;
    }

    .pricing-plan--private .pricing-plan__title {
        font-size: 1.125rem;
    }
}

/* Responsive: Mobile */
@media (max-width: 47.9375em) {
    .pricing-plans {
        padding: 2.5rem var(--container-padding);
    }

    .pricing-plans__container {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    /* Reset all grid-column assignments on mobile */
    .pricing-plans__container .pricing-plan {
        grid-column: auto !important;
        padding: 1.75rem 1.25rem;
    }

    .pricing-plan__title {
        font-size: 1.25rem;
    }

    .pricing-plan__price {
        font-size: 2.25rem;
    }

    .pricing-discounts {
        padding: 2.5rem var(--container-padding);
    }

    .pricing-discounts__title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .pricing-discount {
        padding: 1.25rem;
    }

    .pricing-discount__title {
        font-size: 1.125rem;
    }

    .pricing-discount__description {
        font-size: 0.9375rem;
    }

    .pricing-plan__instructor-photo {
        width: 60px;
        height: 60px;
    }

    .pricing-plan--private .pricing-plan__title {
        font-size: 1rem;
    }

    .pricing-plan--private .pricing-plan__description {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer__main {
    padding: 3.75rem var(--container-padding) 2.5rem;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-dark-alt) 100%);
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3.75rem;
    margin-bottom: 3.125rem;
    padding-bottom: 3.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column 1 - Brand Statement */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    display: inline-block;
    text-decoration: none;
    transition: opacity var(--transition-normal);
}

.footer__logo:hover {
    opacity: 0.9;
}

.footer__logo-composite {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.footer__logo-text {
    font-family: 'Long Shot', Arial, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    transition: color var(--transition-normal);
}

.footer__logo-text--left {
    font-weight: 700;
}

.footer__logo-text--right {
    font-weight: 400;
}

.footer__logo-icon {
    height: 2.5rem;
    width: auto;
    display: block;
}

.footer__motto {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.625rem 0;
}

.footer__motto-belt {
    height: 1.4375rem;
    width: auto;
    flex-shrink: 0;
}

.footer__motto-text {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.footer__tagline {
    color: var(--color-text-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 400px;
}

/* Footer CTA Button */
.btn--footer-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all var(--transition-normal);
    align-self: flex-start;
    position: relative;
}

.btn--footer-cta::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
    transition: background var(--transition-normal);
}

.btn--footer-cta:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-button-hover);
}

.btn--footer-cta:hover::before {
    background: var(--color-primary-hover);
}

/* Footer Column */
.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: 1rem;
    font-weight: var(--font-weight-extra-bold);
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 0.1875rem;
    background: var(--color-primary);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer__link {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.footer__link:hover {
    color: var(--color-primary);
    opacity: 0.9;
}

.footer__link:hover::after {
    width: 100%;
}

/* Contact Column */
.footer__contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    transition: all var(--transition-normal);
}

.footer__contact-item:hover {
    background: rgba(101, 130, 193, 0.1);
}

.footer__contact-icon {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer__contact-info {
    flex: 1;
}

.footer__contact-label {
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    margin-bottom: 0.25rem;
}

.footer__contact-value {
    color: var(--color-white);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer__contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: var(--font-weight-medium);
}

.footer__contact-link:hover {
    color: var(--color-primary-hover);
    opacity: 0.9;
}

/* Social Media Section */
.footer__social-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-heading {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    margin-bottom: 1rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.25rem;
    position: relative;
}

.footer__social-link:hover {
    background: var(--color-primary);
    transform: translateY(-0.25rem) scale(1.05);
}

/* Bottom Copyright */
.footer__bottom {
    background: var(--color-bg-dark);
    padding: 1.5rem var(--container-padding);
}

.footer__bottom-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--color-text-gray);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.footer__legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--color-text-gray);
    font-size: 0.875rem;
}

.footer__legal a {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: var(--font-weight-medium);
    position: relative;
}

.footer__legal a::after {
    content: '';
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.footer__legal a:hover {
    color: var(--color-primary);
}

.footer__legal a:hover::after {
    width: 100%;
}

.footer__legal-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Attribution */
.footer__attribution {
    margin-left: auto;
}

.footer__attribution p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: var(--font-weight-medium);
}

.footer__attribution a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.footer__attribution a:hover {
    opacity: 0.8;
}

/* Responsive: Tablet */
@media (max-width: 63.9375em) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Responsive: Mobile */
@media (max-width: 47.9375em) {
    .footer__main {
        padding: 2.5rem var(--container-padding) 1.875rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.1875rem;
    }

    .footer__logo-text {
        font-size: 1.25rem;
    }

    .footer__logo-icon {
        height: 2rem;
    }

    .footer__motto-text {
        font-size: 0.9375rem;
    }

    .footer__bottom {
        padding: 1.25rem var(--container-padding);
    }

    .footer__bottom-container {
        flex-direction: column;
        gap: 0.9375rem;
        text-align: center;
    }

    .footer__legal {
        flex-direction: column;
        gap: 0.625rem;
    }

    .footer__legal-separator {
        display: none;
    }

    .footer__attribution {
        width: 100%;
        text-align: center;
        padding-top: 0.9375rem;
        margin-top: 0.9375rem;
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */

/* Animation keyframes */
@keyframes fadeInUpScroll {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Base state - hidden until in viewport */
.scroll-animate {
    opacity: 0;
}

/* Animation classes - triggered by JavaScript */
.scroll-animate.fade-in-up {
    animation: fadeInUpScroll 0.6s ease-out forwards;
}

.scroll-animate.fade-in {
    animation: fadeInScroll 0.6s ease-out forwards;
}

.scroll-animate.scale-in {
    animation: scaleInScroll 0.6s ease-out forwards;
}

/* Stagger delays for grouped elements */
.scroll-animate:nth-child(1) { animation-delay: 0s; }
.scroll-animate:nth-child(2) { animation-delay: 0.1s; }
.scroll-animate:nth-child(3) { animation-delay: 0.2s; }
.scroll-animate:nth-child(4) { animation-delay: 0.3s; }
.scroll-animate:nth-child(5) { animation-delay: 0.4s; }
.scroll-animate:nth-child(6) { animation-delay: 0.5s; }

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1 !important;
        animation: none !important;
    }
}

/* ====================================================================
   CONTACT PAGE STYLES
   ==================================================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    overflow: hidden;
    padding: calc(var(--header-height) + 4rem) var(--container-padding) 4rem;
}

.contact-hero__gradient-shape {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}

.contact-hero__gradient-shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(200, 200, 200, 0.2) 100%);
    top: -200px;
    right: -100px;
    transform: rotate(-45deg);
}

.contact-hero__gradient-shape--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.4) 0%, rgba(150, 150, 150, 0.2) 100%);
    bottom: -200px;
    left: -100px;
    transform: rotate(30deg);
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-hero__eyebrow-line {
    width: 3.75rem;
    height: auto;
    display: block;
}

.contact-hero__eyebrow-text {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.contact-hero__title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-dark-alt);
    padding: 4rem var(--container-padding);
}

.contact-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Information Card */
.contact-info-card {
    background: var(--color-bg-dark);
    padding: 2.5rem;
    border: 1px solid rgba(101, 130, 193, 0.2);
    border-radius: 0;
}

.contact-info-card__title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-info-card__subtitle {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(101, 130, 193, 0.1);
    border: 1px solid rgba(101, 130, 193, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

.contact-info-item__content {
    flex: 1;
}

.contact-info-item__label {
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.contact-info-item__value {
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.6;
}

.contact-info-item__value a {
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-info-item__value a:hover {
    color: var(--color-primary);
}

.contact-info-item__link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-info-item__link:hover {
    color: var(--color-primary-hover);
}

/* Contact Social Links */
.contact-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(101, 130, 193, 0.2);
}

.contact-social__label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.contact-social__links {
    display: flex;
    gap: 1rem;
}

.contact-social__link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(101, 130, 193, 0.1);
    border: 1px solid rgba(101, 130, 193, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.contact-social__link svg {
    width: 1.125rem;
    height: 1.125rem;
}

.contact-social__link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-0.25rem);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--color-bg-dark);
    padding: 2.5rem;
    border: 1px solid rgba(101, 130, 193, 0.2);
    border-radius: 0;
}

.contact-form-card__title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-form-card__subtitle {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form__group--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-bg-dark-alt);
    border: 1px solid rgba(101, 130, 193, 0.2);
    border-radius: 0;
    color: var(--color-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-bg-dark);
}

.contact-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236582C1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
}

.btn--submit {
    margin-top: 0.5rem;
}

/* Form Messages */
.contact-form__message {
    margin-top: 1rem;
}

.contact-form__success {
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    border-radius: 0;
    font-size: 0.875rem;
}

.contact-form__error {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    border-radius: 0;
    font-size: 0.875rem;
}

/* Hidden honeypot field */
.hidden {
    display: none !important;
}

/* Google Map Section */
.contact-map-section {
    background: var(--color-bg-dark);
    padding: 4rem var(--container-padding);
}

.contact-map-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.contact-map-info__title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.contact-map-info__address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--color-white);
    line-height: 1.6;
}

.contact-map-info__icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-map-embed {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(101, 130, 193, 0.2);
    border-radius: 0;
    overflow: hidden;
}

.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ====================================================================
   CONTACT PAGE RESPONSIVE
   ==================================================================== */

/* Tablet (max-width: 1023px) */
@media (max-width: 63.9375em) {
    .contact-hero__title {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-container {
        grid-template-columns: 1fr;
    }

    .contact-hero__gradient-shape--1 {
        width: 450px;
        height: 450px;
    }

    .contact-hero__gradient-shape--2 {
        width: 400px;
        height: 400px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 47.9375em) {
    .contact-hero {
        min-height: 400px;
        padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
    }

    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-hero__subtitle {
        font-size: 1rem;
    }

    .contact-hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero__cta-group .btn {
        width: 100%;
    }

    .contact-hero__gradient-shape--1 {
        width: 350px;
        height: 350px;
    }

    .contact-hero__gradient-shape--2 {
        width: 300px;
        height: 300px;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-card__title,
    .contact-form-card__title {
        font-size: 1.5rem;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-map-section {
        padding: 3rem 1.5rem;
    }

    .contact-map-info__title {
        font-size: 2rem;
    }

    .contact-map-embed {
        height: 300px;
    }
}
}

/* ==========================================================================
   OUR GYM PAGE STYLES
   ========================================================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-bg-dark);
    overflow: hidden;
}

.about-hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 4rem;
    padding: 6rem var(--container-padding);
}

.about-hero__left {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.about-hero__gradient-shape {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.about-hero__gradient-shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(200, 200, 200, 0.2) 100%);
    top: -200px;
    right: -100px;
    transform: rotate(-45deg);
}

.about-hero__gradient-shape--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.4) 0%, rgba(150, 150, 150, 0.2) 100%);
    bottom: -200px;
    left: -100px;
    transform: rotate(30deg);
}

.about-hero__text {
    position: relative;
    z-index: 2;
}

.about-hero__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-hero__title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    line-height: 1.1;
    margin: 0;
}

.about-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__image-container {
    position: relative;
    width: 100%;
}

.about-hero__image-wrapper {
    position: relative;
    width: 100%;
}

.about-hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-hero__image-caption {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-left: 3px solid var(--color-primary);
}

.about-hero__overlap-wrapper {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    width: 50%;
    z-index: 5;
}

.about-hero__overlap-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.about-hero__overlap-image-container:first-child {
    position: relative;
}

.about-hero__overlap-image-container--active {
    opacity: 1;
    pointer-events: auto;
}

.about-hero__image-overlap {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.about-hero__overlap-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-left: 3px solid var(--color-primary);
}

.about-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    opacity: 0.7;
    transition: all var(--transition-normal);
    animation: bounce 2s infinite;
    z-index: 10;
}

.about-hero__scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Content Section */
.about-content {
    padding: 6rem var(--container-padding);
    background: var(--color-bg-dark);
}

.about-content__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.about-content__intro {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
}

.about-content__paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

.about-content__paragraph:last-child {
    margin-bottom: 0;
}

.about-content__paragraph strong {
    color: var(--color-white);
    font-weight: var(--font-weight-extra-bold);
}

/* Leadership Section */
.leadership {
    padding: 6rem var(--container-padding);
    background: var(--color-bg-dark-alt);
}

.leadership__container {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership__title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 4rem;
}

.leadership__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.leadership__card {
    background: var(--color-bg-dark);
    border: 2px solid rgba(101, 130, 193, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.leadership__card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(101, 130, 193, 0.2);
}

.leadership__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 1.5rem;
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.leadership__card-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.leadership__card-subtitle {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leadership__card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-gray);
}

/* Leadership Bio Text Box */
.leadership__bio {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    padding: 2.5rem;
    background: var(--color-bg-dark);
    border: 2px solid rgba(101, 130, 193, 0.2);
}

.leadership__bio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.leadership__bio-text:last-child {
    margin-bottom: 0;
}

/* Leadership Credentials */
.leadership__credentials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leadership__stat {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-dark);
    border: 2px solid rgba(101, 130, 193, 0.2);
}

.leadership__stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.leadership__stat-label {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gym Philosophy Section */
.gym-philosophy {
    padding: 6rem var(--container-padding);
    background: var(--color-bg-dark);
}

.gym-philosophy__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gym-philosophy__title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 4rem;
}

.gym-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gym-philosophy__card {
    background: var(--color-bg-dark-alt);
    border: 2px solid rgba(101, 130, 193, 0.2);
    padding: 2.5rem;
    transition: all var(--transition-normal);
}

.gym-philosophy__card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(101, 130, 193, 0.15);
}

.gym-philosophy__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.gym-philosophy__card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.gym-philosophy__card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem var(--container-padding);
    background: var(--color-bg-dark-alt);
    text-align: center;
}

.cta-section__container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section__title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-section__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
}

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

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 74.9375em) { /* 1024px - Tablet Large */
    .about-hero__split {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem var(--container-padding);
    }

    .about-hero__left {
        text-align: center;
    }

    .about-hero__title {
        font-size: 3rem;
    }

    .about-hero__overlap-wrapper {
        width: 45%;
        bottom: -2rem;
        left: -2rem;
    }

    .about-hero__image-caption {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        bottom: 1rem;
        right: 1rem;
    }

    .about-hero__overlap-caption {
        font-size: 0.625rem;
        padding: 0.375rem 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .about-hero__image-overlap {
        aspect-ratio: 1 / 1;
    }

    .about-content__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .leadership__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .gym-philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 47.9375em) { /* 768px - Mobile */
    .about-hero__split {
        padding: 4rem 1.5rem;
    }

    .about-hero__title {
        font-size: 2rem;
    }

    .about-hero__gradient-shape--1 {
        width: 350px;
        height: 350px;
    }

    .about-hero__gradient-shape--2 {
        width: 300px;
        height: 300px;
    }

    .about-hero__overlap-wrapper {
        width: 40%;
        bottom: -1.5rem;
        left: -1.5rem;
    }

    .about-hero__image-caption {
        font-size: 0.625rem;
        padding: 0.5rem 0.75rem;
        bottom: 1rem;
        right: 1rem;
    }

    .about-hero__overlap-caption {
        font-size: 0.5rem;
        padding: 0.375rem 0.5rem;
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .about-hero__image-overlap {
        aspect-ratio: 1 / 1;
    }

    .about-content {
        padding: 4rem 1.5rem;
    }

    .about-content__intro {
        font-size: 1.125rem;
    }

    .leadership {
        padding: 4rem 1.5rem;
    }

    .leadership__title {
        font-size: 2rem;
    }

    .leadership__bio {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .leadership__bio-text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .leadership__credentials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gym-philosophy {
        padding: 4rem 1.5rem;
    }

    .gym-philosophy__title {
        font-size: 2rem;
    }

    .gym-philosophy__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-section__title {
        font-size: 2rem;
    }

    .cta-section__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section__buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Gallery Page Styles
   ============================================ */

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: calc(var(--header-height) + 4rem) var(--container-padding) 4rem;
    overflow: hidden;
}

.gallery-hero__gradient-shape {
    position: absolute;
    border-radius: 0;
    pointer-events: none;
    opacity: 0.4;
}

.gallery-hero__gradient-shape--1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 70%);
    transform: rotate(-45deg);
}

.gallery-hero__gradient-shape--2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.gallery-hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

.gallery-hero__title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    margin: 1rem 0;
    line-height: 1.1;
}

.gallery-hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-gray);
    max-width: 50rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters {
    background: var(--color-bg-dark);
    padding: 2rem var(--container-padding);
    border-bottom: 1px solid rgba(101, 130, 193, 0.2);
}

.gallery-filters__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gallery-filter {
    position: relative;
    background: var(--color-white);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.gallery-filter::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--color-bg-dark);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
    z-index: -1;
    transition: all 0.3s ease;
}

.gallery-filter:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1rem rgba(101, 130, 193, 0.3);
}

.gallery-filter:hover::before {
    background: var(--color-bg-dark-alt);
}

.gallery-filter.active {
    background: var(--color-white);
}

.gallery-filter.active::before {
    background: var(--color-primary);
}

/* Gallery Grid */
.gallery-grid {
    background: var(--color-bg-dark);
    padding: 4rem var(--container-padding);
    min-height: 50vh;
}

.gallery-grid__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-grid__placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg-dark-alt);
    border: 2px solid rgba(101, 130, 193, 0.2);
}

.gallery-grid__placeholder-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.gallery-grid__placeholder-subtext {
    font-size: 1rem;
    color: var(--color-text-gray);
}

.gallery-item {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item__zoom-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-white);
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item--hidden {
    display: none;
}

.gallery-item--visible {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox--active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid rgba(101, 130, 193, 0.3);
}

.lightbox__caption {
    margin-top: 1rem;
    color: var(--color-white);
    font-size: 1rem;
    text-align: center;
    max-width: 50rem;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-white);
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox__close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-white);
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox__prev {
    left: 1rem;
}

.lightbox__next {
    right: 1rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Breakpoints */

/* Tablet Large (1024px - 1199px) */
@media (max-width: 74.9375em) {
    .gallery-hero__gradient-shape--1,
    .gallery-hero__gradient-shape--2 {
        width: 450px;
        height: 450px;
    }

    .gallery-grid__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 63.9375em) {
    .gallery-hero {
        padding: calc(var(--header-height) + 3rem) var(--container-padding) 3rem;
    }

    .gallery-hero__title {
        font-size: 2.5rem;
    }

    .gallery-hero__subtitle {
        font-size: 1rem;
    }

    .gallery-hero__gradient-shape--1,
    .gallery-hero__gradient-shape--2 {
        width: 350px;
        height: 350px;
    }

    .gallery-filters__container {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-filter {
        flex-shrink: 0;
    }

    .gallery-grid__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Mobile Large (425px - 767px) */
@media (max-width: 47.9375em) {
    .gallery-hero {
        padding: calc(var(--header-height) + 2rem) var(--container-padding) 2rem;
    }

    .gallery-hero__title {
        font-size: 2rem;
    }

    .gallery-hero__subtitle {
        font-size: 0.9375rem;
    }

    .gallery-hero__gradient-shape--1,
    .gallery-hero__gradient-shape--2 {
        width: 250px;
        height: 250px;
    }

    .gallery-filters {
        padding: 1.5rem var(--container-padding);
    }

    .gallery-filter {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .gallery-grid {
        padding: 3rem var(--container-padding);
    }

    .gallery-grid__container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox__close {
        top: 0.5rem;
        right: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 2rem;
        height: 2rem;
    }

    .lightbox__prev {
        left: 0.5rem;
    }

    .lightbox__next {
        right: 0.5rem;
    }

    .lightbox__caption {
        font-size: 0.875rem;
    }
}

/* ============================================
   FREE WEEK MODAL
   ============================================ */

/* Modal Container */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

/* Modal Overlay */
.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

/* Modal Content Box */
.modal__content {
    position: relative;
    background: #000000;
    border: 2px solid rgba(101, 130, 193, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(101, 130, 193, 0.2);
}

/* Modal Close Button */
.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal__close:hover {
    color: #6582C1;
    transform: rotate(90deg);
}

/* Modal Title */
.modal__title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.modal__subtitle {
    color: #999999;
    font-size: 0.9375rem;
    margin: 0 0 2rem 0;
}

/* Form Fields */
.modal__field {
    margin-bottom: 1.5rem;
}

.modal__label {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal__required {
    color: #6582C1;
}

.modal__optional {
    color: #999999;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.modal__input {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid rgba(101, 130, 193, 0.3);
    color: #ffffff;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal__input:focus {
    outline: none;
    border-color: #6582C1;
    box-shadow: 0 0 0 3px rgba(101, 130, 193, 0.1);
}

.modal__input::placeholder {
    color: #666666;
}

/* Radio Button Group */
.modal__radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal__radio-label {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    border: 2px solid rgba(101, 130, 193, 0.2);
    transition: all 0.3s ease;
}

.modal__radio-label:hover {
    border-color: rgba(101, 130, 193, 0.5);
    background: rgba(101, 130, 193, 0.05);
}

.modal__radio {
    margin: 0 0.75rem 0 0;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #6582C1;
    cursor: pointer;
}

.modal__radio-label:has(.modal__radio:checked) {
    border-color: #6582C1;
    background: rgba(101, 130, 193, 0.1);
}

/* Submit Button */
.modal__submit {
    width: 100%;
    background: #ffffff;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-top: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
    position: relative;
}

.modal__submit::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #6582C1;
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    z-index: -1;
    transition: background 0.3s ease;
}

.modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 130, 193, 0.3);
}

.modal__submit:hover::before {
    background: #7D96D1;
}

.modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal__submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

.modal__submit-loading {
    display: none;
}

.modal__submit.loading .modal__submit-text {
    display: none;
}

.modal__submit.loading .modal__submit-loading {
    display: inline;
}

/* Success/Error Messages */
.modal__message {
    margin-top: 1.5rem;
    padding: 1rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid;
}

.modal__message.show {
    display: flex;
}

.modal__message--success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

.modal__message--error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.modal__message-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.modal__message p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.modal__message a {
    color: inherit;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 47.9375em) {
    .modal__content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }

    .modal__title {
        font-size: 1.5rem;
    }

    .modal__subtitle {
        font-size: 0.875rem;
    }

    .modal__close {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* ================================
   FAQ Section Styles
   ================================ */

.faq-section {
  background: var(--color-bg-dark);
  padding: var(--spacing-xxxl) 0;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--color-bg-dark-alt);
  padding: 2rem;
  border: 1px solid rgba(101, 130, 193, 0.2);
  border-radius: 0;
}

.faq-question {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--color-text-gray);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Content section styles */
.content-section {
  background: var(--color-bg-dark);
  padding: 4rem 0;
}

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

.content-container h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1.5rem;
}

.content-container p {
  color: var(--color-white);
  line-height: 1.8;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .content-container h2 {
    font-size: 2rem;
  }
}

/* Affiliate Gym Logos - Our Gym Page */
.about-content__left a[href*="provinggroundsjj"]:hover,
.about-content__left a[href*="allday-mma"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(101, 130, 193, 0.3) !important;
}
