@media (max-width: 992px) {
    .pc-only { display: none !important; }

    /* --- 1. HEADER: ABSOLUTE PRO SYMMETRY --- */
    .top-bar { display: none; } 

    .main-header { 
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        position: relative; /* Anchor for absolute logo */
        min-height: 70px;
    }

    .menu-toggle { 
        display: block; 
        font-size: 24px;
        z-index: 10;
        cursor: pointer;
    }

    .logo { 
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }
    .logo a { display: flex; align-items: center; justify-content: center; }
    .logo img { height: 35px !important; margin: 0 !important; }
    .logo-text-pc { display: none !important; }

    .header-actions {
        display: flex;
        align-items: center;
        z-index: 10;
    }
    .btn-quote-header { 
        background: none !important;
        color: var(--primary-color) !important;
        padding: 0 !important;
        font-size: 22px !important; /* Balanced size with Hamburger */
        min-width: auto !important;
    }
    .quote-text-pc { display: none !important; }

    /* --- 2. HERO: HIGH-IMPACT FULL WIDTH --- */
    .hero-section { 
        flex-direction: column; 
        padding: 0; 
        gap: 0; 
    }
    .sidebar-categories { 
        display: none !important; 
    }
    .hero-slider { 
        width: 100%; 
        border-radius: 0; 
        min-height: 320px; 
        padding: 40px 20px;
        text-align: center;
        justify-content: center;
    }
    .hero-content h2 { 
        font-size: 32px !important; 
        line-height: 1.2;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn-shop, .btn-cta {
        width: 100% !important;
        padding: 15px !important;
    }

    /* --- 3. MOBILE MENU: SLIDE-OUT --- */
    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100%;
        background: var(--primary-color);
        z-index: 10001;
        transition: 0.4s ease-in-out;
        display: block !important;
        box-shadow: 5px 0 20px rgba(0,0,0,0.3);
    }
    .nav-container.active { left: 0; }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: var(--primary-dark);
        color: white;
    }
    #close-mobile-menu { font-size: 30px; cursor: pointer; }

    .nav-menu {
        flex-direction: column;
        padding: 20px 0;
    }
    .nav-menu li a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 16px;
    }

    /* --- 4. WHY CHOOSE US: CUSTOM STACK --- */
    .section-header .mobile-only-img {
        display: block !important;
        margin: 0 auto;
        max-width: 90%;
        height: 150px !important;
        object-fit: cover;
    }
    .split-content-container {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
    }
    .split-content-container > div:last-child {
        display: none !important; /* Hide side image */
    }
    .split-content-container > div:first-child {
        width: 100% !important;
    }
    .split-content-container ul li {
        justify-content: center;
    }

    /* --- 5. PROMO BANNERS: LUXURY TYPOGRAPHY --- */
    .half-promo-grid {
        padding: 0 5% 40px !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .promo-card-wide {
        padding: 30px 20px !important;
        height: 240px !important;
        text-align: center;
        align-items: center;
        border-radius: 12px !important;
    }
    .promo-card-wide div:first-child {
        font-size: 22px !important;
        margin-bottom: 5px !important;
    }
    .promo-card-wide h3 {
        font-size: 22px !important;
        margin: 5px 0 15px !important;
        max-width: 90%;
    }
    .promo-card-wide a {
        align-self: center !important;
        padding: 12px 30px !important;
        font-size: 13px !important;
    }

    /* --- 6. CLEANING DEALS: SINGLE COLUMN --- */
    .on-sale-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .on-sale-main-banner {
        flex: none !important;
        width: 100% !important;
        height: 400px !important;
        text-align: center;
        padding: 30px !important;
    }
    .on-sale-main-banner h2 { font-size: 28px !important; line-height: 1.2 !important; }
    
    .on-sale-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .mini-product {
        padding: 15px !important;
    }

    /* --- 7. GLOBAL GRID STACKING --- */
    .promo-grid, .product-grid, .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* --- 8. NEW IMAGE GALLERIES: RESPONSIVE GRID --- */
    .service-img-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .service-img-grid-small {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .service-img-grid img,
    .service-img-grid-small img {
        height: 160px !important;
    }

    /* --- 9. SERVICE ICON CARDS --- */
    .service-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    .service-icon-card {
        padding: 20px 10px !important;
    }

    /* --- 10. BENTO GRIDS --- */
    .bento-3 { grid-template-columns: repeat(2, 1fr) !important; }
    .bento-4 { grid-template-columns: repeat(2, 1fr) !important; }
    .bento-featured { grid-template-columns: 1fr 1fr !important; }
    .bento-featured img:first-child { grid-column: span 2; grid-row: span 1; }
    .custom-creations-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

    /* --- 11. HOMEPAGE PREMIUM SPLITS --- */
    .hp-split, .hp-split-reverse {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .hp-split-text, .hp-split-media {
        min-width: 100% !important;
        flex: none !important;
    }
    .hp-dark-section {
        padding: 50px 5% !important;
    }
    .hp-btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px !important;
    }
}

@media (max-width: 768px) {
    .hp-media-flex-row {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .service-img-grid {
        grid-template-columns: 1fr !important;
    }
    .service-img-grid-small {
        grid-template-columns: 1fr 1fr !important;
    }
    .service-cards-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .service-icon-card {
        padding: 15px 8px !important;
        font-size: 11px !important;
    }
    .bento-3, .bento-4, .bento-featured {
        grid-template-columns: 1fr !important;
    }
    .bento-featured img:first-child { grid-column: span 1; }
}
