@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 0;
        align-items: center;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 992px) {
    .testimonial-nav {
        display: none;
    }
    
    .testimonials-carousel-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
        overflow-x: auto;
        /* Add scroll snapping for a better mobile experience */
        scroll-snap-type: x mandatory;
    }
    
    .testimonials-carousel {
        padding-bottom: 1rem; /* Space for scrollbar */
    }

    .testimonial-card {
        scroll-snap-align: center;
        flex: 0 0 80%; /* Make cards wider on mobile */
    }

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

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 70vh;
    }

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

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero p {
        font-size: 1rem;
    }

    .service-hero {
        padding: 100px 0 60px;
    }

    .service-image-hero {
        height: 250px;
        margin-bottom: 40px;
    }

    .service-booking-form {
        padding: 2rem 1.5rem;
    }

    .service-suitability {
        grid-template-columns: 1fr;
    }
}