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

/* B version: premium 5-star / sporty theme */
:root {
    --primary: #C41E3A;
    --primary-dark: #8B1538;
    --primary-light: #E63946;
    --gold: #C9A961;
    --gold-light: #E5D4A1;
    --gold-dark: #A68B4F;
    --black: #1D1D1F;
    --gray-50: #FBFBFD;
    --gray-100: #F5F5F7;
    --gray-200: #E8E8ED;
    --gray-300: #D2D2D7;
    --gray-600: #86868B;
    --gray-700: #515154;
    --white: #FFFFFF;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
    /* B theme tokens */
    --b-dark: #0f1419;
    --b-nav-bg: #0f1419;
    --b-hero-overlay: linear-gradient(180deg, rgba(15, 20, 25, 0.38) 0%, rgba(15, 20, 25, 0.55) 100%);
    --b-accent: #C41E3A;
    --b-cta-light: #e8e8ed;
    --b-tennis: #b8d84a;
    --b-tennis-dark: #9bc23a;
    --b-surface: #eef0f4;
    --b-surface-alt: #e4e7ec;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

/* Skip Link for Accessibility - hidden off-screen until focused */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

body {
    font-family: var(--font-inter);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation - B: transparent over hero, blurred after scroll; aligned with page */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* More horizontal room for German nav (longer labels) */
html[lang="de"] .navbar .container {
    max-width: 1440px;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Light nav (over light page content): light background, black logo and links */
.navbar.light {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.navbar.light .logo {
    color: var(--black);
}

.navbar.light .nav-menu li a {
    color: var(--gray-700);
    text-shadow: none;
}

.navbar.light .nav-menu li a:hover,
.navbar.light .nav-menu li a.active {
    color: var(--black);
}

.navbar.light .nav-menu li a.active::before {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.navbar.light .nav-dropdown-toggle.active {
    color: var(--black);
}

.navbar.light .dropdown-arrow {
    color: var(--gray-600);
}

.navbar.light .nav-menu .btn-primary {
    background: var(--primary);
    color: var(--white);
}

.navbar.light .nav-menu .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.navbar.light .mobile-menu-toggle span {
    background: var(--black);
}

.navbar.light .mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
}

.navbar.light .nav-dropdown-menu {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.navbar.light .nav-dropdown-menu li a {
    color: var(--gray-700);
}

.navbar.light .nav-dropdown-menu li a:hover,
.navbar.light .nav-dropdown-menu li a.active {
    color: var(--black);
    background: var(--gray-50);
}

.navbar.light .nav-dropdown-menu li a.active::before {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    padding: 0.75rem 0;
    gap: 1.5rem;
    flex-wrap: wrap;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
    min-width: 48px;
    height: 48px;
}

/* Logo: white on transparent (over hero) and on dark (scrolled) */
.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    visibility: visible;
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
}

.navbar.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

/* Logo: black on light background */
.navbar.light .logo-img {
    filter: brightness(0);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.logo-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 1.75rem;
    flex-wrap: wrap;
    overflow: visible;
}

.nav-menu li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0 0.5rem 1.25rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.navbar.scrolled .nav-menu li a {
    text-shadow: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--white);
}

/* Slightly smaller nav text for longer languages so items don’t wrap as easily */
html[lang="pt"] .nav-menu li a,
html[lang="de"] .nav-menu li a {
    font-size: 0.75rem;
}

.nav-dropdown-toggle.active {
    color: var(--white);
}

/* Active page: tennis-ball green circle on left (replaces underline) */
.nav-menu li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d4f08a, var(--b-tennis) 45%, var(--b-tennis-dark));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.nav-menu li a.active::after {
    display: none;
}

/* Navigation Dropdown - modern card style */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin-left: 0.35rem;
    font-size: 0;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
    opacity: 0.9;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5l4 4 4-4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5l4 4 4-4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: currentColor;
}
.nav-dropdown[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 220px;
    background: rgba(28, 32, 38, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    pointer-events: none;
}

.nav-dropdown[aria-expanded="true"] .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.nav-dropdown-menu li {
    width: 100%;
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    border-radius: 12px;
    position: relative;
}

.nav-dropdown-menu li a::before {
    content: none;
}

.nav-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-dropdown-menu li a.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

/* Tennis ball indicator inside dropdown for active item */
.nav-dropdown-menu li a.active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d4f08a, var(--b-tennis) 45%, var(--b-tennis-dark));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.nav-dropdown-menu li a.active::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Overlay when menu is open – full screen behind menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .navbar:not(.light) {
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    
    /* Mobile menu: full screen, full width (when moved to body it’s viewport-sized) */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 100vh !important;
        margin: 0 !important;
        padding: 5.5rem 1.25rem 2rem 1.25rem !important;
        background: var(--b-nav-bg) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        list-style: none !important;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        z-index: 999;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box !important;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    /* Force links visible: white on dark menu (override .navbar.light) */
    .nav-menu li a,
    .navbar .nav-menu li a,
    .navbar.light .nav-menu li a {
        color: #fff !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        align-items: center;
        padding: 1.125rem 0 !important;
        gap: 0.75rem;
        font-size: 1.125rem !important;
        font-weight: 600;
        min-height: 56px;
        text-decoration: none;
    }

    .nav-menu li a.active::before {
        position: static;
        transform: none;
        flex-shrink: 0;
    }

    /* Academy dropdown on mobile */
    .nav-menu .nav-dropdown > a {
        padding-right: 1rem;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1.25rem;
        margin: 0 0 0.5rem 0;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        display: none;
        overflow: hidden;
    }
    
    .nav-dropdown[aria-expanded="true"] .nav-dropdown-menu {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .nav-dropdown-menu li {
        border-bottom: none;
    }
    
    .nav-dropdown-menu li a,
    .navbar.light .nav-menu .nav-dropdown-menu li a {
        color: rgba(255, 255, 255, 0.95) !important;
        padding: 1rem 1.25rem !important;
        min-height: 52px;
        font-size: 1.0625rem !important;
    }
    
    /* Book Now in mobile menu */
    .nav-menu li .btn-primary,
    .navbar.light .nav-menu li .btn-primary {
        width: 100% !important;
        justify-content: center;
        margin-left: 0 !important;
        padding: 1rem 1.75rem !important;
        font-size: 1.125rem !important;
        min-height: 56px;
        background: var(--b-cta-light) !important;
        color: var(--b-dark) !important;
    }
    
    /* Language switcher on mobile */
    .nav-menu li .language-switcher {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-menu li .language-switcher .lang-trigger-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 52px;
    }
}

@media (max-width: 1023px) and (max-height: 500px) {
    .nav-menu {
        padding-top: 5rem !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Unified Button System - B: slightly refined, optional pill */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.25);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font-inter);
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(196, 30, 58, 0.2);
}

/* Navigation button - B: pill, light bg (premium ref) */
.nav-menu .btn-primary {
    background: var(--b-cta-light);
    color: var(--b-dark);
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
}

.nav-menu .btn-primary:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.nav-menu .btn-primary.active {
    background: var(--white);
    color: var(--b-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu .btn-primary.active::after {
    display: none;
}

/* Premium CTA Buttons - Unified with clean buttons */
.premium-cta,
.premium-cta-large {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font-inter);
    letter-spacing: 0.01em;
}

.premium-cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.premium-cta:hover,
.premium-cta-large:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
}

.premium-cta:active,
.premium-cta-large:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.25);
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-left: 0.5rem;
}

.premium-cta:hover .cta-arrow,
.premium-cta-large:hover .cta-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-inter);
    letter-spacing: 0.01em;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
    transform: translateY(-1px);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(196, 30, 58, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    max-width: 800px;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.trust-icon {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.clean-hero .hero-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 20;
    pointer-events: none;
    box-sizing: border-box;
}

.clean-hero .hero-arrow {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.clean-hero .hero-arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-arrow-prev:hover svg {
    transform: translateX(-2px);
}

.hero-arrow-next:hover svg {
    transform: translateX(2px);
}

.hero-arrow:active {
    transform: scale(0.95);
}

.clean-hero .hero-indicators {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
}

.clean-hero .hero-indicator {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-hero .hero-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.clean-hero .hero-indicator.active {
    width: 28px;
    border-radius: 4px;
    background: var(--white);
}

/* Unified Design System - Page Heroes */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .page-hero {
        height: 35vh;
        min-height: 280px;
        max-height: 350px;
    }
}

.page-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 1.5rem 2rem;
}

.page-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Sections */
.section-padding {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

.bg-light {
    background: var(--gray-50);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.bg-light .container {
    position: relative;
    z-index: 10;
}

/* Unified Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.section-header-left {
    text-align: left;
    max-width: none;
    margin: 0 0 3rem;
}

@media (min-width: 768px) {
    .section-header-left {
        margin: 0 0 4rem;
    }
}

/* Ensure all sections have consistent structure */
section {
    position: relative;
}

section:not(.hero):not(.page-hero) {
    overflow: hidden;
}

/* Unified Card Component */
.unified-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.unified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.unified-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(196, 30, 58, 0.1);
    transform: translateY(-4px);
}

.unified-card:hover::before {
    transform: scaleX(1);
}

/* Consistent Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .content-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    border: 1px solid rgba(196, 30, 58, 0.2);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--black);
}

h1.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.gradient-text {
    color: var(--primary);
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--gray-600);
    font-weight: 300;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    opacity: 0.6;
    animation: statsPulse 8s ease-in-out infinite;
}

@keyframes statsPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.stats-section .container {
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: left 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stat-item:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Intro Section */
.intro {
    position: relative;
    overflow: hidden;
}

.intro-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    opacity: 0.6;
    z-index: 0;
}

.intro .container {
    position: relative;
    z-index: 10;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.intro-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(196, 30, 58, 0.1);
    transform: translateY(-6px) scale(1.02);
    background: var(--white);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.25rem;
    padding: 2px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    background: rgba(196, 30, 58, 0.1);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.2);
}

.feature-card:hover .feature-icon-wrapper::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--gray-700);
}

.intro-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: visible;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.decorative-corner {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 0 0 100px 0;
    opacity: 0.1;
    z-index: -1;
}

.badge-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1.5px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.badge-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(196, 30, 58, 0.1);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Facilities Section */
.facilities {
    position: relative;
    overflow: hidden;
}

.facilities-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    opacity: 0.4;
    z-index: 0;
}

.facilities .container {
    position: relative;
    z-index: 10;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.facility-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.facility-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(196, 30, 58, 0.2);
    transform: translateY(-8px) scale(1.02);
    background: var(--white);
}

.facility-card:hover::after {
    opacity: 1;
}

.facility-indicator {
    width: 4px;
    height: 32px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 1rem;
    transition: height 0.3s ease;
}

.facility-card:hover .facility-indicator {
    height: 48px;
}

.facility-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.facility-icon-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 1.5rem;
    padding: 3px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.facility-card:hover .facility-icon-box {
    transform: scale(1.2) rotate(10deg);
    background: rgba(196, 30, 58, 0.15);
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.25);
}

.facility-card:hover .facility-icon-box::before {
    opacity: 1;
}

.facility-icon-text {
    font-size: 2rem;
}

.facility-card h3 {
    font-weight: 700;
    color: var(--black);
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
}

.facility-card:hover h3 {
    color: var(--primary);
}

.facility-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.facility-card:hover p {
    color: var(--gray-700);
}

.facilities-showcase {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
}

.facilities-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.facilities-showcase:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.showcase-overlay h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.showcase-overlay p {
    font-size: 1.125rem;
    font-weight: 300;
    opacity: 0.9;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

/* Memberships */
.memberships {
    position: relative;
    overflow: hidden;
}

.memberships-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    z-index: 0;
}

.memberships .container {
    position: relative;
    z-index: 10;
}

.membership-showcase {
    position: relative;
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.membership-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(196, 30, 58, 0.03);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(196, 30, 58, 0.1);
    transform: translateY(-8px) scale(1.02);
    background: var(--white);
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card:hover::after {
    opacity: 1;
}

.plan-card.featured {
    border: 2px solid transparent;
    border: 2px solid var(--primary);
    box-shadow: 0 24px 72px rgba(196, 30, 58, 0.2), 0 0 0 1px rgba(196, 30, 58, 0.3);
    transform: scale(1.05);
}

.plan-card.featured::before {
    display: none;
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 32px 96px rgba(196, 30, 58, 0.3), 0 0 0 1px rgba(196, 30, 58, 0.4);
}

/* Pricing Comparison */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.comparison-item.highlight {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.15);
}

.comparison-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-display);
}

.comparison-item.highlight .comparison-value {
    color: var(--primary);
}

.comparison-savings {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 9999px;
    display: inline-block;
    width: fit-content;
    margin-top: 0.25rem;
}

.comparison-item.highlight .comparison-savings {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-dark);
}

.plan-badge {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.625rem 2rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.1);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(196, 30, 58, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(196, 30, 58, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.15);
    }
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.plan-card h3 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
    line-height: 1.2;
}

.plan-card.featured h3 {
    color: var(--primary);
}

.plan-period {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.plan-price-wrapper {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.plan-currency {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: baseline;
}

.plan-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-display);
}

.plan-card.featured .plan-amount {
    color: var(--primary);
}

.plan-period-small {
    font-size: 1.125rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: 0.25rem;
}

.plan-monthly-equivalent {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-savings {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}

.plan-savings.best-value {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.875rem 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

.feature-icon.highlight {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.plan-card:hover .plan-features li {
    color: var(--gray-800);
}

.plan-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(196, 30, 58, 0.15);
}

.plan-card.featured .feature-icon {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
}

.plan-cta {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

/* Footer - B: premium dark */
.footer {
    background: var(--b-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem 3rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-col:first-child .footer-logo { margin-left: auto; margin-right: auto; }
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-col address { font-style: normal; }
.footer-col address p { margin-bottom: 0.5rem; }

.footer-col h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-col a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col a:hover::before {
    width: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.1);
}

.footer-about-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
}

.footer-about-social .social-link-icon {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.35rem 0;
    border: none;
    background: none;
    transition: color 0.25s ease;
}

.footer-about-social .social-link-icon:hover {
    color: var(--primary);
}

.footer-about-social .social-link-icon::before {
    display: none;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .footer-copy { justify-self: start; }
.footer-bottom .footer-dev { justify-self: center; text-align: center; }
.footer-bottom .footer-right { justify-self: end; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom .footer-legal { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom .footer-legal a { white-space: nowrap; }

.footer-bottom p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom .footer-copy,
    .footer-bottom .footer-dev,
    .footer-bottom .footer-right { justify-self: center; }
    .footer-bottom .footer-legal { justify-content: center; }
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.scroll-top {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
}

/* Skip Link for Accessibility - hidden off-screen until focused */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 0 0 0 150px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(196, 30, 58, 0.2);
    transform: translateY(-8px) scale(1.02);
    background: var(--white);
}

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

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.testimonial-card blockquote {
    margin: 0 0 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: var(--font-display);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.testimonial-card:hover .author-avatar::before {
    opacity: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: var(--black);
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info span {
    color: var(--gray-600);
    font-size: 0.75rem;
}

/* FAQ Section */
.faq {
    position: relative;
    overflow: hidden;
}

.faq-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    opacity: 0.5;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 1.5rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(196, 30, 58, 0.15);
    transform: translateX(4px);
    background: var(--white);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item[aria-expanded="true"] {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(196, 30, 58, 0.2);
}

.faq-item[aria-expanded="true"]::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(196, 30, 58, 0.02);
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    background: rgba(196, 30, 58, 0.04);
    color: var(--primary);
    padding-bottom: 1.5rem;
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.1);
}

.faq-question:hover .faq-icon {
    background: rgba(196, 30, 58, 0.15);
    transform: scale(1.1);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg) scale(1.1);
    background: rgba(196, 30, 58, 0.2);
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    color: var(--gray-700);
    line-height: 1.8;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--primary-dark);
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover glow effect */
.feature-card:hover,
.facility-card:hover,
.plan-card:hover,
.testimonial-card:hover {
    animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: inherit;
    }
    50% {
        box-shadow: inherit, 0 0 20px rgba(196, 30, 58, 0.1);
    }
}

/* Smooth card entrance */
.feature-card,
.facility-card,
.plan-card,
.testimonial-card,
.faq-item {
    animation: cardEntrance 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.facility-card:nth-child(1) { animation-delay: 0.1s; }
.facility-card:nth-child(2) { animation-delay: 0.2s; }
.facility-card:nth-child(3) { animation-delay: 0.3s; }
.facility-card:nth-child(4) { animation-delay: 0.4s; }
.facility-card:nth-child(5) { animation-delay: 0.5s; }

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CTA Section */
.cta {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    opacity: 0.6;
    animation: ctaPatternMove 20s linear infinite;
    pointer-events: none;
}

@keyframes ctaPatternMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px -100px, 50px 50px; }
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-trust {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.cta-trust strong {
    font-weight: 700;
    opacity: 1;
}

.cta-urgency {
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4);
    }
    50% {
        border-color: rgba(196, 30, 58, 0.4);
        box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
    }
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta .btn-primary:hover {
    background: var(--gray-50);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Floating Booking Button */
.floating-booking-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 12px 48px rgba(196, 30, 58, 0.5), 0 0 0 1px rgba(196, 30, 58, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatingPulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-booking-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 9999px;
    padding: 2px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-booking-btn:hover::before {
    opacity: 1;
}

.floating-booking-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 64px rgba(196, 30, 58, 0.6), 0 0 0 1px rgba(196, 30, 58, 0.4);
}

.floating-btn-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.floating-btn-text {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.floating-btn-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    background: var(--primary);
    opacity: 0.3;
    animation: pulseRing 2s ease-out infinite;
    z-index: -1;
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 12px 48px rgba(196, 30, 58, 0.5), 0 0 0 1px rgba(196, 30, 58, 0.3);
    }
    50% {
        box-shadow: 0 16px 56px rgba(196, 30, 58, 0.6), 0 0 0 2px rgba(196, 30, 58, 0.4);
    }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(-10deg); }
    75% { transform: translateY(-4px) rotate(10deg); }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-booking-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .floating-btn-text {
        display: none;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    /* Visible when loaded; no JS needed. Optional: add .loaded via JS for fade-in. */
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea,
select {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="time"]:hover,
textarea:hover,
select:hover {
    border-color: var(--gray-400);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1), 0 4px 12px rgba(196, 30, 58, 0.1);
    transform: translateY(-1px);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: var(--primary);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black);
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-controls,
    .hero-indicators,
    .scroll-top,
    .btn {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Booking Flow Styles */
.booking-steps {
    margin-bottom: 3rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 150px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 3px solid var(--gray-200);
}

.step.active .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: var(--primary);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 0.5rem;
    transition: background 0.3s ease;
}

.step.active ~ .step-line,
.step-line:has(+ .step.active) {
    background: var(--primary);
}

/* Quick Action Cards */
.quick-actions {
    margin-bottom: 3rem;
}

.quick-action-card {
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.quick-action-card:hover::before {
    transform: scaleX(1);
}

.quick-action-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.quick-action-card.featured {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.2);
}

.quick-action-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.quick-action-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.quick-action-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.booking-type-badge {
    animation: fadeIn 0.3s ease;
}

/* Membership CTA Section */
.membership-cta-section {
    animation: fadeInUp 0.6s ease;
}

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

/* Clean Design System - Apple-like Minimal Aesthetic */

/* Clean Hero Section - B: aligned with nav height, full-bleed under nav */
.clean-hero {
    position: relative;
    height: 80vh;
    min-height: 380px;
    max-height: 630px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 150px;
    padding-bottom: 150px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .clean-hero {
        height: 50vh;
        min-height: 340px;
        max-height: 480px;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

.clean-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

.clean-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--b-hero-overlay);
    z-index: 1;
}

.clean-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.clean-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 2rem;
}

.clean-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 32px rgba(0, 0, 0, 0.35);
    transition: opacity 0.4s ease;
}

.clean-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
    transition: opacity 0.4s ease;
}

.clean-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    transition: opacity 0.4s ease;
    flex-wrap: wrap;
}

/* Clean Buttons - B: refined, pill where in hero */
.clean-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.clean-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Hero CTA: white bg, dark text (VER MAIS style) */
.clean-hero .clean-btn-primary {
    background: var(--white);
    color: var(--b-dark);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.clean-hero .clean-btn-primary:hover {
    background: var(--b-cta-light);
    color: var(--b-dark);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.clean-btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.clean-btn-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* For dark backgrounds (hero), use white */
.clean-hero .clean-btn-link {
    color: var(--white);
    border-bottom-color: transparent;
}

.clean-hero .clean-btn-link:hover {
    color: var(--white);
    opacity: 0.9;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.clean-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-inter);
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
}

.clean-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
    transform: translateY(-1px);
}

.clean-btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(196, 30, 58, 0.15);
}

/* Clean Stats Section */
.clean-stats {
    padding: 5rem 0;
    background: var(--gray-50);
}

.clean-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.clean-stat-item {
    text-align: center;
}

.clean-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.clean-stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* Clean Intro Section - B: more padding, premium feel */
.clean-intro {
    padding: 4.5rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .clean-intro {
        padding: 5.5rem 0;
    }
}

.clean-intro[style*="gray-50"] {
    background: var(--gray-50) !important;
}

.clean-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Section titles: same typography as hero/slider for design system */
.clean-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.clean-section-title[style*="text-align: left"] {
    text-align: center !important;
}

/* B: contextual underlay – one word per section, low opacity, behind title */
.clean-section-title::before {
    content: attr(data-watermark);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    color: var(--black);
    opacity: 0.06;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -0.02em;
}

/* Section-specific watermarks (match the section) */
.clean-facilities .clean-section-title::before {
    content: 'FACILITIES';
}

.clean-memberships .clean-section-title::before {
    content: 'PLANS';
}

main > section.clean-intro:first-of-type .clean-section-title::before {
    content: 'EXCELLENCE';
}

section.clean-intro[aria-labelledby="services-heading"] .clean-section-title::before {
    content: 'SERVICES';
}

section.clean-intro[aria-labelledby="quick-links-heading"] .clean-section-title::before {
    content: 'LINKS';
}

.clean-testimonials .clean-section-title::before {
    content: 'STORIES';
}

.clean-faq .clean-section-title::before {
    content: 'FAQ';
}

/* Contextual watermarks by heading id (subpages) */
#facilities-heading.clean-section-title::before,
#facilities-grid-heading.clean-section-title::before { content: 'FACILITIES'; }
#programs-heading.clean-section-title::before { content: 'PROGRAMS'; }
#services-heading.clean-section-title::before { content: 'SERVICES'; }
#sessions-heading.clean-section-title::before { content: 'SESSIONS'; }
#pricing-heading.clean-section-title::before { content: 'PRICING'; }
#benefits-heading.clean-section-title::before { content: 'BENEFITS'; }
#about-heading.clean-section-title::before { content: 'ABOUT'; }
#how-it-works-heading.clean-section-title::before { content: 'GUIDE'; }
#contact-heading.clean-section-title::before { content: 'CONTACT'; }
#memberships-heading.clean-section-title::before { content: 'PLANS'; }
#academy-heading.clean-section-title::before { content: 'ACADEMY'; }
#coaches-heading.clean-section-title::before { content: 'COACHES'; }

/* Thank You page: no watermark, clean confirmation layout */
.thank-you-section .clean-section-title::before,
.thank-you-section .thank-you-title::before {
    content: none !important;
}
.thank-you-section {
    padding: 4rem 0 5rem;
    text-align: center;
    background: var(--gray-50);
}
.thank-you-inner {
    max-width: 560px;
    margin: 0 auto;
}
.thank-you-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(196, 30, 58, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.thank-you-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1rem;
}
.thank-you-message {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--gray-700);
    margin-bottom: 2rem;
}
.thank-you-message .thank-you-phone {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.thank-you-message .thank-you-phone:hover {
    text-decoration: underline;
}
.thank-you-discover {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}
.thank-you-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.thank-you-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin-bottom: 0.25rem;
}
.thank-you-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
}
.thank-you-links .clean-btn-outline,
.thank-you-links .clean-btn-link {
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
}
.thank-you-home {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
}
.thank-you-home:hover {
    color: var(--primary);
    text-decoration: underline;
}
@media (min-width: 640px) {
    .thank-you-section {
        padding: 5rem 0 6rem;
    }
    .thank-you-links {
        gap: 0.75rem;
    }
}

/* Coaches section: title → image → text → 3 cards */
.coaches-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.coaches-section-title {
    text-align: center;
    margin-bottom: 2rem;
}
.coaches-section-image {
    width: 100%;
    margin-bottom: 2.5rem;
}
.coaches-section-image .image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.coaches-section-image img {
    width: 100%;
    height: auto;
    display: block;
}
.coaches-section-text {
    text-align: center;
    margin-bottom: 2.5rem;
}
.coaches-section-text .clean-section-description {
    margin-bottom: 1.5rem;
}
.coaches-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2.5rem;
}
.coaches-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.coaches-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.coaches-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.coaches-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.coaches-card-desc {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}
.coaches-section-actions {
    justify-content: center;
}
@media (max-width: 768px) {
    .coaches-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Contact page - B */
.contact-page .contact-intro {
    background: var(--gray-50);
}
.contact-page .contact-intro .container {
    max-width: 1100px;
    margin: 0 auto;
}
.contact-intro-inner {
    text-align: center;
    margin-bottom: 3rem;
}
.contact-lead {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}
.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.25rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.contact-details {
    font-style: normal;
}
.contact-detail {
    margin-bottom: 1.75rem;
}
.contact-detail:last-child {
    margin-bottom: 0;
}
.contact-detail-hours {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}
.contact-detail-value {
    margin: 0 0 0.25rem;
    color: var(--gray-800);
    line-height: 1.6;
    font-size: 1rem;
}
.contact-detail-value a {
    color: var(--b-accent);
    font-weight: 600;
    text-decoration: none;
}
.contact-detail-value a:hover {
    text-decoration: underline;
}
.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b-accent);
    text-decoration: none;
}
.contact-link:hover {
    text-decoration: underline;
}
.contact-detail-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}
.contact-form-note {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-field {
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.contact-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}
.contact-input:focus {
    outline: none;
    border-color: var(--b-accent);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}
.contact-input::placeholder {
    color: var(--gray-400);
}
.contact-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.contact-submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.875rem 1.5rem;
}
.contact-map-card {
    background: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-map-header {
    padding: 2rem 2.25rem;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}
.contact-map-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.5rem;
}
.contact-map-address {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}
.contact-map-frame {
    position: relative;
    width: 100%;
    height: 420px;
    background: var(--gray-100);
}
.contact-map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.75rem;
    }
    .contact-map-frame {
        height: 320px;
    }
}

#courts-heading.clean-section-title::before { content: 'COURTS'; }
#booking-heading.clean-section-title::before,
#booking-info-heading.clean-section-title::before { content: 'BOOK'; }
#location-heading.clean-section-title::before { content: 'LOCATION'; }
#gallery-heading.clean-section-title::before { content: 'GALLERY'; }
#included-heading.clean-section-title::before { content: 'INCLUDED'; }
#courts-details-heading.clean-section-title::before { content: 'DETAILS'; }

.clean-cta .clean-cta-title {
    position: relative;
    z-index: 1;
}

.clean-cta .clean-cta-title::before {
    content: 'JOIN';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    color: var(--white);
    opacity: 0.08;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -0.02em;
}

/* B: red accent for key phrases */
.clean-section-title .gradient-text,
.gradient-text {
    color: var(--b-accent);
    font-weight: 800;
}

.clean-section-description {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.clean-intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.clean-intro-text:last-of-type {
    margin-bottom: 3rem;
}

.clean-intro-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Excellence Section Feature Boxes */
.clean-intro-content > div[style*="grid-template-columns"] > div {
    transition: all 0.3s ease;
}

.clean-intro-content > div[style*="grid-template-columns"] > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.15);
    background: rgba(196, 30, 58, 0.08) !important;
    border-color: var(--primary) !important;
}

/* Clean Facilities Section - B: premium spacing */
.clean-facilities {
    padding: 4.5rem 0;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .clean-facilities {
        padding: 5.5rem 0;
    }
}

.clean-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .clean-facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.clean-facility-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 1.25rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 20, 25, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.clean-facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.clean-facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(196, 30, 58, 0.08);
    border-color: rgba(196, 30, 58, 0.25);
}

.clean-facility-card:hover::before {
    transform: scaleX(1);
}

.facility-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
}

.clean-facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(5deg);
}

.clean-facility-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.clean-facility-card:hover h3 {
    color: var(--primary);
}

.clean-facility-card p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.facility-feature {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(196, 30, 58, 0.08);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.clean-facility-card:hover .facility-feature {
    background: rgba(196, 30, 58, 0.12);
    transform: translateY(-2px);
}

/* Legacy support */
.clean-facility-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 20, 25, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 20, 25, 0.06);
}

.clean-facility-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 30, 58, 0.2);
}

.clean-section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Clean Memberships Section - B: more presence */
.clean-memberships {
    padding: 4.5rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .clean-memberships {
        padding: 5.5rem 0;
    }
}

.clean-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.clean-plan {
    padding: 3rem 2rem;
    background: var(--white);
    border: 1px solid rgba(15, 20, 25, 0.08);
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.06);
    display: flex;
    flex-direction: column;
}

.clean-plan > a {
    margin-top: auto;
}

.clean-plan:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(196, 30, 58, 0.08);
}

.clean-plan-featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.12);
}

.clean-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.clean-plan-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.clean-plan-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.clean-plan-period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.clean-plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.clean-plan-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.clean-plan-features li:last-child {
    border-bottom: none;
}

.clean-plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 600;
    margin-right: 0.75rem;
}

/* Clean Testimonials Section */
.clean-testimonials {
    padding: 4.5rem 0;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .clean-testimonials {
        padding: 4rem 0;
    }
}

.clean-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.clean-testimonial {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 20, 25, 0.08);
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.06);
    transition: all 0.35s ease;
}

.clean-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 30, 58, 0.15);
}

.clean-testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

.clean-testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.clean-testimonial-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.clean-testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Clean FAQ Section */
.clean-faq {
    padding: 4.5rem 0;
    background: var(--gray-50);
}

.clean-faq .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .clean-faq {
        padding: 5rem 0;
    }
}

.clean-faq-list {
    max-width: 720px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clean-faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.clean-faq-item:hover {
    border-color: var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.clean-faq-item[open] {
    border-color: rgba(196, 30, 58, 0.25);
    box-shadow: 0 2px 12px rgba(196, 30, 58, 0.08);
}

.clean-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.clean-faq-question::-webkit-details-marker,
.clean-faq-question::marker {
    display: none;
}

/* Question text takes space; icon stays right */
.clean-faq-question > span:first-of-type {
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
}

.clean-faq-question:hover {
    color: var(--primary);
}

.clean-faq-item[open] .clean-faq-question {
    color: var(--primary);
}

.clean-faq-question:focus {
    outline: none;
}

.clean-faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.clean-faq-icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 50%;
    transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}

.clean-faq-question:hover .clean-faq-icon,
.clean-faq-item[open] .clean-faq-icon {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
}

.clean-faq-question[aria-expanded="true"] .clean-faq-icon,
.clean-faq-item[open] .clean-faq-icon {
    transform: rotate(45deg);
}

.clean-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

.clean-faq-answer p {
    margin: 0;
    padding: 0 0 0 0;
}

.clean-faq-answer p + p {
    margin-top: 0.75rem;
}

.clean-faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.clean-faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .clean-faq {
        padding: 2.5rem 0;
    }
    .clean-faq-list {
        margin-top: 1.5rem;
        gap: 0.375rem;
    }
    .clean-faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    .clean-faq-question > span:first-of-type {
        padding-right: 0.25rem;
    }
    .clean-faq-icon {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.1rem;
    }
    .clean-faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Clean CTA Section - B: dark premium block */
.clean-cta {
    padding: 4.5rem 0;
    background: var(--b-dark);
}

@media (min-width: 768px) {
    .clean-cta {
        padding: 5.5rem 0;
    }
}

.clean-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.clean-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.clean-cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.clean-cta .clean-btn-primary {
    background: var(--white);
    color: var(--b-dark);
}

.clean-cta .clean-btn-primary:hover {
    background: var(--b-cta-light);
    color: var(--b-dark);
}

.clean-cta .clean-btn-link {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.clean-cta .clean-btn-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.clean-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for clean design */
@media (max-width: 768px) {
    .clean-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .clean-section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .clean-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .clean-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .clean-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .clean-hero-actions,
    .clean-intro-actions,
    .clean-cta-actions {
        flex-direction: column;
    }
    
    .clean-btn-primary,
    .clean-btn-outline {
        width: 100%;
    }
    
    .intro-grid {
        gap: 2rem;
    }
    
    .intro-image .image-wrapper {
        border-radius: 1rem;
    }
}

/* Image-Text Alternating Sections */
.intro-image {
    position: relative;
}

.intro-image .image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-image .image-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Responsive image-text layout */
@media (min-width: 1024px) {
    .intro-grid[style*="grid-template-columns: 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .intro-grid .intro-image[style*="order: 1"] {
        order: 1 !important;
    }
    
    .intro-grid .intro-image[style*="order: 2"] {
        order: 2 !important;
    }
    
    .intro-grid .clean-intro-content[style*="order: 1"] {
        order: 1 !important;
    }
    
    .intro-grid .clean-intro-content[style*="order: 2"] {
        order: 2 !important;
    }
}

/* Enhanced visual effects */
.clean-facility-item,
.clean-plan {
    will-change: transform;
}

.clean-facility-item:active,
.clean-plan:active {
    transform: translateY(-2px);
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Better focus states for accessibility */
.clean-btn-primary:focus,
.clean-btn-outline:focus,
.clean-btn-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Booking page enhancements */
.clean-plan[data-action] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-plan[data-action]:hover {
    transform: translateY(-4px);
    cursor: pointer;
}

.clean-plan[data-action]:active {
    transform: translateY(-2px);
}

/* Form input enhancements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1) !important;
}

/* Radio button styling improvements */
input[type="radio"] {
    cursor: pointer;
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
}

/* Booking type badge */
.booking-type-badge {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-line {
        width: 2px;
        height: 2rem;
        margin: 0;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .membership-cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Slider arrows at bottom, center-aligned on mobile */
    .clean-hero .hero-controls {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0.75rem;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        pointer-events: none;
    }
    
    .clean-hero .hero-arrow-prev,
    .clean-hero .hero-arrow-next {
        position: static;
        margin: 0;
        padding: 0;
    }
    
    .clean-hero .hero-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: rgba(0, 0, 0, 0.35);
        border-color: rgba(255, 255, 255, 0.3);
        pointer-events: all;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .clean-hero.hero-arrows-visible .hero-arrow {
        opacity: 1;
    }
    
    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .clean-hero .hero-indicators {
        bottom: 3.5rem;
        gap: 0.375rem;
    }
    
    .clean-hero .hero-indicator {
        width: 7px;
        height: 7px;
    }
    
    .clean-hero .hero-indicator.active {
        width: 20px;
        border-radius: 4px;
    }
}

/* Language Switcher – button + modal */
.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1000;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.nav-menu li .language-switcher {
    margin-left: 0;
}

.lang-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-trigger-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.lang-trigger-btn[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.navbar.light .lang-trigger-btn {
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--gray-800);
}

.navbar.light .lang-trigger-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.navbar.light .lang-trigger-btn[aria-expanded="true"] {
    border-color: var(--b-accent);
    color: var(--b-accent);
    background: rgba(196, 30, 58, 0.08);
}

.lang-trigger-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.lang-trigger-code {
    font-weight: 700;
}

/* Language modal */
.lang-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lang-modal.open {
    opacity: 1;
    visibility: visible;
}

.lang-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lang-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
    transform: scale(0.96);
    transition: transform 0.25s ease;
}

.lang-modal.open .lang-modal-dialog {
    transform: scale(1);
}

.lang-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.lang-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.lang-modal-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.lang-modal-option:hover:not(.disabled) {
    background: var(--gray-100);
    border-color: var(--gray-200);
    transform: translateY(-2px);
}

.lang-modal-option.active {
    background: rgba(196, 30, 58, 0.1);
    border-color: var(--b-accent);
    color: var(--b-accent);
}

.lang-modal-option.active:hover:not(.disabled) {
    background: rgba(196, 30, 58, 0.14);
}

.lang-modal-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lang-modal-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.lang-modal-name {
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
    }

    .lang-trigger-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .lang-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lang-modal-dialog {
        padding: 1.75rem 1.5rem;
    }
}

/* Enhanced Mobile Optimization */
@media (max-width: 768px) {
    /* Better touch targets */
    .clean-btn-primary,
    .clean-btn-outline,
    .clean-btn-link,
    .btn-primary {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Improved spacing */
    .clean-intro,
    .clean-facilities,
    .clean-memberships,
    .clean-cta,
    .clean-testimonials,
    .clean-faq {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Better grid layouts */
    .clean-facilities-grid,
    .clean-plans-grid,
    .facilities-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Excellence section: title and text first, image after on mobile */
    .clean-intro .intro-grid .clean-intro-content {
        order: 1 !important;
    }
    .clean-intro .intro-grid .intro-image {
        order: 2 !important;
    }
    
    /* Improved hero slider on mobile – readable text, full width */
    .clean-hero {
        height: 56vh;
        min-height: 380px;
        max-height: 560px;
        padding: 2.5rem 0 4rem 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .clean-hero-bg {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .clean-hero-content {
        padding: 2rem 1rem 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .clean-hero-title {
        font-size: clamp(1.875rem, 7vw, 2.75rem) !important;
        line-height: 1.2;
        margin-top: 0.5rem;
        margin-bottom: 0.35rem;
        text-align: center;
        padding: 0;
        width: 100%;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.5);
    }
    
    .clean-hero-subtitle {
        font-size: clamp(1.0625rem, 3.5vw, 1.25rem) !important;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        text-align: center;
        padding: 0;
        width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 2px 16px rgba(0, 0, 0, 0.4);
    }
    
    .clean-hero-actions {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .clean-hero .clean-btn-primary {
        width: auto;
        min-width: 200px;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        min-height: 50px;
    }
    
    .clean-hero .clean-btn-link {
        padding: 0.5rem 0;
        font-size: 1.0625rem;
    }
    
    /* Stronger overlay on mobile for text legibility */
    .clean-hero .clean-hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.65) 100%);
    }
    
    /* Improved cards */
    .clean-plan {
        padding: 1.5rem;
    }
    
    .clean-plan-title {
        font-size: 1.25rem;
    }
    
    /* Better form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        min-height: 44px;
    }
    
    /* Gallery improvements */
    .facilities-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    /* Stats grid */
    .clean-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Better text readability */
    .clean-section-description,
    .clean-intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Improved spacing in sections */
    .clean-section-title {
        margin-bottom: 1rem;
    }
    
    /* Better image handling */
    .intro-image img,
    .image-wrapper img {
        border-radius: 1rem;
    }
}

@media (max-width: 480px) {
    .clean-hero {
        height: 54vh;
        min-height: 340px;
        max-height: 480px;
        padding: 2.25rem 0 3.75rem 0;
    }
    
    .clean-hero-title {
        font-size: clamp(1.625rem, 6.5vw, 2.5rem) !important;
    }
    
    .clean-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1875rem) !important;
        -webkit-line-clamp: 3;
    }
    
    .clean-hero .hero-arrow {
        width: 34px;
        height: 34px;
    }
    
    .clean-hero .hero-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .clean-hero .hero-indicators {
        bottom: 3.25rem;
    }
    
    .clean-hero .hero-indicator {
        width: 6px;
        height: 6px;
    }
    
    .clean-hero .hero-indicator.active {
        width: 18px;
    }
    
    /* Facilities section mobile */
    .clean-facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clean-facility-card {
        padding: 2rem;
    }
    
    .facility-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .clean-facility-card h3 {
        font-size: 1.375rem;
    }
    
    .clean-facility-card p {
        font-size: 0.9375rem;
    }
    
    .facility-features {
        gap: 0.375rem;
    }
    
    .facility-feature {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    /* Excellence cards mobile */
    .excellence-cards {
        grid-template-columns: 1fr !important;
    }
    
    .facilities-gallery {
        grid-template-columns: 1fr;
    }
    
    .clean-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .clean-plan {
        padding: 1.25rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .clean-btn-primary:hover,
    .clean-btn-outline:hover,
    .clean-btn-link:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
}

/* Services Cards */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 0;
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 20, 25, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(196, 30, 58, 0.08);
    border-color: rgba(196, 30, 58, 0.25);
}

.service-card > div:last-child {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 2rem;
}

.service-card > div:last-child > a.clean-btn-primary {
    margin-top: auto;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(196, 30, 58, 0.08);
    border-color: rgba(196, 30, 58, 0.3);
    background: var(--white);
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card > div:last-child {
        padding: 1.5rem;
    }
    
    .quick-link-card {
        padding: 1.25rem !important;
    }
}

/* Facilities Gallery */
.facilities-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .facilities-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

/* ========== Floating Booking Form (UX/UI) ========== */
.booking-page-hero + main .clean-facilities:first-of-type {
    padding-top: 2rem;
}

#booking-form .booking-wrap,
#booking-form .booking-floating-card,
#booking-form .booking-form {
    overflow: visible;
}

.booking-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 4rem;
    min-height: 60vh;
}

.booking-floating-card {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(196, 30, 58, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

@media (min-width: 768px) {
    .booking-floating-card {
        padding: 3rem;
        box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1), 0 12px 32px rgba(196, 30, 58, 0.08);
    }
}

.booking-floating-card:focus-within {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(196, 30, 58, 0.15), 0 12px 32px rgba(196, 30, 58, 0.12);
}

.booking-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.booking-card-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Type selector: pills */
.booking-type-pills {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.25rem;
    background: var(--gray-100);
    border-radius: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.booking-type-pill {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-family: var(--font-inter);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.booking-type-pill:hover {
    color: var(--black);
    background: rgba(255, 255, 255, 0.8);
}

.booking-type-pill[aria-pressed="true"],
.booking-type-pill.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.booking-type-pill:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.booking-type-pill-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Form fields - block layout so nothing is ever hidden */
.booking-form {
    display: block;
}
.booking-form .booking-field,
.booking-form .booking-membership-options,
.booking-form .booking-row,
.booking-form .booking-submit {
    margin-bottom: 1.25rem;
}
.booking-form .booking-submit { margin-top: 0.5rem; }

.booking-field {
    display: block;
    margin-bottom: 1rem;
}
.booking-field:last-of-type { margin-bottom: 0; }

/* Ensure email, date, time and all booking inputs are visible and sized */
.booking-form .booking-field input.booking-input,
.booking-form .booking-field .booking-input,
.booking-form input[type="text"].booking-input,
.booking-form input[type="email"].booking-input,
.booking-form input[type="tel"].booking-input,
.booking-form input[type="date"].booking-input,
.booking-form input[type="time"].booking-input {
    display: block !important;
    width: 100% !important;
    min-height: 48px;
    height: auto;
    opacity: 1;
    visibility: visible;
    box-sizing: border-box;
}

.booking-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
    visibility: visible;
    opacity: 1;
}

.booking-field label .required {
    color: var(--primary);
}

.booking-input,
.booking-select,
.booking-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-input::placeholder,
.booking-textarea::placeholder {
    color: var(--gray-600);
}

.booking-input:hover,
.booking-select:hover,
.booking-textarea:hover {
    border-color: var(--gray-300);
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.12);
    transform: none;
}

/* Prevent global input transform from clipping or hiding booking inputs */
.booking-form input.booking-input:focus,
.booking-form input[type="email"]:focus,
.booking-form input[type="date"]:focus,
.booking-form input[type="time"]:focus {
    transform: none;
}

.booking-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.booking-row .booking-field {
    min-width: 0;
    margin-bottom: 0;
}

.booking-row .booking-input,
.booking-row input[type="date"],
.booking-row input[type="time"] {
    display: block;
    width: 100%;
    min-height: 48px;
}

@media (max-width: 480px) {
    .booking-row {
        grid-template-columns: 1fr;
    }
}

/* Membership plan options */
.booking-membership-options {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(196, 30, 58, 0.04);
    border-radius: 1rem;
    border: 1px solid rgba(196, 30, 58, 0.12);
}

.booking-membership-options.visible {
    display: flex;
}

.booking-membership-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.booking-membership-option:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.booking-membership-option.selected {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.04);
    box-shadow: 0 0 0 1px var(--primary), 0 4px 14px rgba(196, 30, 58, 0.15);
}

.booking-membership-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.booking-membership-option-content {
    flex: 1;
    min-width: 0;
}

.booking-membership-option-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.booking-membership-option-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.booking-membership-option-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-left: 0.25rem;
}

/* Submit */
.booking-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-family: var(--font-inter);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 0.5rem;
}

.booking-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.booking-submit:active {
    transform: translateY(0);
}

.booking-submit:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Footer under card */
.booking-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.booking-call {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.booking-call a {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}

.booking-call a:hover {
    text-decoration: underline;
}

.booking-hours {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.booking-tip {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(196, 30, 58, 0.06);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.booking-tip a {
    color: var(--primary);
    font-weight: 600;
}

.booking-tip a:hover {
    text-decoration: underline;
}

.booking-message {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.booking-message[hidden] {
    display: none !important;
}

.booking-message--success {
    background: rgba(34, 139, 34, 0.12);
    border: 1px solid rgba(34, 139, 34, 0.3);
    color: #1a6b1a;
}

.booking-message--error {
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.25);
    color: var(--primary);
}

/* Guarantee all booking form fields are visible - no hiding */
#booking-form input[type="text"],
#booking-form input[type="email"],
#booking-form input[type="tel"],
#booking-form input[type="date"],
#booking-form input[type="time"],
#booking-form textarea {
    display: block !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 8px !important;
    background: var(--white) !important;
    color: var(--black) !important;
    box-sizing: border-box !important;
}
#booking-form textarea {
    min-height: 88px !important;
}
#booking-form label {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
}
