/* Minimal CSS - Max Gym Homepage */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

:root {
    --color-bg: #1c1c1c;
    --color-text: #ffffff;
    --color-accent: #6c1dff;
    --color-accent-light: #bfa5ff;
    --color-dark-bg: #1c1c1c;
    --color-light-gray: #efefef;
    --color-off-white: #f8f8f8;
    --color-text-dark: #272525;
    --color-text-light: #ffffff;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
    --color-gray-text: #cccccc;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-power: 'Capsmall', sans-serif;
    --font-clean: 'Capsmall Clean', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: var(--font-primary); line-height: 1.6; color: var(--color-text); background: var(--color-bg); overflow-x: hidden; }
body { padding-top: 90px; }

/* Navigation */
.supergym-nav { 
    background: transparent; 
    backdrop-filter: blur(10px); 
    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; 
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.supergym-nav .nav-container { max-width: 1000px; margin: 0; padding: 0 0.5rem; display: flex; align-items: center; justify-content: flex-start; height: 70px; gap: 0.8rem; }
.supergym-nav .nav-menu { flex: 1; display: flex; justify-content: flex-end; margin-right: 0.5rem; }
.supergym-nav .nav-links { display: flex; list-style: none; margin: 0; padding: 0; gap: 2rem; align-items: center; }
.nav-logo { display: flex; align-items: center; }
.logo-image { height: 40px; width: auto; }
.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-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; }

/* Hero Section */
.hero-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); position: relative; overflow: hidden; }
.hero-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; }
.title-main { display: block; color: var(--color-text-light); font-family: var(--font-power); }
.title-sub { display: block; color: var(--color-accent); font-family: var(--font-clean); font-size: 0.6em; margin-top: 0.5rem; }
.hero-description { font-size: 1.2rem; color: var(--color-gray-text); max-width: 600px; margin: 0 auto 2rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-cta-primary { background: var(--color-accent); color: white; padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }
.hero-cta-primary:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3); }

/* Section Backgrounds */
.section-dark { 
    background: var(--color-dark-bg); 
    color: var(--color-text-light); 
    padding: 6rem 2rem; 
    position: relative; 
}

/* Ensure proper text contrast on dark sections */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark .section-title,
.section-dark .benefits-title,
.section-dark .dynamic-heading {
    color: #ffffff !important;
}

.section-dark p,
.section-dark .typography-body,
.section-dark .typography-body-large {
    color: #e2e8f0 !important;
}

.section-gray-slate,
.section-gray-cool,
.section-gray-warm {
    color: #ffffff;
}

.section-gray-slate h1,
.section-gray-slate h2,
.section-gray-slate h3,
.section-gray-slate h4,
.section-gray-slate h5,
.section-gray-slate h6,
.section-gray-slate .section-title,
.section-gray-cool h1,
.section-gray-cool h2,
.section-gray-cool h3,
.section-gray-cool h4,
.section-gray-cool h5,
.section-gray-cool h6,
.section-gray-cool .section-title,
.section-gray-warm h1,
.section-gray-warm h2,
.section-gray-warm h3,
.section-gray-warm h4,
.section-gray-warm h5,
.section-gray-warm h6,
.section-gray-warm .section-title {
    color: #ffffff !important;
}

.section-gray-slate p,
.section-gray-slate .typography-body,
.section-gray-cool p,
.section-gray-cool .typography-body,
.section-gray-warm p,
.section-gray-warm .typography-body {
    color: #e2e8f0 !important;
}
.section-light-gray { background: var(--color-light-gray); color: var(--color-text-dark); padding: 6rem 2rem; position: relative; }
.section-off-white { background: var(--color-off-white); color: var(--color-text-dark); padding: 6rem 2rem; position: relative; }

/* Additional background variations */
.section-gray-soft { 
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); 
    color: var(--color-text-dark); 
    padding: 6rem 2rem; 
    position: relative; 
}

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

.section-gray-soft p {
    color: #475569;
}

.section-purple-gradient {
    background: linear-gradient(135deg, #6c1dff 0%, #4c14b8 50%, #3d0f9f 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.section-purple-gradient h1,
.section-purple-gradient h2,
.section-purple-gradient h3,
.section-purple-gradient h4,
.section-purple-gradient h5,
.section-purple-gradient h6 {
    color: #ffffff;
}

.section-purple-gradient p {
    color: #e2e8f0;
}

.section-blue-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e293b 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.section-blue-gradient h1,
.section-blue-gradient h2,
.section-blue-gradient h3,
.section-blue-gradient h4,
.section-blue-gradient h5,
.section-blue-gradient h6 {
    color: #ffffff;
}

.section-blue-gradient p {
    color: #e2e8f0;
}

.section-green-gradient {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.section-green-gradient h1,
.section-green-gradient h2,
.section-green-gradient h3,
.section-green-gradient h4,
.section-green-gradient h5,
.section-green-gradient h6 {
    color: #ffffff;
}

.section-green-gradient p {
    color: #e2e8f0;
}

.section-orange-gradient {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.section-orange-gradient h1,
.section-orange-gradient h2,
.section-orange-gradient h3,
.section-orange-gradient h4,
.section-orange-gradient h5,
.section-orange-gradient h6 {
    color: #ffffff;
}

.section-orange-gradient p {
    color: #e2e8f0;
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #6c1dff 0%, #4c14b8 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    line-height: 1.3;
}

.service-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        height: auto;
        min-height: 350px;
    }
}

/* Navigation responsive improvements */
@media (max-width: 768px) {
    .supergym-nav {
        top: 10px;
        left: 20px;
        right: 20px;
        border-radius: 15px;
    }
    
    .supergym-nav .nav-container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .supergym-nav .nav-links {
        gap: 1rem;
    }
    
    .supergym-nav .nav-link {
        font-size: 0.85rem;
    }
    
    .supergym-nav .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
.section-light-gray h1, .section-light-gray h2, .section-light-gray h3, .section-light-gray h4, .section-light-gray h5, .section-light-gray h6, .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-light-gray p, .section-off-white p { color: var(--color-text-dark); }

/* Newsletter section contrast fixes */
.newsletter-section h3,
.newsletter-section .typography-h3 {
    color: #ffffff !important;
}

.newsletter-section p,
.newsletter-section .typography-body {
    color: #e2e8f0 !important;
}

/* Contact section contrast fixes */
.contact-section h1 {
    color: #ffffff !important;
}

.contact-section p {
    color: #e2e8f0 !important;
}

/* Testimonials section contrast fixes */
.testimonials-section h1,
.testimonials-section .section-title {
    color: #ffffff !important;
}

/* Club location section contrast fixes */
.club-location-section h1,
.club-location-section h2,
.club-location-section h3 {
    color: #ffffff !important;
}

.club-location-section p {
    color: #e2e8f0 !important;
}

/* Typography */
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-align: center; margin-bottom: 3rem; line-height: 1.2; }
.benefits-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-align: center; margin-bottom: 3rem; line-height: 1.2; color: #1a1a1a !important; }
.benefits-section .benefits-title, .benefits-container .benefits-title, h2.benefits-title { color: #1a1a1a !important; }
.membership-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-align: center; margin-bottom: 1.5rem; line-height: 1.2; }
.membership-subtitle { font-size: 1.1rem; color: var(--color-gray-text); text-align: center; max-width: 800px; margin: 0 auto 3rem; line-height: 1.6; }

/* 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 */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1400px; margin: 0 auto; align-items: stretch; position: relative; z-index: 2; }
.benefit-card { position: relative; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease; height: 300px; width: 100%; display: flex; flex-direction: column; }
.benefit-card:hover { /* Hover effect removed */ }
.benefit-image { position: relative; height: 300px; overflow: hidden; }
.benefit-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.benefit-card:hover .benefit-image img { /* Hover effect removed */ }
.benefit-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); color: white; padding: 2rem 1.5rem 1.5rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; }
.benefit-overlay h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; margin-top: 2rem; text-align: center; }
.benefit-link { color: var(--color-accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

/* Services Grid */
.services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.service-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.service-card:hover { /* Hover effect removed */ }
.service-image { height: 200px; background-size: cover; background-position: center; }
.service-content { padding: 2rem; }
.service-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-text-dark); }
.service-content p { color: var(--color-text-dark); margin-bottom: 1.5rem; line-height: 1.6; }
.service-btn { background: var(--color-accent); color: white; padding: 0.8rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; }
.service-btn:hover { background: var(--color-accent-light); transform: translateY(-2px); }

/* Membership Cards */
.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: 12px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; position: relative; border: 1px solid rgba(108, 29, 255, 0.2); max-height: 600px; display: flex; flex-direction: column; }
.membership-card:hover { /* Hover effect removed */ }
.membership-card.featured { border-color: #6c1dff; /* Scale removed */ }
.membership-header h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-text-light); }
.membership-price { margin: 1rem 0; }
.price-amount { font-size: 2.5rem; font-weight: 900; color: var(--color-accent); display: block; }
.price-period { color: var(--color-gray-text); font-size: 1rem; }
.membership-features { list-style: none; padding: 0; margin: 0 0 1.5rem 0; text-align: left; font-size: 0.9rem; flex-grow: 1; }
.membership-features li { padding: 0.3rem 0; color: var(--color-gray-text); position: relative; padding-left: 1.5rem; }
.membership-features li::before { content: '✓'; position: absolute; left: 0; color: #6c1dff; font-weight: bold; margin-right: 0.5rem; }
.membership-button { background: var(--color-accent); color: white; padding: 1rem 2rem; border-radius: 25px; text-decoration: none; font-weight: 600; text-align: center; transition: all 0.3s ease; margin-top: auto; }
.membership-button:hover { background: var(--color-accent-light); transform: translateY(-2px); }

/* Stats Section */
.stats-section { padding: 6rem 2rem; }
.stats-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.stats-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 3rem; line-height: 1.2; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--color-accent); display: block; margin-bottom: 0.5rem; }
.stat-label { color: var(--color-gray-text); font-size: 1rem; font-weight: 500; }

/* About Section */
.about-section { padding: 6rem 2rem; }
.about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 2rem; line-height: 1.2; }
.about-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; color: var(--color-text-dark); }
.service-icon { font-size: 0.8rem; font-weight: 900; font-family: var(--font-power); background: var(--color-accent); color: var(--color-text-light); 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-light); color: var(--color-white); transform: scale(1.05); box-shadow: 0 4px 15px rgba(108, 29, 255, 0.3); }
.about-image { position: relative; border-radius: 12px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Location Section */
.club-location-section { padding: 6rem 2rem; position: relative; background-size: cover; background-position: center; background-attachment: fixed; background: #ffffff !important; background-color: #ffffff !important; }
.club-location-section::before { display: none !important; content: none !important; background: transparent !important; }
.club-location-container { position: relative; z-index: 2; max-width: 1800px !important; width: 100% !important; margin: 0 auto; padding: 0 2rem 4rem 2rem; }
.club-location-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; padding: 3rem; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); max-width: 600px; margin: 0 auto; }
.club-location-card h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; color: var(--color-text-dark); }
.club-location-card p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; color: var(--color-text-dark); }
.location-button { background: var(--color-accent); color: white; padding: 1.5rem 3rem; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.2rem; transition: all 0.3s ease; display: inline-block; }
.location-button:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3); }

/* Footer */
.footer { background: var(--color-dark-bg); color: var(--color-text-light); padding: 3rem 0 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-section h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-accent); }
.footer-section p, .footer-section a { color: var(--color-gray-text); text-decoration: none; line-height: 1.6; transition: color 0.3s ease; }
.footer-section a:hover { color: var(--color-accent); }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--color-gray); color: var(--color-gray-text); }

/* Font Classes */
.capsmall-text { font-family: 'Capsmall', 'Bebas Neue', 'Oswald', sans-serif; font-size: 1.2em; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }
.capsmall-clean-text { font-family: 'Capsmall Clean', 'Bebas Neue', 'Oswald', sans-serif; font-size: 1.2em; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }

/* Brush Marker Effects */
.brush-marker-double { background: linear-gradient(45deg, var(--color-accent), var(--color-accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brush-marker-splatter { background: linear-gradient(45deg, var(--color-accent), var(--color-accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.animated-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; animation: gradientShift 3s ease-in-out infinite; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Section Separators */
.section-separator-bottom::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); }
.section-separator-top::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); }

/* Animation Classes */
.slide-up-stagger { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.slide-up-stagger.animate { opacity: 1; transform: translateY(0); }
.hover-lift { transition: transform 0.3s ease; }
.hover-lift:hover { transform: translateY(-5px); }
.image-zoom-container { overflow: hidden; }
.image-zoom-container img { transition: transform 0.3s ease; }
.image-zoom-container:hover img { transform: scale(1.05); }

/* Content and Utility Classes */
.content { position: relative; z-index: 2; }
.non-critical { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.highlight { color: var(--color-accent); position: relative; }
.cta-button { background: var(--color-accent); color: white; padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; display: inline-block; }
.cta-button:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108, 29, 255, 0.3); }
.text-center { text-align: center; }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Google Reviews */
.google-reviews-section { margin-top: 2rem; display: flex; justify-content: center; }
.google-reviews-link { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px; padding: 1rem 1.5rem; text-decoration: none; color: white; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; font-size: 0.9rem; font-weight: 500; }
.google-reviews-link:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.google-stars { color: #ffd700; font-size: 1rem; }

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

@media (max-width: 768px) {
    .supergym-nav { top: 15px; left: 30px; right: 30px; border-radius: 18px; }
    .supergym-nav .nav-container { height: 60px; padding: 0 1rem; max-width: 100%; }
    .supergym-nav .nav-links { display: none; }
    .supergym-nav .cta-button { display: none; }
    body { padding-top: 75px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-cta-primary { width: 100%; max-width: 300px; text-align: center; }
    .membership-cards { grid-template-columns: 1fr; max-width: 400px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .services-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .club-location-container { padding: 0 1rem 2rem 1rem; }
    .club-location-card { padding: 2rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

