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

: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: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', '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);
}

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

/* 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 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 2rem;
}

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

.logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    visibility: visible;
    opacity: 1;
}

.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(--black);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

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

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

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

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

.dropdown-arrow {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
    color: var(--gray-600);
}

.nav-dropdown[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    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: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.nav-dropdown-menu li a.active {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.75rem 0;
    }
    
    /* Dropdown on mobile */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background: var(--gray-50);
        border-radius: 8px;
        display: none;
    }
    
    .nav-dropdown[aria-expanded="true"] .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-menu li a {
        padding: 0.5rem 1rem;
    }
    
    /* Language switcher on mobile - keep in nav menu */
    .nav-menu li .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .nav-menu li .language-switcher .lang-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 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 - All buttons use same design */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    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;
}

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

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

/* Navigation button - same design */
.nav-menu .btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
}

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

.nav-menu .btn-primary.active {
    background: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.25);
}

.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: 80px;
}

.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.5);
    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;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 20;
    pointer-events: none;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    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;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    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);
}

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

.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);
}

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

.hero-indicator.active {
    width: 24px;
    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: 80px;
    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.6);
}

.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 */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 112px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.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-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.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"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* 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 */
.clean-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .clean-hero {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }
}

.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: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

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

.clean-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
    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 */
.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: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.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(--white);
}

.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 */
.clean-intro {
    padding: 3rem 0;
    background: var(--white);
}

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

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

.clean-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.clean-section-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.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 */
.clean-facilities {
    padding: 3rem 0;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .clean-facilities {
        padding: 4rem 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.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.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.3s ease;
}

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

.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: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

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

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

@media (min-width: 768px) {
    .clean-memberships {
        padding: 4rem 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 var(--gray-200);
    border-radius: 16px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.clean-plan:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
}

.clean-plan-featured {
    border-color: var(--primary);
    border-width: 2px;
}

.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: 3rem 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: 12px;
}

.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: 3rem 0;
    background: var(--white);
}

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

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

.clean-faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.clean-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.clean-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-600);
    transition: transform 0.2s ease;
}

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

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

.clean-faq-answer p {
    margin-bottom: 0.5rem;
}

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

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

/* Clean CTA Section */
.clean-cta {
    padding: 3rem 0;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .clean-cta {
        padding: 4rem 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, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.clean-cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.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%;
    }
    
    .hero-controls {
        padding: 0 1rem;
    }
    
    .hero-arrow {
        width: 44px;
        height: 44px;
    }
}

/* Language Switcher */
.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-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gray-700);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.lang-btn[aria-expanded="true"] {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(196, 30, 58, 0.06);
}

.lang-current {
    font-weight: 600;
}

.lang-arrow {
    display: inline-flex;
    width: 10px;
    height: 10px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.lang-arrow svg {
    width: 100%;
    height: 100%;
}

.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-medium), 0 8px 24px rgba(0, 0, 0, 0.06);
    list-style: none;
    padding: 0.35rem;
    margin: 0;
    min-width: 7rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 10000;
    pointer-events: none;
}

.language-switcher .lang-menu.show {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.lang-option:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.lang-option.active {
    background: rgba(196, 30, 58, 0.08);
    color: var(--primary);
    font-weight: 600;
}

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

    .lang-btn {
        padding: 0.5rem 0.75rem;
        min-height: 40px;
    }

    .lang-menu {
        right: 0;
        left: auto;
    }
}

/* 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;
    }
    
    /* Improved hero on mobile */
    .clean-hero {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }
    
    .clean-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
        line-height: 1.2;
    }
    
    .clean-hero-subtitle {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin-top: 1rem;
    }
    
    .clean-hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    /* Better navigation */
    .nav-menu {
        padding: 1rem 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    /* 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: 35vh;
        min-height: 250px;
    }
    
    /* 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.5rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.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;
    flex-grow: 1;
}

.quick-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    background: var(--white);
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        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;
    }
}
