/* ============================================================
   MOBILE OPTIMIZATION OVERRIDES
   ============================================================ */

/* Hide hamburger menu by default on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    /* --- HEADER & NAVIGATION --- */
    .header-inner {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        color: var(--netral, #ffffff);
        cursor: pointer;
        z-index: 1001;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Slide from right */
        width: 280px;
        height: 100vh;
        background-color: var(--accent-2, #193C2B);
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center;
        padding-top: 5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        gap: 0 !important;
    }

    .nav-menu.active-mobile-nav {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem !important;
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    /* --- LAYOUT GRIDS --- */
    .about-grid, 
    .services-grid, 
    .reviews-grid, 
    .location-grid, 
    .footer-grid, 
    .service-details-grid, 
    .benefits-grid,
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-grid {
        text-align: center;
    }
    .footer-grid .contact-info div {
        justify-content: center;
    }

    /* --- FLEX CONTAINERS --- */
    .hero-container,
    .hero-content-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .hero-content {
        margin: 0 auto;
    }

    /* --- WIDTH FIXES --- */
    .hero-booking-card,
    .hero-booking-form {
        width: 100% !important;
        max-width: 500px !important;
        position: relative !important;
        right: auto !important;
        margin: 0 auto !important;
    }

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

    /* --- PADDING & TYPOGRAPHY --- */
    .hero {
        padding: 7rem 1rem 3rem !important;
        min-height: auto !important;
    }
    .hero-section {
        padding: 7rem 5% 4rem !important;
        min-height: auto !important;
    }
    .section {
        padding: 4rem 1rem !important;
    }
    
    .hero-content h1, .hero-text-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }
    
    .section-title h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    }

    .section-title.left {
        text-align: center !important;
    }

    /* --- ALIGNMENT --- */
    .service-tags-animated, .hero-content .tag {
        justify-content: center !important;
    }
    
    .hero-content .tag::after {
        display: none !important;
    }
}
