/* CSS Variables - TrainMore Dark Theme with Purple Accent */
:root {
    /* New Color Palette */
    --color-bg: #1c1c1c;
    --color-text: #ffffff;
    --color-accent: #6c1dff;
    --color-accent-dark: #4c14b8;
    --color-accent-light: #bfa5ff;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
    --color-gray-text: #cccccc;
    
    /* New Background Colors */
    --color-dark-bg: #1c1c1c;
    --color-light-gray: #efefef;
    --color-off-white: #f8f8f8;
    --color-text-dark: #272525;
    --color-text-light: #ffffff;
    
    /* Extended Gray Palette for Variety */
    --color-black-pure: #000000;
    --color-gray-darker: #0d0d0d;
    --color-gray-dark: #141414;
    --color-gray-medium: #1f1f1f;
    --color-gray-lighter: #2d2d2d;
    --color-gray-lightest: #3a3a3a;
    
    /* Lighter Shades for More Variety */
    --color-gray-soft: #252525;
    --color-gray-warm: #2b2b2b;
    --color-gray-cool: #1e1e1e;
    --color-gray-slate: #232323;
    
    /* Legacy variables for compatibility */
    --primary-color: #6c1dff;
    --secondary-color: #ffffff;
    --accent-color: #4c14b8;
    --power-color: #4c14b8;
    --text-color: #ffffff;
    --text-light: #cccccc;
    --background-color: #000000;
    --light-bg: #1a1a1a;
    --power-bg: #6c1dff;
    --strength-gradient: linear-gradient(135deg, #6c1dff 0%, #4c14b8 100%);
    --power-gradient: linear-gradient(135deg, #6c1dff 0%, #4c14b8 100%);
    --energy-gradient: linear-gradient(45deg, #6c1dff, #4c14b8, #6c1dff);
    --shadow: 0 8px 32px rgba(108, 29, 255, 0.3);
    --shadow-hover: 0 12px 40px rgba(108, 29, 255, 0.4);
    --power-shadow: 0 8px 32px rgba(108, 29, 255, 0.3);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* TrainMore-Inspired Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    --font-heading: 'Capsmall', 'Bebas Neue', 'Oswald', 'Arial Black', sans-serif;
    --font-power: 'Capsmall Clean', 'Capsmall', 'Bebas Neue', 'Oswald', sans-serif;
    --font-display: 'Capsmall', 'Bebas Neue', 'Oswald', sans-serif;
    --font-bold: 'Montserrat', 'Roboto', sans-serif;
    
    /* Capsmall Font Specific Styles */
    --capsmall-size: 1.2em;
    --capsmall-weight: 400;
    --capsmall-spacing: 0.05em;
    
    /* Spacing Variables - Consistent Scale */
    --section-padding: 0;
    --container-padding: 0 2rem;
    --card-padding: 2rem;
    --text-spacing: 1.5rem;
    --heading-spacing: 3rem;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Brush Marker Design Variables */
    --brush-marker-blue: #6c1dff;
    --brush-marker-accent: #4c14b8;
    --brush-marker-light: #8b5cf6;
    --brush-marker-bg: #1a1a1a;
    --brush-marker-white: #ffffff;
    --brush-marker-text: #ffffff;
    --brush-marker-subtle: #cccccc;
    
    /* Dark Background Gradients */
    --hero-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --about-bg: #000000;
    --services-bg: #1a1a1a;
    --packages-bg: #000000;
    --trainers-bg: #1a1a1a;
    --testimonials-bg: #000000;
    --contact-bg: #1a1a1a;
    
    /* TrainMore-Inspired Modern Effects */
    --gradient-primary: linear-gradient(135deg, #6c1dff 0%, #4c14b8 50%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(90deg, #6c1dff 0%, #8b5cf6 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(108, 29, 255, 0.15) 0%, transparent 70%);
    --glassmorphism: rgba(255, 255, 255, 0.05);
    --glassmorphism-border: rgba(255, 255, 255, 0.1);
    --blur-amount: 20px;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(108, 29, 255, 0.2);
    --shadow-lg: 0 8px 32px rgba(108, 29, 255, 0.3);
    --shadow-xl: 0 16px 64px rgba(108, 29, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(108, 29, 255, 0.5);
    
    /* Modern Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;
    
    /* Animation Timings */
    --timing-fast: 200ms;
    --timing-base: 300ms;
    --timing-slow: 500ms;
    --timing-slower: 800ms;
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    padding-top: 90px; /* Space for rounded navigation */
    font-family: var(--font-primary);
    overflow-x: hidden;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 400;
}

/* Fix for section scrolling issues */
section {
    overflow: visible;
    position: relative;
}

/* Prevent any internal scrolling in sections */
section * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure no section creates scrollable content */
.section-dark,
.section-gray,
.section-gray-light,
.section-accent,
.section-gradient,
.section-pattern,
.content {
    overflow: visible;
    position: relative;
}

/* Ensure proper section flow */
.section-dark,
.section-gray,
.section-gray-light,
.section-accent,
.section-gradient,
.section-pattern {
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content {
    max-width: 100%;
    margin: 0;
    padding: 5rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg);
    position: relative;
    overflow: visible;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
                    background: linear-gradient(135deg, rgba(108, 29, 255, 0.02) 0%, transparent 50%, rgba(76, 20, 184, 0.02) 100%);
    z-index: 0;
}

/* Power Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(108, 29, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 20, 184, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(108, 29, 255, 0.01) 50%, transparent 51%);
    z-index: -1;
    pointer-events: none;
}

/* Supergym-Style Navigation */
.supergym-nav {
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Navigation always translucent - no dark background */

/* Elegant Hero Design */
.hero-title-elegant {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title-elegant .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: 'Capsmall', sans-serif;
    text-transform: uppercase;
}

.hero-title-elegant .title-location {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    font-family: 'Capsmall Clean', sans-serif;
    text-transform: uppercase;
}

.hero-actions-elegant {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-cta-elegant {
    background: linear-gradient(135deg, #6c1dff, #4c14b8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 29, 255, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 29, 255, 0.4);
    background: linear-gradient(135deg, #7c2dff, #5c24c8);
}

.google-reviews-elegant {
    display: flex;
    justify-content: center;
}

.reviews-link-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

.reviews-link-elegant:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.reviews-link-elegant .stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.reviews-link-elegant .rating {
    font-weight: 500;
    font-size: 0.8rem;
}

.reviews-link-elegant .reviews-text {
    font-weight: 500;
    font-size: 0.8rem;
}

/* Supergym Navigation Container */
.supergym-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.supergym-nav .nav-menu {
    flex: 1;
}

/* Supergym Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

/* Supergym Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.supergym-nav .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.supergym-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.supergym-nav .nav-link:hover,
.supergym-nav .nav-link.active {
    color: #6c1dff;
}

.supergym-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c1dff;
    transition: width 0.3s ease;
}

.supergym-nav .nav-link:hover::after,
.supergym-nav .nav-link.active::after {
    width: 100%;
}

/* Supergym CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.supergym-nav .cta-button {
    background: #6c1dff !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
    min-width: auto !important;
    box-shadow: none !important;
    position: static !important;
    overflow: visible !important;
    font-family: inherit !important;
}

.supergym-nav .cta-button:hover {
    background: #5a1ae6 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle,
    .supergym-nav .mobile-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .supergym-nav .nav-menu {
        display: none !important;
    }
    
    .supergym-nav .nav-cta {
        display: none !important;
    }
    
    .supergym-nav {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 100%;
        border-radius: 18px;
    }
    
    .supergym-nav .nav-container {
        height: 60px;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .logo-image {
        height: 35px;
    }
    
    body {
        padding-top: 75px; /* Adjusted for mobile */
    }
}

.nav-container {
    max-width: 1000px;
    margin: 0;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
    width: 100%;
    gap: 0.8rem;
}

.power-logo a {
    text-decoration: none;
}

.logo-power {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #6c1dff;
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-power::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.logo-power:hover::before {
    opacity: 1;
}

.logo-power:hover {
    transform: translateY(-2px);
    box-shadow: var(--power-shadow);
}

.logo-icon {
    font-size: 0.8rem;
    font-weight: 900;
    font-family: var(--font-power);
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    letter-spacing: 1px;
}

.logo-text {
    font-family: var(--font-power);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 2px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #6c1dff;
    background: transparent;
    transform: none;
    box-shadow: none;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    border: 2px solid var(--accent-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--testimonials-bg);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-content a:hover {
    color: var(--accent-color);
    padding-left: 2rem;
}

.power-cta {
    display: flex;
    align-items: center;
}

.power-button {
    background: #6c1dff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.power-button:hover {
    background: #5a17d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3);
}

.button-energy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.power-button:hover .button-energy {
    opacity: 1;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--accent-color);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Supergym-nav specific mobile menu styling */
.supergym-nav .mobile-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(108, 29, 255, 0.5);
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
}

.supergym-nav .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.supergym-nav .mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-links a:hover,
.mobile-cta {
    background: var(--power-gradient);
    color: var(--secondary-color);
    transform: translateX(10px);
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
    font-weight: 700;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.logo-placeholder:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Desktop Menu */
.hidden.md\\:flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.flex.space-x-6.font-semibold.text-black {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.flex.space-x-6.font-semibold.text-black a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.flex.space-x-6.font-semibold.text-black a:hover {
    color: var(--accent-color);
}

.flex.space-x-6.font-semibold.text-black a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.flex.space-x-6.font-semibold.text-black a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.relative.group {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    min-width: 220px;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--accent-color);
    padding-left: 2rem;
}

/* Mobile Menu */
.md\\:hidden.text-3xl.focus\\:outline-none {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.md\\:hidden.hidden.flex-col {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--urban-shadow);
    border: var(--edgy-border);
    padding: 1rem;
    margin-top: 0.5rem;
    gap: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
}

.md\\:hidden.hidden.flex-col a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.md\\:hidden.hidden.flex-col a:hover {
    color: var(--primary-color);
}

/* Enhanced CTA Button */
.cta-button {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1.75rem 3.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    border: 3px solid var(--color-accent);
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(108, 29, 255, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: var(--font-heading);
    min-width: 280px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--color-text);
    color: var(--color-accent);
    border-color: var(--color-text);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(108, 29, 255, 0.6);
}

/* TrainMore-Style Hero Section */
.trainmore-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

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

.power-overlay,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.power-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--secondary-color);
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.badge-icon {
    font-size: 0.8rem;
    font-weight: 900;
    font-family: var(--font-power);
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.power-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
}

.title-line {
    display: block;
}

.power-accent {
    background: var(--power-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.power-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    color: var(--color-text);
}

.power-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.stat-number {
    display: block;
    font-family: var(--font-power);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.power-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.power-cta-primary {
    background: var(--power-gradient);
    color: var(--secondary-color);
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.power-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--power-shadow);
    border-color: var(--secondary-color);
}

.cta-energy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.power-cta-primary:hover .cta-energy {
    opacity: 1;
}

.power-cta-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 1.5rem 3rem;
    border: 3px solid var(--secondary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.power-cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.power-features {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 0.7rem;
    font-weight: 900;
    font-family: var(--font-power);
    background: var(--power-color);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Partners Section */
.partners-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 2rem 0;
    z-index: 2;
}

.partners-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.partner-placeholder {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    min-width: 140px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: var(--urban-shadow);
    transition: all 0.3s ease;
    border: var(--edgy-border);
    position: relative;
}

.partner-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 29, 255, 0.1), transparent);
    transition: left 0.5s;
}

.partner-placeholder:hover::before {
    left: 100%;
}

.partner-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 29, 255, 0.3);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Realistic TrainMore-Style Brush Stroke Effects */
.brush-marker {
    position: relative;
    display: inline-block;
}

.brush-marker::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: -0.15em;
    right: -0.15em;
    height: 0.4em;
    background: linear-gradient(45deg, 
        var(--brush-marker-blue) 0%, 
        rgba(108, 29, 255, 0.8) 30%, 
        var(--brush-marker-blue) 70%, 
        rgba(108, 29, 255, 0.6) 100%);
    opacity: 0.6;
    border-radius: 0.2em 0.8em 0.2em 0.8em;
    z-index: -1;
    transform: rotate(-1.2deg) skewX(-2deg);
    box-shadow: 
        0 1px 3px rgba(108, 29, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    filter: blur(0.5px);
}

.brush-marker-accent::after {
    background: linear-gradient(135deg, 
        var(--brush-marker-accent) 0%, 
        rgba(76, 20, 184, 0.9) 40%, 
        var(--brush-marker-accent) 80%, 
        rgba(76, 20, 184, 0.7) 100%);
    opacity: 0.7;
    height: 0.5em;
    transform: rotate(1.8deg) skewX(1deg);
    border-radius: 0.3em 0.6em 0.3em 0.6em;
    box-shadow: 
        0 2px 4px rgba(76, 20, 184, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    filter: blur(0.3px);
}

.brush-marker-light::after {
    background: linear-gradient(90deg, 
        var(--brush-marker-light) 0%, 
        rgba(139, 92, 246, 0.7) 50%, 
        var(--brush-marker-light) 100%);
    opacity: 0.5;
    height: 0.35em;
    transform: rotate(-0.8deg) skewX(-1deg);
    border-radius: 0.15em 0.4em 0.15em 0.4em;
    box-shadow: 
        0 1px 2px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    filter: blur(0.4px);
}

/* Realistic Headline with Brush Effect */
.headline-with-brush {
    position: relative;
    display: inline-block;
    margin: 1rem 0;
}

.headline-with-brush::before {
    content: '';
    position: absolute;
    left: -0.2em;
    bottom: -0.1em;
    width: 110%;
    height: 0.6em;
    background: linear-gradient(45deg, 
        var(--brush-marker-blue) 0%, 
        rgba(108, 29, 255, 0.8) 25%, 
        var(--brush-marker-blue) 50%, 
        rgba(108, 29, 255, 0.6) 75%, 
        var(--brush-marker-blue) 100%);
    opacity: 0.65;
    border-radius: 0.2em 0.6em 0.2em 0.6em;
    z-index: -1;
    transform: rotate(-1deg) skewX(-1deg);
    box-shadow: 
        0 2px 6px rgba(108, 29, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    filter: blur(0.6px);
}

.headline-with-brush h1,
.headline-with-brush h2,
.headline-with-brush h3 {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Multiple Brush Strokes for More Realistic Effect */
.brush-marker-double {
    position: relative;
    display: inline-block;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.brush-marker-double::before,
.brush-marker-double::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    z-index: -1;
    border-radius: 0.2em 0.6em 0.2em 0.6em;
    -webkit-filter: blur(0.4px);
    filter: blur(0.4px);
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.brush-marker-double::before {
    left: -0.1em;
    right: -0.1em;
    height: 0.35em;
    background: linear-gradient(90deg, 
        rgba(108, 29, 255, 0.4) 0%, 
        rgba(76, 20, 184, 0.6) 50%, 
        rgba(108, 29, 255, 0.4) 100%);
    -webkit-transform: rotate(-0.5deg) skewX(-0.5deg);
    transform: rotate(-0.5deg) skewX(-0.5deg);
    box-shadow: 0 1px 3px rgba(108, 29, 255, 0.2);
    will-change: transform;
}

.brush-marker-double::after {
    left: 0.05em;
    right: 0.05em;
    height: 0.25em;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.5) 0%, 
        rgba(108, 29, 255, 0.7) 100%);
    -webkit-transform: rotate(1deg) skewX(0.5deg);
    transform: rotate(1deg) skewX(0.5deg);
    box-shadow: 0 1px 2px rgba(139, 92, 246, 0.25);
    will-change: transform;
}

/* Responsive adjustments for brush-marker-double */
@media (max-width: 768px) {
    .brush-marker-double::before {
        height: 0.3em;
    }
    
    .brush-marker-double::after {
        height: 0.2em;
    }
}

@media (max-width: 480px) {
    .brush-marker-double::before {
        height: 0.25em;
        bottom: 0.03em;
    }
    
    .brush-marker-double::after {
        height: 0.18em;
        bottom: 0.03em;
    }
}

/* Paint Splatter Effect */
.brush-marker-splatter {
    position: relative;
    display: inline-block;
}

.brush-marker-splatter::before {
    content: '';
    position: absolute;
    bottom: -0.05em;
    left: -0.1em;
    right: -0.1em;
    height: 0.4em;
    background: radial-gradient(ellipse at 30% 50%, 
        var(--brush-marker-blue) 0%, 
        rgba(108, 29, 255, 0.8) 30%, 
        transparent 70%),
        radial-gradient(ellipse at 70% 30%, 
        rgba(76, 20, 184, 0.6) 0%, 
        transparent 60%);
    opacity: 0.6;
    border-radius: 0.3em 0.7em 0.2em 0.5em;
    z-index: -1;
    transform: rotate(-0.8deg);
    filter: blur(0.5px);
    box-shadow: 0 2px 4px rgba(108, 29, 255, 0.3);
}


/* TrainMore-Style Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    text-align: center;
    margin: 0 auto var(--heading-spacing) auto;
    color: var(--color-text);
    letter-spacing: 3px;
    line-height: 0.9;
    position: relative;
    padding: 0 var(--container-padding);
    max-width: 1000px;
    display: block;
    z-index: 2;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg) skewX(-1deg);
    width: 100px;
    height: 6px;
    background: linear-gradient(45deg, 
        var(--brush-marker-blue) 0%, 
        rgba(108, 29, 255, 0.8) 30%, 
        var(--brush-marker-blue) 70%, 
        rgba(108, 29, 255, 0.6) 100%);
    border-radius: 0.2em 0.8em 0.2em 0.8em;
    opacity: 0.7;
    box-shadow: 
        0 2px 4px rgba(108, 29, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    filter: blur(0.5px);
}

.highlight {
    color: var(--brush-marker-accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: -0.1em;
    right: -0.1em;
    height: 0.35em;
    background: linear-gradient(90deg, 
        var(--brush-marker-light) 0%, 
        rgba(139, 92, 246, 0.7) 50%, 
        var(--brush-marker-light) 100%);
    opacity: 0.6;
    border-radius: 0.15em 0.4em 0.15em 0.4em;
    z-index: -1;
    transform: rotate(-0.8deg) skewX(-1deg);
    box-shadow: 
        0 1px 2px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    filter: blur(0.4px);
}

/* Company Description */
.company-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin: var(--heading-spacing) auto;
    max-width: 1400px;
    width: 100%;
    justify-items: center;
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

/* Ensure even distribution for services */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1199px) and (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 899px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    text-align: center;
    padding: 0;
    background: var(--color-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(108, 29, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(108, 29, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 0.8rem;
    font-weight: 900;
    font-family: var(--font-power);
    background: var(--power-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
    margin: 1.5rem 0;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-icon:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(108, 29, 255, 0.3);
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    padding: 0 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item p {
    color: var(--color-gray-text);
    line-height: 1.6;
    font-size: 1rem;
    padding: 0 2rem 2rem 2rem;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 95vw;
    width: 100%;
    justify-items: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

/* Services Section for scrollable services */
.services-section .services-container {
    max-width: 98vw;
    padding: 0 0.5rem;
}

.service-card {
    background: var(--color-gray);
    border: 1px solid rgba(108, 29, 255, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-content {
    padding: 2rem;
}

/* .service-content h3 and p styling is handled by inline styles to match .service-item */

.service-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--power-color) 100%);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow);
    border: none;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--power-color) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Packages Section */
.packages-section {
    padding: 5rem 0;
    background: var(--color-bg);
    text-align: center;
    position: relative;
    width: 100%;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
                    background: radial-gradient(circle at 30% 20%, rgba(108, 29, 255, 0.05) 0%, transparent 50%),
                                radial-gradient(circle at 70% 80%, rgba(76, 20, 184, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.packages-section .cta-button {
    display: inline-block;
    margin: 3rem auto 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin: 3rem auto;
    max-width: 1600px;
    width: 100%;
    justify-items: center;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Ensure even distribution for packages */
@media (min-width: 1400px) {
    .packages-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1600px;
    }
}

@media (max-width: 1399px) and (min-width: 900px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1000px;
    }
}

@media (max-width: 899px) {
    .packages-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .package-card {
        min-height: 520px;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .package-card h3 {
        font-size: 1.4rem;
        min-height: 3.4rem;
    }
    
    .price {
        font-size: 2.3rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    .package-button {
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 800px;
    }
    
    .service-card {
        max-width: 100%;
    }
}

.package-card {
    background: var(--color-gray);
    border: 1px solid rgba(108, 29, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
}

.package-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 15px 40px rgba(108, 29, 255, 0.25);
    border-color: var(--brush-marker-accent);
}

.package-card.featured {
    border-color: var(--brush-marker-accent);
    box-shadow: 0 15px 40px rgba(108, 29, 255, 0.25);
    background: linear-gradient(135deg, var(--brush-marker-white) 0%, rgba(108, 29, 255, 0.05) 100%);
    position: relative;
    height: 550px;
    transform: rotate(0.5deg);
}


.package-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-bold);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    text-shadow: 0 2px 4px rgba(108, 29, 255, 0.1);
    flex-shrink: 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--color-gray-text);
    border-bottom: 1px solid rgba(108, 29, 255, 0.1);
    font-size: 0.9rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    transition: var(--transition);
    line-height: 1.4;
    text-align: left;
}

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


.package-features li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.package-button {
    background: var(--brush-marker-blue);
    color: var(--brush-marker-white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
    text-align: center;
    border: none;
    box-shadow: 0 6px 20px rgba(108, 29, 255, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1rem;
    transform: rotate(-0.3deg);
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.package-button:hover::before {
    left: 100%;
}

.package-button:hover {
    background: var(--brush-marker-accent);
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.4);
}

/* Coaching Section */
.coaching-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.coaching-subtitle {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 1rem;
    opacity: 0.8;
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin: 0 auto 3rem auto;
    max-width: 1200px;
    width: 100%;
    justify-items: center;
}

.coaching-benefits h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0 auto 3rem auto;
    max-width: 1000px;
    width: 100%;
    justify-items: center;
}

/* Ensure even distribution for benefits */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 1199px) and (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 899px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 800px;
    }
    
    .benefit-card {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .benefit-card {
        min-height: 350px;
    }
}

.benefit-item {
    background: var(--secondary-color);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    width: 100%;
    max-width: 250px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
}

.benefit-icon {
    font-size: 0.7rem;
    font-weight: 900;
    font-family: var(--font-power);
    background: var(--power-color);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.coaching-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--trainers-bg);
    position: relative;
    width: 100%;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
                    background: linear-gradient(45deg, rgba(108, 29, 255, 0.02) 0%, transparent 25%, rgba(76, 20, 184, 0.02) 50%, transparent 75%, rgba(108, 29, 255, 0.02) 100%);
    z-index: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 2rem;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--color-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
    position: relative;
    min-height: 120px;
    width: 100%;
    flex: 1;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--power-color);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--strength-gradient);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-power);
    box-shadow: var(--shadow);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.step-content p {
    color: var(--color-gray-text);
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    opacity: 0.7;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-button {
    background: var(--power-gradient);
    color: var(--color-text);
    padding: 1.25rem 3rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    border: 3px solid transparent;
}

.process-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--power-shadow);
    border-color: var(--color-text);
}

/* Testimonials Section */
.testimonials-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.carousel-arrow {
    background: var(--accent-color);
    color: var(--color-text);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.carousel-arrow:hover {
    background: var(--power-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 2;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel.dragging {
    scroll-behavior: auto;
}

.testimonial-card {
    background: var(--color-gray);
    border: 2px solid rgba(108, 29, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.testimonial-author strong {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.testimonial-content p {
    color: var(--color-gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-left: 2rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-heading);
}

/* Contact Section */
.contact-section {
    background: var(--color-gray);
    color: var(--color-text);
    width: 100%;
    position: relative;
    padding: 5rem 0;
}

.contact-section > * {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-section.grid-layout {
    display: block;
}

.contact-section.grid-layout > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(108, 29, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(76, 20, 184, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-left h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-gray-text);
}

.contact-info {
    margin-bottom: 2rem;
}

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

.contact-icon {
    font-size: 0.7rem;
    font-weight: 900;
    font-family: var(--font-power);
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    display: inline-block;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: var(--color-gray-text);
    opacity: 0.8;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(108, 29, 255, 0.3);
    border-radius: var(--border-radius);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(108, 29, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-text);
}

.submit-button {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
footer {
    background: var(--color-bg);
    color: var(--color-text);
    text-align: center;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(108, 29, 255, 0.2);
}

footer a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-gray-text);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid rgba(108, 29, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Power Animations */
@keyframes powerPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

@keyframes powerGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 29, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(108, 29, 255, 0.6);
    }
}

@keyframes energyFlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* TrainMore-Style Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slideInRight {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scaleIn {
    animation: scaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-modernPulse {
    animation: modernPulse 2s ease-in-out infinite;
}

.animate-modernGlow {
    animation: modernGlow 3s ease-in-out infinite;
}

/* TrainMore-Style Entrance Animations */
.animate-slideUp {
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slideDown {
    animation: slideDown 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-zoomIn {
    animation: zoomIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-bounceIn {
    animation: bounceIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Auto-animate elements on scroll */
.auto-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.auto-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

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

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

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item: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; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }

/* Capsmall Font Enhancements */
.capsmall-text {
    font-family: 'Capsmall', 'Bebas Neue', 'Oswald', sans-serif;
    font-size: var(--capsmall-size);
    font-weight: var(--capsmall-weight);
    letter-spacing: var(--capsmall-spacing);
    text-transform: uppercase;
}

.capsmall-clean-text {
    font-family: 'Capsmall Clean', 'Capsmall', 'Bebas Neue', 'Oswald', sans-serif;
    font-size: var(--capsmall-size);
    font-weight: var(--capsmall-weight);
    letter-spacing: var(--capsmall-spacing);
    text-transform: uppercase;
}

.power-title .capsmall-text {
    font-size: 1.5em;
    letter-spacing: 0.1em;
}

.section-title .capsmall-text {
    font-size: 1.3em;
    letter-spacing: 0.08em;
}

/* Power Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }
    
    .logo-power {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .power-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .trainmore-hero {
        min-height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-cta-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .packages-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .membership-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        max-width: 800px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 3rem 1rem;
    }
    
    .process-steps {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem 0.5rem;
    }
    
    .portfolio-hero {
        padding: 0 1rem;
    }
    
    .portfolio-hero h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-hero p {
        font-size: 1rem;
    }
    
    .portfolio-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .third-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }
    
    .partners-container {
        gap: 1rem;
    }
    
    .partner-placeholder {
        min-width: 120px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-left h1 {
        font-size: 2.2rem;
    }
}

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

/* Loading state */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.loaded {
    opacity: 1;
}

/* Container */
.container {
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* TrainMore-Style Additional CSS */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-text {
    font-size: 0.9rem;
    max-width: 1800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--color-text);
}

.title-main {
    display: block;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
}

.title-sub {
    display: block;
    color: var(--color-accent);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 600px;
    line-height: 1.6;
    color: var(--color-text);
}

.hero-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.hero-cta-primary:hover {
    background: #5a17d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3);
}

/* Benefits Section - TrainMore Style */
.benefits-section {
    padding: 5rem 0;
    background: var(--color-bg);
    text-align: center;
    contain: layout style paint;
    width: 100%;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #1a1a1a !important;
    margin-top: -15vh;
    padding-top: 5vh;
    margin-bottom: 10vh;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

/* Force override for benefits title color */
.benefits-section .benefits-title,
.benefits-container .benefits-title,
h2.benefits-title {
    color: #1a1a1a !important;
}

/* Continuous Snake Background */
.continuous-snake {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.continuous-snake svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-10px) scale(1.02);
    }
    50% {
        transform: translateY(-5px) scale(1.01);
    }
    75% {
        transform: translateY(-15px) scale(1.03);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1400px;
    contain: layout;
    padding: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: var(--color-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    border: 1px solid rgba(108, 29, 255, 0.2);
    will-change: transform;
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 29, 255, 0.3), 0 15px 50px rgba(108, 29, 255, 0.2);
}

.benefit-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    z-index: 1;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease;
    will-change: transform;
    min-width: 100%;
    min-height: 100%;
    transform: scale(1.1);
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.12);
}

.benefit-content {
    padding: 1.5rem;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.benefit-content p {
    color: var(--color-gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* TrainMore-Style Overlay for Benefit Cards */
.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.benefit-card:hover .benefit-overlay {
    transform: translateY(0);
}

.benefit-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.benefit-overlay .benefit-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
    text-align: center;
}

.benefit-overlay .benefit-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.benefit-link {
    color: #6c1dff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-link:hover {
    text-decoration: underline;
}

/* Membership Section - TrainMore Style */
.membership-section {
    padding: 5rem 0;
    background: var(--color-bg);
    text-align: center;
    width: 100%;
}

.membership-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.membership-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.membership-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1400px;
}

.membership-card {
    background: var(--color-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(108, 29, 255, 0.2);
    max-height: 600px;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.membership-card.featured {
    border-color: #6c1dff;
    transform: scale(1.05);
}

.membership-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.membership-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.membership-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #6c1dff;
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    font-size: 0.9rem;
}

.membership-features li {
    padding: 0.3rem 0;
    color: var(--color-gray-text);
    position: relative;
    padding-left: 1.5rem;
}


.membership-button {
    display: block;
    width: 100%;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.membership-button:hover {
    background: #5a17d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3);
}

.membership-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.membership-cta-button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.membership-cta-button:hover {
    background: #5a17d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 29, 255, 0.4);
}

.membership-cta-button.secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.membership-cta-button.secondary:hover {
    background: var(--color-accent);
    color: var(--color-text);
}

/* Package Categories */
.package-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.package-subtitle {
    font-size: 1rem;
    color: var(--color-gray-text);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Ensure cards are always side by side - removed duplicate */

.membership-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.membership-features {
    flex-grow: 1;
}

.membership-button {
    margin-top: auto;
}

/* Expandable Features */
.expand-button {
    background: var(--color-gray-light);
    color: var(--color-text);
    border: 1px solid var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0;
    width: 100%;
}

.expand-button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.expand-button.expanded {
    background: var(--color-primary);
    color: var(--color-white);
}

.expandable-features {
    transition: all 0.3s ease;
}

/* Services Container */
.services-scroll-container {
    padding: 1rem 0;
    margin: 2rem 0;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Ensure multiple services are displayed on larger screens */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Removed scrollbar styles since we're using grid layout */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

.services-grid .service-card {
    min-width: 280px;
    max-width: 350px;
    width: 100%;
    height: 100%;
}

/* Responsive breakpoints for membership cards */
@media (max-width: 1200px) {
    .membership-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 480px) {
    .membership-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .membership-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .membership-cta-button {
        margin: 0.5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid .service-card {
        min-width: auto;
        max-width: none;
    }
}

.membership-cta-button {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-accent);
}

.membership-cta-button:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3);
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: var(--color-gray-slate);
}

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

.partner-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-item p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--color-white);
}

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

.faq-item {
    padding: 2rem;
    background: var(--color-gray-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 0;
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

/* Virtual Tour Page */
.virtual-tour-section {
    padding: 5rem 0;
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.tour-video {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tour-description h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.tour-description p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tour-features {
    margin: 2rem 0;
}

.feature-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.feature-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--color-text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.tour-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-section {
    padding: 5rem 0;
}

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

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .tour-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-cta {
        flex-direction: column;
    }
}

/* Club Location Section */
.club-location-section {
    padding: 5rem 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    text-align: center;
    width: 100% !important;
    max-width: none !important;
}

.club-location-section::before {
    display: none !important;
    content: none !important;
    background: transparent !important;
}

#club-location::before {
    display: none !important;
    content: none !important;
    background: transparent !important;
}

#club-location {
    width: 100% !important;
    max-width: none !important;
}

.club-location-container {
    max-width: 2500px !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
}

.club-location-section .club-location-container {
    max-width: 1800px !important;
    width: 100% !important;
}

#club-location .club-location-container {
    max-width: 1800px !important;
    width: 100% !important;
}

.club-card {
    background: var(--color-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(108, 29, 255, 0.2);
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.club-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-info {
    padding: 2rem;
}

.club-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.club-opening {
    color: var(--color-gray-text);
    margin-bottom: 1.5rem;
}

.club-button {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.club-button:hover {
    background: #5a17d9;
    transform: translateY(-2px);
}

/* Discount Info Section */
.discount-info-section {
    padding: 5rem 2rem;
    background: #f3f0ff;
    text-align: center;
}

.discount-container {
    max-width: 800px;
    margin: 0 auto;
}

.discount-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.discount-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.discount-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.discount-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c1dff;
    margin-bottom: 0.5rem;
}

.discount-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-link {
    color: #6c1dff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-link:hover {
    text-decoration: underline;
}

/* TrainMore-Style Footer */
.trainmore-footer {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-download {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-download h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

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

.download-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
}

.download-button img {
    height: 40px;
    width: auto;
}

.footer-social {
    text-align: center;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--color-gray-text);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-accent);
}


.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.footer-legal a {
    color: var(--color-gray-text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* Clean Modern Design Principles */

/* Consistent Grid System */
.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: center;
}

.grid-full { grid-column: 1 / -1; }
.grid-half { grid-column: 1 / 7; }
.grid-half-right { grid-column: 7 / -1; }
.grid-third { grid-column: 1 / 5; }
.grid-two-thirds { grid-column: 5 / -1; }
.grid-quarter { grid-column: 1 / 4; }
.grid-three-quarters { grid-column: 4 / -1; }

/* Proper Whitespace & Spacing */
.section-spacing {
    padding: 6rem 0;
}

.section-spacing-large {
    padding: 8rem 0;
}

.section-spacing-small {
    padding: 4rem 0;
}

/* Typographic Rhythm */
.typography-h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.typography-h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.typography-h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.typography-body {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.typography-body-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.typography-caption {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

/* Enhanced Section Transitions & Backgrounds */

/* Seamless Section Overlaps */
.section-seamless {
    position: relative;
    margin: -50px 0;
    padding: 50px 0;
    z-index: 2;
}

.section-seamless::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    z-index: -1;
}

.section-seamless::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    z-index: -1;
}

/* Extended Background Elements */
.section-extend {
    position: relative;
    overflow: visible;
}

.section-extend::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    right: -50px;
    bottom: -100px;
    background: inherit;
    z-index: -1;
}

/* Flowing Elements */
.element-flow {
    position: relative;
    z-index: 10;
}

.element-flow::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, 
        rgba(108, 29, 255, 0.1) 0%, 
        rgba(108, 29, 255, 0.05) 25%, 
        transparent 50%, 
        rgba(108, 29, 255, 0.05) 75%, 
        rgba(108, 29, 255, 0.1) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Seamless Content Overflow */
.content-seamless {
    position: relative;
    z-index: 5;
    margin: -50px 0;
    padding: 50px 0;
}

.content-seamless::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -20px;
    right: -20px;
    bottom: -50px;
    background: inherit;
    z-index: -1;
}

/* Extended Visual Elements */
.visual-extend {
    position: relative;
    overflow: visible;
}

.visual-extend::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -100px;
    right: -100px;
    bottom: -150px;
    background: inherit;
    z-index: -2;
    opacity: 0.3;
}

/* Smooth Section Transitions */
.section-transition {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Overlays for Smooth Transitions */
.section-overlay {
    position: relative;
}

.section-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(108, 29, 255, 0.05) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(108, 29, 255, 0.05) 100%);
    pointer-events: none;
    transition: opacity 0.6s ease;
}

/* Clean Section Background Variations */
.section-dark {
    background: var(--color-dark-bg);
    color: var(--color-text-light);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-bg);
    z-index: -1;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-bg);
    z-index: -1;
}

/* New Light Background Sections */
.section-light-gray {
    background: var(--color-light-gray);
    color: var(--color-text-dark);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-off-white {
    background: var(--color-off-white);
    color: var(--color-text-dark);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-off-white h1,
.section-off-white h2,
.section-off-white h3,
.section-off-white h4,
.section-off-white h5,
.section-off-white h6 {
    color: var(--color-text-dark);
}

.section-off-white p {
    color: var(--color-text-dark);
}

.section-light-gray h1,
.section-light-gray h2,
.section-light-gray h3,
.section-light-gray h4,
.section-light-gray h5,
.section-light-gray h6 {
    color: var(--color-text-dark);
}

.section-light-gray p {
    color: var(--color-text-dark);
}

/* Removed hover effect to prevent background color changes */

.section-gray {
    background: var(--color-gray);
    color: var(--color-text);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-gray);
    z-index: -1;
}

.section-gray::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-gray);
    z-index: -1;
}

/* Removed hover effect to prevent background color changes */

.section-gray-light {
    background: var(--color-gray-light);
    color: var(--color-text);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-gray-light::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-gray-light);
    z-index: -1;
}

.section-gray-light::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-gray-light);
    z-index: -1;
}

/* Removed hover effect to prevent background color changes */

/* New Section Variations for Color Variety */
.section-black-pure {
    background: var(--color-black-pure);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-darker {
    background: var(--color-gray-darker);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-medium {
    background: var(--color-gray-medium);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-lighter {
    background: var(--color-gray-lighter);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-lightest {
    background: var(--color-gray-lightest);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

/* New Lighter Section Variations */
.section-gray-soft {
    background: var(--color-gray-soft);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-warm {
    background: var(--color-gray-warm);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-cool {
    background: var(--color-gray-cool);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

.section-gray-slate {
    background: var(--color-gray-slate);
    color: var(--color-text);
    padding: var(--space-3xl) 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    width: 100%;
}

#personal-training-content.section-gray-slate {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* White Section Background */
.section-white {
    background: #ffffff;
    color: #333333;
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white h5,
.section-white h6 {
    color: #333333;
}

.section-white p {
    color: #666666;
}

.section-white .benefit-card,
.section-white .membership-card,
.section-white .service-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #333333;
}

.section-white .benefit-card h3,
.section-white .membership-card h3,
.section-white .service-card h3 {
    color: #333333;
}

.section-white .benefit-card p,
.section-white .membership-card p,
.section-white .service-card p {
    color: #666666;
}

/* Equal height cards and aligned buttons */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item .service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-item p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-item .service-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Text Shadow for Better Readability on Light and Photo Backgrounds */
.section-gray-lighter h1,
.section-gray-lighter h2,
.section-gray-lighter h3,
.section-gray-lighter p,
.section-gray-lightest h1,
.section-gray-lightest h2,
.section-gray-lightest h3,
.section-gray-lightest p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Text Shadow for Hero Sections with Photo Backgrounds */
.trainmore-hero h1,
.trainmore-hero h2,
.trainmore-hero p,
.hero-title,
.hero-description,
.hero-cta-text,
.hero-badge {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Text Shadow for Sections with Background Images */
.split .content h1,
.split .content h2,
.split .content h3,
.split .content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Text Shadow for Benefit Cards with Images */
.benefit-card h3,
.benefit-overlay h3,
.benefit-link {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Modern Benefits Section Styling */
.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.modern-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c1dff, #4c14b8, #6c1dff);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.modern-benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 29, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 29, 255, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, #6c1dff, #4c14b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.modern-benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(108, 29, 255, 0.3);
}

.benefits-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(108, 29, 255, 0.1) 0%, rgba(76, 20, 184, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(108, 29, 255, 0.2);
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, #6c1dff, #4c14b8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 29, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #6c1dff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #6c1dff;
    font-size: 1.1rem;
}

.cta-button.secondary:hover {
    background: #6c1dff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 29, 255, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Coaching Section Styling */
.coaching-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.coaching-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

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

/* Fix grid to be 2-2 on laptop instead of 3-1 */
@media (min-width: 1024px) {
    .modern-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.coaching-card {
    background: rgba(30, 22, 46, 0.938) !important;
    border: 1px solid rgba(108, 29, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Ensure coaching cards have dark background even when combined with modern-benefit-card */
.modern-benefit-card.coaching-card {
    background: rgba(30, 22, 46, 0.938) !important;
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c1dff, #4c14b8, #6c1dff);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.coaching-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 29, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 29, 255, 0.2);
}

.coaching-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, #6c1dff, #4c14b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.coaching-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.coaching-card:hover .coaching-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(108, 29, 255, 0.3);
}

.coaching-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.coaching-card p {
    font-size: 1.1rem;
    color: #e0e0e0 !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #e0e0e0 !important;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}


.coaching-cta-enhanced {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(108, 29, 255, 0.1) 0%, rgba(76, 20, 184, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(108, 29, 255, 0.2);
}

.coaching-cta-enhanced h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.coaching-cta-enhanced p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefits-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .coaching-card {
        padding: 2rem;
    }
    
    .coaching-icon {
        width: 60px;
        height: 60px;
    }
    
    .coaching-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .coaching-cta-enhanced h3 {
        font-size: 2rem;
    }
    
    .modern-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Minimal Hero Design */
/* Professional Hero Styles */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-title .title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-family: 'Capsmall', sans-serif;
    text-transform: uppercase;
}

.hero-title .title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    font-family: 'Capsmall Clean', sans-serif;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #6c1dff, #4c14b8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 29, 255, 0.6);
    background: linear-gradient(135deg, #7c2dff, #5c24c8);
}

.hero-cta-primary.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-cta-primary.glow-on-hover:hover {
    background: #6c1dff;
    box-shadow: 0 12px 35px rgba(108, 29, 255, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(108, 29, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(108, 29, 255, 0.7);
    }
}

/* Responsive Minimal Hero */
@media (max-width: 768px) {
    .hero-title-minimal {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-minimal {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-minimal {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta-minimal {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Text Shadow for Stats and Counter Sections */
.stats-section .stat-label,
.stats-section .stat-number {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Text Shadow for Testimonials on Pattern Backgrounds */
.section-pattern h1,
.section-pattern h2,
.section-pattern h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Text Shadow for Club Location Images */
.club-info h3,
.club-info p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Text Shadow for Service Cards with Images */
.service-image h3,
.service-content h3 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.section-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-text);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.section-accent::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    z-index: -1;
}

.section-accent::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    z-index: -1;
}

/* Removed hover effect to prevent background color changes */

.section-gradient {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-gray) 50%, var(--color-bg) 100%);
    color: var(--color-text);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(108, 29, 255, 0.4) 25%, rgba(108, 29, 255, 0.6) 50%, rgba(108, 29, 255, 0.4) 75%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Removed hover effect to prevent background color changes */

.section-pattern {
    background: var(--color-bg);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(108, 29, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 20, 184, 0.05) 0%, transparent 50%);
    color: var(--color-text);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(108, 29, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Removed hover effect to prevent background color changes */

/* Diagonal Section Separators */
.section-separator-bottom {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-separator-bottom::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-separator-top {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-separator-top::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Curved Section Separators */
.section-curved-bottom {
    position: relative;
    overflow: hidden;
}

.section-curved-bottom::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.section-curved-top {
    position: relative;
    overflow: hidden;
}

.section-curved-top::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

/* Section Spacing */
.section-spacing {
    padding: 6rem 2rem;
}

/* Fixed Section Transitions */
.section-transition-top {
    position: relative;
    padding: 6rem 2rem;
    margin-top: -1px;
}

.section-transition-top::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

.section-transition-bottom {
    position: relative;
    padding: 6rem 2rem;
    margin-bottom: -1px;
}

.section-transition-bottom::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

/* Fixed Curved Section Transitions */
.section-curved-top {
    position: relative;
    padding: 6rem 2rem;
    margin-top: -1px;
}

.section-curved-top::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: inherit;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.section-curved-bottom {
    position: relative;
    padding: 6rem 2rem;
    margin-bottom: -1px;
}

.section-curved-bottom::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: inherit;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

/* Fixed Zigzag Section Transitions */
.section-zigzag-top {
    position: relative;
    padding: 6rem 2rem;
    margin-top: -1px;
}

.section-zigzag-top::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: inherit;
    clip-path: polygon(0 100%, 25% 0, 50% 100%, 75% 0, 100% 100%);
    z-index: 1;
}

.section-zigzag-bottom {
    position: relative;
    padding: 6rem 2rem;
    margin-bottom: -1px;
}

.section-zigzag-bottom::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: inherit;
    clip-path: polygon(0 0, 25% 100%, 50% 0, 75% 100%, 100% 0);
    z-index: 1;
}

/* Fixed Wave Section Transitions */
.section-wave-top {
    position: relative;
    padding: 6rem 2rem;
    margin-top: -1px;
}

.section-wave-top::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.section-wave-bottom {
    position: relative;
    padding: 6rem 2rem;
    margin-bottom: -1px;
}

.section-wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

/* Fixed Section Spacing with Transitions */
.section-spacing-transition {
    padding: 6rem 2rem;
    position: relative;
    margin: 0;
}

.section-spacing-transition::before,
.section-spacing-transition::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    z-index: 2;
}

.section-spacing-transition::before {
    top: 0;
}

.section-spacing-transition::after {
    bottom: 0;
}

/* Enhanced Scroll-Triggered Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.slide-up-stagger {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up-stagger.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-up-stagger:nth-child(1) { transition-delay: 0.1s; }
.slide-up-stagger:nth-child(2) { transition-delay: 0.2s; }
.slide-up-stagger:nth-child(3) { transition-delay: 0.3s; }
.slide-up-stagger:nth-child(4) { transition-delay: 0.4s; }
.slide-up-stagger:nth-child(5) { transition-delay: 0.5s; }
.slide-up-stagger:nth-child(6) { transition-delay: 0.6s; }

/* Parallax Backgrounds */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

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

/* Animated Stats Counters */
.stats-section {
    background: var(--color-bg);
    padding: var(--space-3xl) 2rem;
    text-align: center;
    position: relative;
    width: 100%;
}

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

.stats-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.stat-item {
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    background: var(--color-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(108, 29, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(108, 29, 255, 0.2);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-accent);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: var(--space-xs);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Interactive Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-gray);
    border: 2px solid rgba(108, 29, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 29, 255, 0.1), transparent);
    transition: left 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    /* Hover effect removed */
}

.pricing-card.featured {
    border-color: var(--color-accent);
    /* Scale removed */
    box-shadow: 0 20px 40px rgba(108, 29, 255, 0.3);
}

.pricing-card.featured::after {
    content: 'POPULAIR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Signup */
.newsletter-section {
    background: var(--color-bg);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(108, 29, 255, 0.2);
    width: 100%;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(108, 29, 255, 0.3);
    border-radius: 8px;
    background: var(--color-gray);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(108, 29, 255, 0.1);
}

.newsletter-input::placeholder {
    color: var(--color-gray-text);
}

.newsletter-button {
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: var(--color-text);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3);
}

/* Social Proof Section */
.social-proof {
    background: var(--color-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.social-proof-logo {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.social-proof-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Advanced TrainMore-Style Design Elements */

/* Dynamic Split-Screen Sections */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 40vh;
    position: relative;
    overflow: hidden;
}

.split.section-dark {
    overflow: hidden;
}

.split.section-dark::before,
.split.section-dark::after {
    display: none;
}

/* Responsive content scaling for split sections */
.split .content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split .content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.split .content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.split .background-text {
    font-size: clamp(4rem, 8vw, 8rem);
}

.split.asymmetric-left {
    grid-template-columns: 2fr 1fr;
}

.split.asymmetric-right {
    grid-template-columns: 1fr 2fr;
}

.split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.split:hover img {
    transform: scale(1.05);
}

.split .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: var(--color-bg);
    position: relative;
    z-index: 2;
}

.split .content.overlapping {
    margin: -2rem 0 0 -2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(108, 29, 255, 0.3);
}

.split .content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.9;
}

.split .content p {
    font-size: 1.1rem;
    color: var(--color-gray-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Creative Typography & Text Layering */
.big-number {
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 0;
    font-family: var(--font-heading);
    pointer-events: none;
}

.background-text {
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 900;
    color: rgba(108, 29, 255, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    pointer-events: none;
    user-select: none;
}

.dynamic-heading {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.dynamic-heading.large {
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.7;
}

.dynamic-heading.small {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
}

.overlapping-text {
    position: relative;
    z-index: 2;
}

.overlapping-text h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.8;
    margin-bottom: 1rem;
}

/* Geometric Accents */
.section-diagonal {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    background: var(--color-bg);
    padding: 5rem 2rem;
    position: relative;
}

.section-diagonal-reverse {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    background: var(--color-gray);
    padding: 5rem 2rem;
    position: relative;
}

.diagonal-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(45deg, var(--color-accent) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

/* Oversized CTAs */
.cta-big {
    display: block;
    padding: 2rem 3rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--color-accent);
    color: var(--color-text);
    text-align: center;
    margin: 2rem auto;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.cta-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-big:hover::before {
    left: 100%;
}

.cta-big:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 29, 255, 0.4);
}

/* Outline Text Effects */
.outline-text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
    text-stroke: 2px var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

/* Motivational Ticker Effect */
.ticker-container {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 2px solid var(--color-accent-dark);
    border-bottom: 2px solid var(--color-accent-dark);
}

.ticker-content {
    display: inline-block;
    animation: ticker 45s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.ticker-content span {
    margin: 0 4rem;
    position: relative;
}

.ticker-content span::after {
    content: '•';
    color: var(--color-text);
    margin-left: 4rem;
    opacity: 0.7;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(108, 29, 255, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 29, 255, 0.6);
}

/* Micro-Interactions */
.interactive-button {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.interactive-button:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 10px 30px rgba(108, 29, 255, 0.3);
}

.interactive-button:active {
    transform: scale(0.98) rotate(0deg);
}

.interactive-image {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interactive-image:hover {
    transform: scale(1.05);
}

/* Sticky Text Effect */
.sticky-text {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    z-index: 10;
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Advanced Brush Stroke Animations */
.brush-animate {
    animation: brushSweep 2s ease-in-out;
}

@keyframes brushSweep {
    0% {
        transform: translateX(-100%) rotate(-5deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(108, 29, 255, 0.5);
}

.glow-border {
    box-shadow: 0 0 20px rgba(108, 29, 255, 0.3);
}

/* Responsive Design for TrainMore Style */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 600px;
    }
    
    .benefit-card {
        min-height: 400px;
    }
    
    .benefit-image {
        height: 100%;
    }
    
    .benefit-card {
        transition: none;
    }
    
    .benefit-card:hover {
        transform: none;
    }
    
    .benefit-card:hover .benefit-image img {
        transform: none;
    }
    
    .benefit-overlay {
        transform: translateY(0);
        padding: 1rem;
    }
    
    .benefit-overlay h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-overlay .benefit-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    }
    
    .benefit-overlay .benefit-link:hover {
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .discount-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Responsive Advanced Elements */
    .split {
        grid-template-columns: 1fr;
        min-height: 40vh;
    }
    
    .split .content {
        padding: 2rem 1rem;
    }
    
    .big-number {
        font-size: 6rem;
        top: 10%;
        left: 5%;
    }
    
    .outline-text {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .cta-big {
        padding: 1.5rem 2rem;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .section-diagonal,
    .section-diagonal-reverse {
        clip-path: none;
        padding: 3rem 1rem;
    }
    
    .ticker-content {
        font-size: 1rem;
    }
    
    .ticker-content span {
        margin: 0 1.5rem;
    }
    
    /* Responsive Clean Modern Elements */
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .section-spacing {
        padding: 4rem 0;
    }
    
    .section-spacing-large {
        padding: 5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .social-proof-logos {
        gap: 2rem;
    }
    
    .parallax-section {
        min-height: 60vh;
    }
    
    /* Responsive Section Transitions - Fixed */
    .section-transition-top::before,
    .section-transition-bottom::after {
        height: 25px;
    }
    
    .section-curved-top::before,
    .section-curved-bottom::after {
        height: 20px;
    }
    
    .section-zigzag-top::before,
    .section-zigzag-bottom::after {
        height: 15px;
    }
    
    .section-wave-top::before,
    .section-wave-bottom::after {
        height: 10px;
    }
    
    .section-spacing-transition {
        padding: 4rem 1rem;
    }
    
    /* Mobile section spacing */
    .section-dark,
    .section-gray,
    .section-gray-light,
    .section-accent,
    .section-gradient,
    .section-pattern {
        padding: 4rem 1rem;
    }
    
    .section-spacing {
        padding: 4rem 1rem;
    }
    
    /* Responsive Dynamic Elements */
    .split {
        grid-template-columns: 1fr;
        min-height: 40vh;
    }
    
    .split .content {
        padding: 2rem 1rem;
    }
    
    .split .content.overlapping {
        margin: 0;
        background: rgba(0, 0, 0, 0.95);
    }
    
    .background-text {
        font-size: clamp(4rem, 10vw, 8rem);
    }
    
    .dynamic-heading.large {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .ticker-content {
        font-size: 1rem;
    }
    
    .ticker-content span {
        margin: 0 2rem;
    }
    
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   TRAINMORE-INSPIRED MODERN ENHANCEMENTS
   ======================================== */

/* Glassmorphism Cards */
.glass-card {
    background: var(--glassmorphism);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glassmorphism-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--timing-base) var(--easing-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(108, 29, 255, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(1.02);
}

/* Modern Gradient Overlays */
.gradient-overlay-primary {
    position: relative;
    overflow: hidden;
}

.gradient-overlay-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--timing-slow) var(--easing-smooth);
    pointer-events: none;
}

.gradient-overlay-primary:hover::before {
    opacity: 1;
}

/* Enhanced Buttons - TrainMore Style */
.btn-modern {
    position: relative;
    background: var(--gradient-primary);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: all var(--timing-base) var(--easing-bounce);
    box-shadow: var(--shadow-md);
}

.btn-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #6c1dff 100%);
    opacity: 0;
    transition: opacity var(--timing-base);
}

.btn-modern:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-modern:hover::before {
    opacity: 1;
}

.btn-modern span {
    position: relative;
    z-index: 1;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2n) {
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-element:nth-child(3n) {
    animation-delay: 2s;
    animation-duration: 8s;
}

/* Pulse Animation for CTAs */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 29, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(108, 29, 255, 0.8), 0 0 60px rgba(108, 29, 255, 0.4);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient-text {
    background: linear-gradient(90deg, #6c1dff, #8b5cf6, #6c1dff, #4c14b8);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
}

/* Morphing Blob Background */
@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 30% 60% / 30% 60% 70% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 60% 30% 50% 50% / 60% 40% 30% 70%;
        transform: rotate(270deg) scale(1.05);
    }
}

.blob-background {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 29, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: morph 20s ease-in-out infinite;
    z-index: -1;
}

.blob-background:nth-child(2) {
    animation-delay: 7s;
    animation-duration: 25s;
}

/* Card Hover Effects - Enhanced */
.hover-lift {
    transition: all var(--timing-base) var(--easing-smooth);
}

.hover-lift:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
}

/* Glow on Hover */
.glow-on-hover {
    position: relative;
    transition: all var(--timing-base);
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity var(--timing-base);
}

.glow-on-hover:hover::after {
    opacity: 0.8;
}

/* Image Zoom Effect */
.image-zoom-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image-zoom-container img {
    transition: transform var(--timing-slower) var(--easing-smooth);
}

.image-zoom-container:hover img {
    transform: scale(1.15);
}

/* Staggered Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-stagger {
    opacity: 0;
    animation: fadeInUp var(--timing-slow) var(--easing-smooth) forwards;
}

.fade-in-stagger:nth-child(1) { animation-delay: 0.1s; }
.fade-in-stagger:nth-child(2) { animation-delay: 0.2s; }
.fade-in-stagger:nth-child(3) { animation-delay: 0.3s; }
.fade-in-stagger:nth-child(4) { animation-delay: 0.4s; }
.fade-in-stagger:nth-child(5) { animation-delay: 0.5s; }
.fade-in-stagger:nth-child(6) { animation-delay: 0.6s; }

/* Parallax Section */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Shimmer Effect for Loading/Hover */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Modern Section Dividers */
.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Enhanced Stats Counter */
.stat-modern {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.stat-modern .stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    line-height: 1;
}

.stat-modern .stat-label {
    color: var(--color-gray-text);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Tooltip - Modern */
.tooltip-modern {
    position: relative;
    cursor: help;
}

.tooltip-modern::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--timing-base);
    box-shadow: var(--shadow-lg);
}

.tooltip-modern:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Badge - Modern Style */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-md);
    transition: all var(--timing-base);
}

.badge-modern:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform-origin: left;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(108, 29, 255, 0.5);
}

/* Loading Spinner - Modern */
@keyframes spin-pulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.loader-modern {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(108, 29, 255, 0.2);
    border-top-color: #6c1dff;
    border-radius: 50%;
    animation: spin-pulse 1s ease-in-out infinite;
}

/* Glassmorphism Navigation Enhancement */
.nav-glass {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Card Grid */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.modern-grid-item {
    background: linear-gradient(135deg, rgba(108, 29, 255, 0.05), rgba(76, 20, 184, 0.05));
    border: 1px solid rgba(108, 29, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--timing-base) var(--easing-smooth);
    position: relative;
    overflow: hidden;
}

.modern-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 29, 255, 0.1), transparent);
    transition: left var(--timing-slow);
}

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

.modern-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(108, 29, 255, 0.5);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .blob-background {
        width: 300px;
        height: 300px;
    }
    
    .btn-modern {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
    
    .stat-modern .stat-number {
        font-size: 2.5rem;
    }
    
    .modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(108, 29, 255, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(108, 29, 255, 0.3);
    color: white;
}
