/* ==========================================================================
   Responsive CSS
   ========================================================================== */

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .script-text {
        font-size: 2rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .about-container {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-item {
        border-right: none;
        padding: 0;
    }
    
    .timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .bottom-container {
        gap: 2rem;
    }
}

/* Tablet Landscape (max-width: 992px) */
@media (max-width: 992px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero {
        background-position: center;
        background-size: cover;
    }

    .hero-overlay {
        background-image: linear-gradient(to bottom, rgba(255, 248, 241, 0.95) 0%, rgba(255, 248, 241, 0.85) 60%, rgba(255, 248, 241, 0.5) 100%);
    }

    .booking-card {
        margin: 2rem auto 0;
        width: 100%;
        max-width: 500px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .divider {
        display: none;
    }
    
    .stat-item {
        width: calc(33.333% - 2rem);
        justify-content: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .review-card:last-child {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-smooth);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .stat-item {
        width: calc(50% - 1rem);
    }
    
    .timeline {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .bottom-container {
        grid-template-columns: 1fr;
    }
    
    .final-cta {
        padding-top: 0;
        text-align: center;
    }
    
    .cta-content {
        padding-left: 0;
    }
    
    .limited-slots {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content .script-text {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        width: 100%;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 250px;
        justify-content: flex-start;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item {
        min-width: 0;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card:nth-child(2) {
        display: none;
    }
    
    .testimonials-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .testimonials-grid {
        order: -1;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
