/* ===========================================
   FUTURE TIMES GYM - ULTRA PREMIUM STYLES
   Spectacular Modern Design with World-Class UI/UX
   =========================================== */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

:root {
    /* Premium Color Palette */
    --deep-blue: #001233;
    --electric-blue: #0066FF;
    --neon-green: #00FF88;
    --vibrant-purple: #9D4EDD;
    --pure-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #212529;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-blue) 0%, var(--electric-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-purple) 100%);
    
    /* Effects */
    --glass-effect: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --blur-background: blur(20px);
    
    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-bold: 0 20px 60px rgba(0, 102, 255, 0.15);
    
    /* Border Radius */
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 40px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--pure-white);
    color: var(--dark-gray);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--deep-blue);
    position: relative;
    display: inline-block;
}



h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--deep-blue);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--deep-blue);
}

p {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    margin-bottom: 20px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* ===== SPECTACULAR HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-medium);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.0 rem;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 40px;   /* same visual size as Font Awesome icon */
    height: 40px;
    object-fit: contain;
}


@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* ===== SPECTACULAR HAMBURGER MENU ===== */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-small);
    cursor: pointer;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pure-white);
    transition: var(--transition-fast);
    border-radius: 1px;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== SPECTACULAR NAVIGATION ===== */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-fast);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-links a.active {
    color: var(--electric-blue);
    font-weight: 700;
}

.nav-cta {
    background: var(--gradient-accent);
    color: var(--pure-white);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

/* ===== SPECTACULAR MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 60px;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links a {
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    transition: var(--transition-fast);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover::after {
    width: 100%;
}

.mobile-cta {
    background: var(--gradient-accent);
    color: var(--pure-white);
    padding: 15px 40px;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* ===== SPECTACULAR HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(#212529);
    padding-top: 100px;
}

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

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
    padding: 30px;
    background: transparent;
    backdrop-filter: none;
    border-radius: none;
    box-shadow: none;
    padding: 0;
}

.hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    margin-bottom: 40px;
    color: var(--dark-gray);
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    transition: var(--transition-fast);
}

.btn:hover::before {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--pure-white);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-secondary:hover {
    background: var(--deep-blue);
    color: var(--pure-white);
    transform: translateY(-5px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}
/* ===== THICK LINE SECTION (Like Cultivate Wellness PT) ===== */
.thick-line-section {
    position: relative;
    padding: 60px 0;
    background: var(--pure-white);
    text-align: center;
    overflow: hidden;
}

/* Thin decorative line above thick line */
.thick-line-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
}

/* Thick accent line */
.thick-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--vibrant-purple));
    margin: 0 auto 30px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

/* Animated shimmer effect on the thick line */
.thick-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s infinite;
}

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

/* Section content */
.section-intro {
    max-width: 600px;
    margin: 0 auto;
}

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    display: none; /* Remove the default underline */
}

.section-intro p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--dark-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Add subtle floating animation to the section */
.thick-line-section .section-intro {
    animation: floatSubtle 6s ease-in-out infinite;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .thick-line-section {
        padding: 40px 0;
    }
    
    .thick-line {
        width: 80px;
        height: 3px;
        margin-bottom: 25px;
    }
    
    .section-intro h2 {
        margin-bottom: 15px;
    }
}

/* Remove any extra spacing between hero and this section */
.hero + .thick-line-section {
    margin-top: 0;
    padding-top: 40px; /* Minimal top padding */
}

/* Adjust hero bottom spacing */
.hero {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Ensure services section comes right after */
.thick-line-section + .services-section {
    margin-top: 0;
    padding-top: 0;
}
/* ===== SPECTACULAR SERVICES CAROUSEL ===== */
.services-section {
    padding: 60px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
}

.services-carousel {
    position: relative;
    padding: 30px 0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    margin: 0 -15px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 15px;
}

.service-card {
    flex: 0 0 calc(100% - 20px);
    background: var(#4B5563);
    border-radius: var(--radius-medium);
    padding: 25px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-bold);
}

.service-icon {
    font-size: 2.2rem; 
    color: var(--electric-blue);
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--deep-blue);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--pure-white);
    border: 2px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--deep-blue);
}

.carousel-btn:hover {
    background: var(--electric-blue);
    color: var(--pure-white);
    border-color: var(--electric-blue);
    transform: translateY(-3px);
}
/* Minimal Services section */
.minimal-services-section {
    background: linear-gradient(135deg, #1a1d23 0%, #2d3139 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Shiny effect overlay */
.minimal-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle grid pattern */
.minimal-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.minimal-services-container {
    position: relative;
    z-index: 2;
}

.minimal-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.minimal-services-header h2 {
    color: var(--pure-white);
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.minimal-services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--vibrant-purple));
    border-radius: 2px;
}

.minimal-services-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Minimal Services List */
.minimal-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.minimal-service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    min-height: 80px;
}

.minimal-service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Content */
.service-content {
    flex: 1;
    padding-right: 20px;
}

.service-content h3 {
    color: var(--pure-white);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Service Icon */
.service-icon-minimal {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15) 0%, 
        rgba(0, 102, 255, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.minimal-service-item:hover .service-icon-minimal {
    background: linear-gradient(135deg, var(--neon-green), var(--vibrant-purple));
    color: var(--pure-white);
    transform: scale(1.1) rotate(5deg);
}

.minimal-service-item:hover .service-arrow {
    color: var(--neon-green);
    transform: translateX(5px);
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--neon-green), var(--vibrant-purple));
    color: var(--pure-white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-btn::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.6s;
    z-index: -1;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}


/* ===== SPECTACULAR FEATURES ===== */
.features-section {
    padding: 60px 0;
    background: var(--pure-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-bold);
}

.feature-icon {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet & Desktop Responsive */
@media (min-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-carousel {
        padding: 40px 0;
    }
    
    .carousel-track {
        gap: 25px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 25px);
        padding: 30px;
        min-height: 350px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        width: 65px;
        height: 65px;
    }
}

@media (min-width: 992px) {
    .services-section {
        padding: 100px 0;
    }
    
    .services-carousel {
        padding: 50px 0;
    }
    
    .carousel-track {
        gap: 30px;
    }
    
    .service-card {
        flex: 0 0 calc(33.333% - 30px);
        padding: 40px;
        min-height: 380px;
    }
    
    .service-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .carousel-nav {
        margin-top: 40px;
    }
    
    .carousel-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        margin-top: 50px;
    }
    
    .feature-card {
        padding: 35px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .services-section {
        padding: 120px 0;
    }
    
    .services-carousel {
        padding: 60px 0;
    }
    
    .service-card {
        flex: 0 0 calc(33.333% - 30px);
        min-height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-top: 60px;
    }
    
    .feature-card {
        padding: 40px;
    }
}

/* Mobile-first responsive design */
@media (max-width: 767px) {
    .carousel-container {
        margin: 0 -10px;
    }
    
    .carousel-track {
        gap: 15px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px;
        min-height: 280px;
    }
    
    .service-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .carousel-nav {
        gap: 10px;
        margin-top: 25px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 50px 0;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
}

/* ===== SPECTACULAR FEATURES ===== */
.features-section {
    padding: 80px 0;
    background: var(--pure-white);
}

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

.feature-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-bold);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SPECTACULAR TESTIMONIALS ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 50px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--electric-blue);
    opacity: 0.2;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--electric-blue);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--deep-blue);
}

.author-info p {
    color: var(--dark-gray);
    opacity: 0.7;
    margin: 0;
}

/* ===== SPECTACULAR CTA ===== */
.cta-section {
    padding: 150px 0;
    background: var(--gradient-primary);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%230066FF" opacity="0.1" d="M0,500 Q250,400 500,500 T1000,500 L1000,1000 L0,1000 Z"/></svg>');
    background-size: cover;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--pure-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.cta-section h2::after {
    background: var(--neon-green);
    left: 50%;
    transform: translateX(-50%);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-button {
    background: var(--neon-green);
    color: var(--deep-blue);
    padding: 18px 50px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== SPECTACULAR FOOTER ===== */
footer {
    background: var(--deep-blue);
    color: var(--pure-white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

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

.footer-column h3 {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--neon-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--neon-green);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== SPECTACULAR SERVICES PAGE ===== */
.services-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
     background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-purple) 100%);
    color: var(--pure-white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%230066FF" opacity="0.2" d="M0,0 Q500,200 1000,0 L1000,1000 L0,1000 Z"/></svg>');
    background-size: cover;
}

.services-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.services-header h1 {
    color: var(--pure-white);
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

.services-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 100px 0;
}

.service-page-card {
    background: var(#4B5563);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-page-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-bold);
}

.service-page-image {
    height: 250px;
    overflow: hidden;
}

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

.service-page-card:hover .service-page-image img {
    transform: scale(1.1);
}

.service-page-content {
    padding: 40px;
}

.service-page-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.service-page-content p {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .minimal-services-section {
        padding: 60px 0;
    }
    
    .minimal-services-header {
        margin-bottom: 40px;
    }
    
    .minimal-services-header h2 {
        font-size: 1.8rem;
    }
    
    .minimal-services-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .minimal-service-item {
        padding: 18px 20px;
        min-height: 75px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .service-icon-minimal {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .services-stat .number {
        font-size: 2rem;
    }
    
    .services-stat .label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .minimal-services-section {
        padding: 50px 0;
    }
    
    .minimal-service-item {
        padding: 15px;
        min-height: 70px;
    }
    
    .service-content {
        padding-right: 15px;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.8rem;
    }
    
    .service-icon-minimal {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .view-more-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Animation for items */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.minimal-service-item {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

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

/* Hover sound effect trigger */
.minimal-service-item {
    cursor: pointer;
}

/* ===== SPECTACULAR ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ===== SPECTACULAR RESPONSIVENESS ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding: 40px;
        margin: 0 20px;
    }
    
    .service-card {
        flex: 0 0 calc(100% - 30px);
        min-height: 350px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .services-grid,
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card,
    .feature-card,
    .service-page-card,
    .program-card {
        padding: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .services-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .mobile-nav-links a {
        font-size: 2rem;
    }
}

/* ===== SPECTACULAR UTILITIES ===== */
/* Gradient text accent for headings */
.text-gradient {
    background: linear-gradient(90deg, #00c6ff, #0072ff); /* tweak to match your brand */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass effect card for content blocks over blurred bg */
.glass-effect {
    background: rgba(255, 255, 255, 0.08); /* slightly softer for gym bg */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    color: #fff; /* ensures text pops against dark overlay */
}

/* Section padding adjusted for responsiveness */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 430px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Margin utilities */
.mt-80 { margin-top: 80px; }
.mb-80 { margin-bottom: 80px; }

/* Center text utility */
.text-center { text-align: center; }

/* Why Choose Us background */
.why-choose-us {
    position: relative;
    background-image: url('assets\img\blurred-gym-bg.jpg'); /* replace with your generated image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: hidden;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* overlay for readability */
    z-index: 1;
}

.why-choose-us .container,
.why-choose-us * {
    position: relative;
    z-index: 2;
    background: transparent; /* remove white background from container */
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vibrant-purple);
}