/* responsive.css */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .booking-image {
        height: 350px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    /* Header */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark);
        transition: var(--transition);
        padding: 40px 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 80%;
        text-align: center;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Services */
    .services-grid {
        gap: 20px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Statistics */
    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    /* Schedule table already scrolls on small screens */
    .schedule-grid {
        margin-top: 30px;
    }

    /* Testimonials */
    .testimonial {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .client-image {
        min-width: 120px;
        height: 120px;
    }

    .testimonial-content p {
        padding-left: 0;
    }

    .testimonial-content p:before {
        display: none;
    }

    /* Footer */
    .footer-grid {
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li, .working-hours li {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    /* Statistics */
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-card i {
        font-size: 2.5rem;
    }

    .stat-card h3 {
        font-size: 2.2rem;
    }

    /* Booking */
    .booking-wrapper {
        padding: 20px;
    }

    .form-group input, .form-group select {
        padding: 15px 20px;
    }

    /* Testimonials */
    .testimonial {
        padding: 20px;
    }

    .client-image {
        min-width: 100px;
        height: 100px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    /* Trainer spotlight */
    .trainer-spotlight {
        padding: 2rem 1.5rem;
    }

    .trainer-spotlight img {
        width: 120px;
        height: 120px;
    }

    .trainer-spotlight h3 {
        font-size: 1.5rem;
    }

    .trainer-spotlight p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-column h3, .footer-column h4 {
        font-size: 1.3rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}