:root {
    --bg-dark: #2B2B3F;
    --bg-light-gray: #F8FAFC;
    --bg-medium-gray: #E2E8F0;
    --cta-green: #56C271;
    --accent-yellow: #F4B400;
    --text-light: #F8FAFC;
    --text-subtle: #E2E8F0;
    --text-dark: #2B2B3F;
    --footer-dark: #1E1E2E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(43, 43, 63, 0.98) 0%, rgba(35, 35, 55, 0.98) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(86, 194, 113, 0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(86, 194, 113, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(43, 43, 63, 1) 0%, rgba(35, 35, 55, 1) 100%);
}

.navbar.scrolled::after {
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
}

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

.logo-img {
    height: 100px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cta-green);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cta-green);
}

.cta-button {
    background-color: var(--cta-green);
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(86, 194, 113, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86, 194, 113, 0.4);
    color: var(--bg-dark);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 180px;
    background-image: url('../assets/hero-background.jpg');
    background-size: cover;
    background-position: center 150px;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 63, 0.65) 0%, rgba(35, 35, 55, 0.70) 100%);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-subtle);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Hero Stats - Sociale Bewijskracht */
.hero-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(43, 43, 63, 0.75) 0%, rgba(35, 35, 55, 0.85) 100%);
    border-radius: 20px;
    border: 2px solid rgba(86, 194, 113, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.stat-value {
    color: #FF6B35;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-subtle);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(180deg, transparent 0%, rgba(86, 194, 113, 0.5) 50%, transparent 100%);
}

/* Hero Features Icons */
.hero-features {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

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

.hero-feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 250, 252, 0.1);
    border-radius: 16px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.hero-feature-icon:hover {
    transform: translateY(-5px);
    background: rgba(248, 250, 252, 0.15);
    box-shadow: 0 8px 20px rgba(86, 194, 113, 0.2);
}

.hero-feature-icon svg {
    width: 100%;
    height: 100%;
}

.hero-feature-item span {
    color: var(--text-subtle);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Icon Animations */
@keyframes rotateStopwatch {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes pulseStrength {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes swingScale {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.icon-stopwatch {
    animation: rotateStopwatch 3s ease-in-out infinite;
}

.icon-stopwatch .stopwatch-hand {
    transform-origin: 50% 55%;
    animation: rotate360 4s linear infinite;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-strength {
    animation: pulseStrength 2s ease-in-out infinite;
}

.icon-strength .barbell {
    animation: liftBarbell 2s ease-in-out infinite;
}

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

.icon-scale {
    animation: swingScale 2.5s ease-in-out infinite;
}

.icon-scale .scale-needle {
    transform-origin: 50% 35%;
    animation: swingNeedle 2.5s ease-in-out infinite;
}

@keyframes swingNeedle {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--cta-green);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(86, 194, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(86, 194, 113, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(244, 180, 0, 0.4);
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

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

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.functional-fitness .section-title,
.small-group .section-title,
.testimonials .section-title,
.faq .section-title {
    color: var(--text-dark);
}

.functional-fitness .section-text,
.small-group .section-text,
.testimonials .section-text {
    color: #5A5A6F;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-subtle);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-hero {
    background-color: var(--bg-light-gray);
    padding: 4rem 0;
}

.hero-testimonial-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 3rem 2.5rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    text-align: center !important;
    border: none !important;
    transform: none !important;
    transition: none !important;
}

.hero-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-testimonial-stars .star {
    width: 32px;
    height: 32px;
    color: #F5B800;
}

.hero-testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.hero-testimonial-author {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cta-green);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-hero {
        padding: 3rem 0;
    }
    
    .hero-testimonial-card {
        padding: 2rem 1.5rem !important;
    }
    
    .hero-testimonial-stars .star {
        width: 28px;
        height: 28px;
    }
    
    .hero-testimonial-quote {
        font-size: 1.25rem;
    }
}

.functional-fitness {
    background-color: var(--bg-light-gray);
}

.ff-intro {
    max-width: 850px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 16px;
    border-left: 4px solid var(--cta-green);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.ff-intro p {
    font-size: 1.125rem;
    color: #5A5A6F;
    line-height: 1.8;
    margin: 0;
}

.benefits-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 4rem 0 0.5rem;
}

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

.benefit-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-medium-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--cta-green);
    box-shadow: 0 10px 30px rgba(86, 194, 113, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--cta-green);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(86, 194, 113, 0.1);
    border-radius: 50%;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: rgba(86, 194, 113, 0.2);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.15);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #5A5A6F;
    line-height: 1.6;
    margin: 0;
}

.ff-conclusion {
    max-width: 850px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #56C271 0%, #4AA65F 100%);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(86, 194, 113, 0.25);
}

.ff-conclusion h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.ff-conclusion p {
    font-size: 1.125rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ff-conclusion p.highlight {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.boxing-section {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2B2B3F 0%, #1E1E2E 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.boxing-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.boxing-intro {
    font-size: 1.125rem;
    color: var(--text-subtle);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.boxing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.boxing-card {
    background: rgba(248, 250, 252, 0.08);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(244, 180, 0, 0.2);
    backdrop-filter: blur(10px);
}

.boxing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(244, 180, 0, 0.25);
    background: rgba(248, 250, 252, 0.12);
}

.boxing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 8px rgba(244, 180, 0, 0.3));
}

.boxing-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.star-icon {
    animation: star-glow 2s ease-in-out infinite;
}

@keyframes star-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(244, 180, 0, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(244, 180, 0, 0.9));
        transform: scale(1.1);
    }
}

.boxing-card:hover .boxing-icon svg {
    transform: scale(1.15);
}

.boxing-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 0.75rem;
}

.boxing-card p {
    font-size: 0.95rem;
    color: var(--text-subtle);
    line-height: 1.5;
}

.personal-training {
    background-color: var(--bg-dark);
}

.personal-training-layout {
    max-width: 700px;
    margin: 3rem auto 0;
}

.pt-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pt-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pt-photo:hover {
    transform: scale(1.05);
}

.pt-content {
    display: flex;
    flex-direction: column;
}

.training-benefits {
    list-style: none;
    margin: 0 0 2rem 0;
}

.training-benefits li {
    font-size: 1.125rem;
    color: var(--text-subtle);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.training-benefits .check-svg {
    width: 24px;
    height: 24px;
    color: var(--cta-green);
    stroke: currentColor;
    flex-shrink: 0;
}

.pricing {
    background-color: #1E1E2E;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.price-detail {
    font-size: 1.125rem;
    color: var(--text-subtle);
}

.small-group {
    background-color: var(--bg-light-gray);
}

.group-image-container {
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.group-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.group-photo:hover {
    transform: scale(1.02);
}

.group-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.group-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.check-icon {
    width: 28px;
    height: 28px;
    color: var(--cta-green);
    stroke: currentColor;
    flex-shrink: 0;
}

.pricing-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 3rem 0 2rem;
    color: var(--text-dark);
}

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

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-medium-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.2);
}

.pricing-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5A5A6F;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cta-green);
}

.pricing-explanation {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem auto 3rem;
    max-width: 800px;
    border: 2px solid var(--bg-medium-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-explanation h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-explanation > p {
    font-size: 1.125rem;
    color: #5A5A6F;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-example {
    background: linear-gradient(135deg, #56C271 0%, #4AA65F 100%);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.example-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-example p {
    color: white;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.pricing-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-details li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-details .check-svg {
    width: 24px;
    height: 24px;
    color: var(--cta-green);
    stroke: currentColor;
    flex-shrink: 0;
}

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

.schedule {
    background-color: var(--bg-dark);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-day {
    background-color: #1E1E2E;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--cta-green);
}

.schedule-day h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
}

.time {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.location-info {
    background-color: #1E1E2E;
    padding: 2rem;
    border-radius: 16px;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cta-green);
}

.location-info p {
    margin-bottom: 0.5rem;
    color: var(--text-subtle);
}

.location-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    background-color: var(--bg-light-gray);
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-medium-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.2);
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--cta-green);
}

.about {
    background-color: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--text-subtle);
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #1E1E2E;
    border-radius: 12px;
    border-left: 4px solid var(--cta-green);
    font-size: 1.125rem;
}

.faq {
    background-color: var(--bg-light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--bg-medium-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover {
    color: var(--cta-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #5A5A6F;
    font-size: 1rem;
    line-height: 1.6;
}

.contact {
    background-color: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background-color: #1E1E2E;
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(226, 232, 240, 0.1);
    border-radius: 8px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cta-green);
    box-shadow: 0 0 0 3px rgba(86, 194, 113, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-methods {
    background-color: #1E1E2E;
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
}

.contact-methods h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-btn.whatsapp {
    color: #25D366;
}

.contact-btn.phone {
    color: var(--accent-yellow);
}

.contact-btn.email {
    color: var(--cta-green);
}

.contact-btn:hover {
    transform: translateY(-2px);
    border-color: currentColor;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.contact-btn-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
}

.contact-btn-subtitle {
    font-size: 0.875rem;
    color: var(--text-subtle);
    font-weight: 400;
}

.success-message {
    display: none;
    background-color: var(--cta-green);
    color: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.footer {
    background-color: var(--footer-dark);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-subtle);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cta-green);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-copyright {
    color: var(--text-subtle);
    font-size: 0.9rem;
}

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

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(43, 43, 63, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .personal-training-layout {
        grid-template-columns: 1fr;
    }

    .schedule-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .section-title,
    .about-text p {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 70px;
    }

    .hero {
        padding-top: 145px;
        padding-left: 1rem;
        padding-right: 1rem;
        background-position: center 85%;
        background-attachment: scroll;
        min-height: 100vh;
    }

    .hero-container {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Hero Stats Responsive */
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .benefits-grid,
    .boxing-features,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .group-image-container {
        margin: 2rem -1rem;
        border-radius: 0;
    }

    .group-photo {
        min-height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .about-image img {
        width: 100%;
        height: auto;
        min-height: 350px;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
    }

    .about-content {
        gap: 2rem;
    }
}