:root {
    --dark-brown: #631919;
    --dark-grey: #3b3b3b;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: #fafafa; font-family: 'Outfit', sans-serif; color: #333333; line-height: 1.6; overflow-x: hidden; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; width: 100%; height: 110px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: #3b3b3b; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-logo-img { height: 80px; width: auto; mix-blend-mode: screen; filter: contrast(3) grayscale(100%); }
.nav-links { display: flex; gap: 35px; }
.nav-link { font-size: 0.8rem; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: color 0.3s ease; font-weight: 600; }
.nav-link:hover { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }
.nav-link.active { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }

@media (max-width: 900px) {
    .nav { flex-direction: column; justify-content: center; height: auto; padding: 15px 0; }
    .nav-logo-img { margin-bottom: 10px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .nav-link { font-size: 0.7rem; }
}

/* Footer */
.footer { background: var(--dark-grey); color: #dcdcdc; padding: 70px 5% 30px; font-family: 'Outfit', sans-serif; position: relative; z-index: 10; margin-top: 60px; }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; max-width: 1400px; margin-left: auto; margin-right: auto; }
.footer-logo { height: 100px; margin-bottom: 25px; mix-blend-mode: screen; filter: contrast(3) grayscale(100%); } 
.footer-col h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: #ffffff; margin-bottom: 25px; font-weight: 500; letter-spacing: 0.5px; }
.about-col h3 { margin-top: -10px; }
.about-col p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 25px; text-align: justify; color: #ccc; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; font-size: 0.9rem; display: flex; align-items: flex-start; color: #ccc; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: #ffffff; }
.footer-col ul li::before { content: '\2022'; color: var(--dark-brown); font-size: 1.2rem; margin-right: 12px; line-height: 0.8; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; border: 1px solid #ccc; border-radius: 50%; color: #ccc; text-decoration: none; margin-right: 12px; transition: all 0.3s ease; font-weight: bold; }
.social-icons a:hover { background: #ffffff; color: var(--dark-grey); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; max-width: 1400px; margin: 0 auto; }
.contact-strip { display: flex; justify-content: center; gap: 80px; margin-bottom: 40px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 20px; }
.icon-circle { width: 50px; height: 50px; background: var(--dark-brown); border-radius: 50%; display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; }
.contact-item span { font-size: 0.85rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 3px; }
.contact-item strong { font-size: 1.1rem; color: #fff; font-weight: 500; }
.copyright { text-align: center; font-size: 0.85rem; color: #888; letter-spacing: 0.5px; }

@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; }
    .contact-strip { flex-direction: column; align-items: center; gap: 30px; text-align: center; }
    .contact-item { flex-direction: column; gap: 10px; }
}

/* Floating Buttons */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; background: #25D366; color: white; width: 55px; height: 55px; border-radius: 50%; display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; transition: transform 0.3s ease; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-icon { width: 30px; height: 30px; fill: white; }
.scroll-top { position: fixed; bottom: 30px; right: 30px; background: var(--dark-brown); color: white; width: 55px; height: 55px; border-radius: 50%; display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; cursor: pointer; transition: transform 0.3s ease; font-size: 24px; border: none; }
.scroll-top:hover { transform: scale(1.1); }
@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; left: 20px; width: 45px; height: 45px; }
    .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}

/* Common Sub-service Page Styles (Kitchen, Bedroom, Living, Dining) */
.page-header { background: #f9f9f9; padding: 140px 40px 40px; text-align: center; border-bottom: 1px solid #eaeaea; margin-bottom: 40px; }
.page-title { font-size: 2.5rem; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.page-desc { max-width: 800px; margin: 0 auto; color: #666; }
.container { max-width: 1400px; margin: 0 auto 80px; padding: 0 40px; }
.section-row { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 80px; align-items: start; border-bottom: 1px solid #eaeaea; padding-bottom: 60px; }
.section-row:last-child { border-bottom: none; }
.section-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: #111; }
.section-text p { color: #555; margin-bottom: 20px; text-align: justify; }
.btn-purple { display: inline-block; background: var(--dark-brown); color: #fff; padding: 10px 25px; text-decoration: none; border-radius: 4px; font-weight: 500; transition: background 0.3s ease; margin-top: 10px; }
.btn-purple:hover { background: #4a1313; }
.section-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.section-images img { width: 100%; height: 350px; object-fit: cover; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
@media (max-width: 1024px) { .section-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section-images { grid-template-columns: 1fr; }
    .section-images img { height: 250px; }
}

/* Styles from about.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; }
        
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        .nav { position: fixed; top: 0; left: 0; width: 100%; height: 110px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: #3b3b3b; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
        .nav-logo-img { height: 80px; width: auto; mix-blend-mode: screen; filter: contrast(3) grayscale(100%); }
        .nav-links { display: flex; gap: 35px; }
        .nav-link { font-size: 0.8rem; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: color 0.3s ease; font-weight: 600; }
        .nav-link:hover { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }
        .nav-link.active { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }

        @media (max-width: 900px) {
            .nav { flex-direction: column; justify-content: center; height: auto; padding: 15px 0; }
            .nav-logo-img { margin-bottom: 10px; }
            .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
            .nav-link { font-size: 0.7rem; }
        }
            .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
            .nav-link { font-size: 0.7rem; }
        }

        /* Page Content */
        /* Page Content */
        .container { max-width: 1200px; margin: 120px auto 80px; padding: 0 40px; }
        .page-title { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 20px; text-align: center; }
        .page-subtitle { text-align: center; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 60px; font-weight: 300; }
        
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; align-items: center; }
        .about-text h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; margin-bottom: 20px; }
        .about-text p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-weight: 300; }
        .about-image { width: 100%; height: 500px; background: #222; object-fit: cover; border-radius: 8px; overflow: hidden; }
        .about-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
        
        .cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: center; margin-bottom: 80px; }
        .card { background: #1a1a1a; padding: 50px 40px; border-radius: 8px; border: 1px solid #333; }
        .card h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; margin-bottom: 20px; color: #ffffff; }
        .card p { color: rgba(255,255,255,0.7); font-weight: 300; }

        .why-choose { text-align: center; background: #111; padding: 60px 40px; border-radius: 8px; border: 1px solid #222; }
        .why-choose h2 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; margin-bottom: 40px; }
        .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .feature h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 500; }
        .feature p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 300; }

        @media (max-width: 768px) {
            .about-grid, .cards { grid-template-columns: 1fr; }
            .nav { padding: 0 20px; }
            .nav-links { gap: 15px; }
            .nav-link { font-size: 0.65rem; }
            .container { padding: 0 20px; }
        }
    

/* Styles from bedroom.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
        
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        
        @media (max-width: 768px) {
            .nav { padding: 0 20px; }
            .container { padding: 0 20px; }
            .section-images { grid-template-columns: 1fr; }
            .section-images img { height: 250px; }
        }
    

/* Styles from contact.html */

        :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #fafafa; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
        
        /* Navigation */
        
        @media (max-width: 768px) {
            .footer-container { grid-template-columns: 1fr; }
            .contact-strip { flex-direction: column; align-items: center; gap: 30px; text-align: center; }
            .contact-item { flex-direction: column; gap: 10px; }
        }

        /* Floating Buttons */
        .whatsapp-float { position: fixed; bottom: 30px; left: 30px; background: #25D366; color: white; width: 55px; height: 55px; border-radius: 50%; display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; transition: transform 0.3s ease; text-decoration: none; }
        .whatsapp-float:hover { transform: scale(1.1); }
        .whatsapp-icon { width: 30px; height: 30px; fill: white; }

        .scroll-top { position: fixed; bottom: 30px; right: 30px; background: var(--dark-brown); color: white; width: 55px; height: 55px; border-radius: 50%; display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; cursor: pointer; transition: transform 0.3s ease; font-size: 24px; border: none; }
        .scroll-top:hover { transform: scale(1.1); }
        
        @media (max-width: 768px) {
            .whatsapp-float { bottom: 20px; left: 20px; width: 45px; height: 45px; }
            .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
        }
    

/* Styles from dining.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
        
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        
        @media (max-width: 768px) {
            .nav { padding: 0 20px; }
            .container { padding: 0 20px; }
            .section-images { grid-template-columns: 1fr; }
            .section-images img { height: 250px; }
        }
    

/* Styles from index.html */

        /* ========================================
           RESET & BASE
           ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            background: #ffffff;
            font-family: 'Outfit', sans-serif;
            color: #ffffff;
        }

        /* ========================================
           PRELOADER
           ======================================== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            z-index: 99999;
            /* margin collapse fix */ border-top: 0.1px solid transparent;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-logo {
            height: 80px;
            margin-bottom: 30px;
            
            
        }

        .preloader-text {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-top: 15px;
        }

        .preloader-progress {
            font-size: 0.8rem;
            color: #ffffff;
            margin-top: 10px;
            font-weight: 500;
        }

        /* ========================================
           NAVIGATION (SOLID GREY)
           ======================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: #3b3b3b;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .nav-logo-img { 
            height: 40px;
            width: auto;
            
            
         mix-blend-mode: screen; filter: contrast(3) grayscale(100%); }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            font-size: 0.75rem;
            color: #ffffff;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .nav-link:hover {
            opacity: 0.7;
        }

        .progress-bar { position: fixed; top: 110px;
            left: 0;
            height: 3px;
            width: 0%;
            background: #ffffff;
            z-index: 9999;
        }

        /* ========================================
           WALKTHROUGH CONTAINER (CANVAS)
           ======================================== */
        #walkthrough-container {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: #ffffff;
            padding-top: 70px; /* Offset for header */
        }

        /* The pinned canvas element */
        #walkthrough-canvas {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100% - 70px);
            z-index: 1;
              filter: contrast(1.1) saturate(1.1) brightness(1.05);
        }

        /* ========================================
           TEXT OVERLAYS
           ======================================== */
        .gradient-darken {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100% - 70px);
            background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 40%, transparent 70%, rgba(0,0,0,0.4) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .text-overlay {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100% - 70px);
            pointer-events: none; /* Let clicks pass through to buttons if needed */
            /* margin collapse fix */ border-top: 0.1px solid transparent;
            justify-content: flex-end;
            padding: 6% 8%;
            z-index: 10;
        }

        .text-content {
            position: absolute;
            bottom: 8%;
            left: 8%;
            opacity: 0; /* Hidden by default, GSAP handles fading */
            will-change: transform, opacity;
        }

        /* Special positioning for Center overlays (Scene 1 and 6) */
        #text-1, #text-6 {
            left: 50%;
            bottom: 50%;
            transform: translate(-50%, 50%);
            text-align: center;
        }
        
        #text-6 {
            bottom: 40%;
        }

        .eyebrow {
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-bottom: 10px;
        }

        .title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 12px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .subtitle {
            font-size: clamp(0.85rem, 1.2vw, 1rem);
            font-weight: 300;
            max-width: 500px;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
        }

        /* Scroll Hint */
        .scroll-indicator {
            position: absolute;
            bottom: -30%;
            left: 50%;
            transform: translateX(-50%);
            /* margin collapse fix */ border-top: 0.1px solid transparent;
            align-items: center;
            z-index: 10;
        }

        .scroll-text {
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: rgba(255,255,255,0.6);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, #fff, transparent);
            animation: pulse-line 2s infinite;
        }

        @keyframes pulse-line {
            0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
            50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
            50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
            100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
        }

        /* Buttons for CTA */
        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            justify-content: center;
            pointer-events: auto; /* Buttons need to be clickable */
        }

        .btn {
            padding: 16px 40px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border: 1px solid #fff;
            background: transparent;
            color: #ffffff;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .btn {
                padding: 12px 20px;
                width: 100%;
                max-width: 250px;
            }
        }

        .btn:hover { background: #fff; color: #000; }

        /* Loading Spinner */
        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            border-top-color: #ffffff;
            animation: spin 1s ease-in-out infinite;
            margin-top: 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

    

/* Styles from kitchen.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
        
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        
        @media (max-width: 768px) {
            .nav { padding: 0 20px; }
            .container { padding: 0 20px; }
            .section-images { grid-template-columns: 1fr; }
            .section-images img { height: 250px; }
        }
    

/* Styles from living.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
        
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        
        @media (max-width: 768px) {
            .nav { padding: 0 20px; }
            .container { padding: 0 20px; }
            .section-images { grid-template-columns: 1fr; }
            .section-images img { height: 250px; }
        }
    

/* Styles from portfolio.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; }
        
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        .nav { position: fixed; top: 0; left: 0; width: 100%; height: 110px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: #3b3b3b; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
        .nav-logo-img { height: 80px; width: auto; mix-blend-mode: screen; filter: contrast(3) grayscale(100%); }
        .nav-links { display: flex; gap: 35px; }
        .nav-link { font-size: 0.8rem; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: color 0.3s ease; font-weight: 600; }
        .nav-link:hover { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }
        .nav-link.active { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }

        @media (max-width: 900px) {
            .nav { flex-direction: column; justify-content: center; height: auto; padding: 15px 0; }
            .nav-logo-img { margin-bottom: 10px; }
            .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
            .nav-link { font-size: 0.7rem; }
        }
            .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
            .nav-link { font-size: 0.7rem; }
        }

        /* Page Content */
        /* Page Content */
        .container { max-width: 1400px; margin: 120px auto 80px; padding: 0 40px; }
        .page-title { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 20px; text-align: center; }
        .page-subtitle { text-align: center; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 60px; font-weight: 300; }
        
        /* 45 Days Highlight Banner */
        .highlight-banner { background: linear-gradient(135deg, #111, #222); border: 1px solid #333; padding: 40px; text-align: center; border-radius: 8px; margin-bottom: 80px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .highlight-banner h2 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; color: #ffffff; margin-bottom: 10px; }
        .highlight-banner h2 span { color: #d4af37; /* Gold accent */ }
        .highlight-banner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

        /* Filter Controls */
        .filter-controls { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
        .filter-btn { background: transparent; border: 1px solid #ddd; color: #333; padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-family: 'Outfit', sans-serif; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
        .filter-btn:hover, .filter-btn.active { background: #333; color: #fff; border-color: #333; }

        /* Gallery Grid */
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 80px; }
        .gallery-item { position: relative; height: 300px; border-radius: 8px; overflow: hidden; background: #1a1a1a; cursor: pointer; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 1; }
        .gallery-item:hover img { transform: scale(1.05); opacity: 1; }
        .gallery-item-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); transform: translateY(100%); transition: transform 0.3s ease; }
        .gallery-item:hover .gallery-item-overlay { transform: translateY(0); }
        .gallery-item-title { font-family: 'Outfit', sans-serif; font-size: 1.2rem; margin-bottom: 5px; }
        .gallery-item-cat { font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }

        /* Recent Works - Video & Reels */
        .recent-works-header { font-family: 'Outfit', sans-serif; font-size: 2.5rem; margin-bottom: 40px; text-align: center; border-top: 1px solid #333; padding-top: 60px; }
        .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .media-container { background: #111; border-radius: 8px; overflow: hidden; border: 1px solid #222; }
        .video-wrapper { position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0; }
        .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
        .media-title { padding: 20px; font-family: 'Outfit', sans-serif; font-size: 1.3rem; }

        @media (max-width: 768px) {
            .nav { padding: 0 20px; }
            .nav-links { gap: 15px; }
            .nav-link { font-size: 0.65rem; }
            .container { padding: 0 20px; }
            .media-grid { grid-template-columns: 1fr; }
            .highlight-banner h2 { font-size: 1.8rem; }
        }
    

/* Styles from services.html */

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { background: #ffffff; font-family: 'Outfit', sans-serif; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
        
        /* Navigation (Ash Color & Centered Logo on Mobile) */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
                :root {
            --dark-brown: #631919;
            --dark-grey: #3b3b3b;
        }

        /* Navigation */
        .nav { position: fixed; top: 0; left: 0; width: 100%; height: 110px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: #3b3b3b; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
        .nav-logo-img { height: 80px; width: auto; mix-blend-mode: screen; filter: contrast(3) grayscale(100%); }
        .nav-links { display: flex; gap: 35px; }
        .nav-link { font-size: 0.8rem; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: color 0.3s ease; font-weight: 600; }
        .nav-link:hover { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }
        .nav-link.active { color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 4px; }

        @media (max-width: 900px) {
            .nav { flex-direction: column; justify-content: center; height: auto; padding: 15px 0; }
            .nav-logo-img { margin-bottom: 10px; }
            .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
            .nav-link { font-size: 0.7rem; }
        }

        /* Page Content */
        .container { max-width: 1200px; margin: 120px auto 80px; padding: 0 20px; }
        .page-title { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 400; margin-bottom: 40px; text-align: center; text-transform: uppercase; letter-spacing: 2px; }
        
        /* Services Grid Layout */
        .services-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 5px; }
        
        .service-block { position: relative; overflow: hidden; display: block; text-decoration: none; }
        .service-block img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; display: block; transition: transform 0.5s ease; }
        .service-block:hover img { transform: scale(1.05); }
        
        /* Overlay text */
        .service-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: background 0.3s ease; }
        .service-block:hover .service-overlay { background: rgba(0,0,0,0.5); }
        .service-title { color: #fff; font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

        /* Grid Spanning */
        .item-kitchen { grid-column: 1 / -1; }
        .item-bedroom { grid-column: 1 / 2; }
        .item-living { grid-column: 2 / 3; }
        .item-dining { grid-column: 1 / -1; }

        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; gap: 5px; }
            .item-bedroom, .item-living { grid-column: 1 / -1; }
            .service-title { font-size: 2rem; }
            .service-block img { min-height: 250px; }
        }
    
/* ========================================
   SPECIFIC PAGE STYLES
   ======================================== */

/* INDEX.HTML */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; z-index: 99999; /* margin collapse fix */ border-top: 0.1px solid transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { height: 80px; margin-bottom: 30px; mix-blend-mode: screen; filter: contrast(3) grayscale(100%); }
.preloader-text { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-top: 15px; }
.preloader-progress { font-size: 0.8rem; color: #333; margin-top: 10px; font-weight: 500; }
.progress-bar { width: 200px; height: 2px; background: #eee; margin-top: 15px; border-radius: 2px; overflow: hidden; position: relative; }
.progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: #333; transition: width 0.1s ease; }
.canvas-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; }
canvas { display: block; width: 100%; height: 100%; object-fit: cover; }
.gradient-darken { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 40%, transparent 70%, rgba(0,0,0,0.4) 100%); pointer-events: none; }
.content-section { position: relative; z-index: 10; width: 100%; /* margin collapse fix */ border-top: 0.1px solid transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; color: #ffffff; }
.hero { text-align: center; margin-top: 15vh; }
.hero-tag { font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; font-weight: 300; opacity: 0.8; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300; max-width: 600px; margin: 0 auto 40px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 15px 40px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: all 0.3s ease; font-weight: 500; }
.btn-primary { background: #ffffff; color: #0a0a0a; }
.btn-primary:hover { background: #e0e0e0; transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.5); color: #ffffff; backdrop-filter: blur(5px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; transform: translateY(-2px); }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); /* margin collapse fix */ border-top: 0.1px solid transparent; align-items: center; gap: 10px; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }
.mouse { width: 24px; height: 36px; border: 1px solid #ffffff; border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 6px; background: #ffffff; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scroll 2s infinite; }
@keyframes scroll { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }
.spacer-section { height: 200vh; }

/* SERVICES GRID (services.html) */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 5px; }
.service-block { position: relative; overflow: hidden; display: block; text-decoration: none; }
.service-block img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; display: block; transition: transform 0.5s ease; }
.service-block:hover img { transform: scale(1.05); }
.service-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: flex; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: background 0.3s ease; }
.service-block:hover .service-overlay { background: rgba(0,0,0,0.5); }
.service-title { color: #fff; font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.item-kitchen { grid-column: 1 / -1; }
.item-bedroom { grid-column: 1 / 2; }
.item-living { grid-column: 2 / 3; }
.item-dining { grid-column: 1 / -1; }
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; gap: 5px; }
    .item-bedroom, .item-living { grid-column: 1 / -1; }
    .service-title { font-size: 2rem; }
    .service-block img { min-height: 250px; }
}

/* CONTACT.HTML */
.hero-banner { width: 100%; height: 400px; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&q=80') center/cover; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; margin-top: 110px; }
.breadcrumb { font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 10px; font-weight: 300; }
.breadcrumb span { opacity: 0.7; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 600; letter-spacing: 1px; }
.contact-container { max-width: 1200px; margin: 80px auto; padding: 0 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-content .tag { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; color: var(--dark-brown); text-transform: uppercase; margin-bottom: 15px; }
.contact-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 25px; color: #222; }
.contact-content h2 span { color: var(--dark-brown); }
.contact-content p { color: #555; font-size: 1.05rem; line-height: 1.8; }
.form-box { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid #eee; }
.form-header { text-align: center; margin-bottom: 30px; }
.form-header h3 { font-size: 1.3rem; font-weight: 500; color: #333; }
.form-header h3 span { color: var(--dark-brown); font-weight: 600; }
.selection-group { margin-bottom: 25px; text-align: center; }
.selection-label { display: block; margin-bottom: 12px; color: #555; font-weight: 500; font-size: 0.9rem; }
.pill-group { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pill { padding: 10px 25px; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; background: #fff; color: #333; user-select: none; }
.pill.active { background: #222; color: #fff; border-color: #222; }
.form-group { margin-bottom: 15px; }
.form-control { width: 100%; padding: 14px 20px; border: 1px solid #ddd; border-radius: 6px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; background: #f9f9f9; transition: border-color 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--dark-brown); background: #fff; box-shadow: 0 0 0 3px rgba(99,25,25,0.1); }
.submit-btn { width: 100%; padding: 16px; background: var(--dark-brown); color: #fff; border: none; border-radius: 6px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background 0.3s ease; margin-top: 10px; }
.submit-btn:hover { background: #4a1313; }
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.8rem; }
    .form-box { padding: 30px 20px; }
}

/* PORTFOLIO.HTML */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px; padding: 0 20px; margin-bottom: 80px; }
.portfolio-item { position: relative; overflow: hidden; height: 350px; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; bottom: -50px; left: 0; width: 100%; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); /* margin collapse fix */ border-top: 0.1px solid transparent; justify-content: flex-end; transition: bottom 0.3s ease; }
.portfolio-item:hover .portfolio-overlay { bottom: 0; }
.portfolio-title { color: #fff; font-size: 1.2rem; font-weight: 500; margin-bottom: 5px; }
.portfolio-category { color: #ccc; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* ABOUT.HTML */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 80px; }
.about-image img { width: 100%; height: auto; border-radius: 4px; }
.about-text h2 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { color: #666; margin-bottom: 20px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #f9f9f9; padding: 30px; text-align: center; border-radius: 8px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: #666; font-size: 0.9rem; }
@media (max-width: 768px) {
    .about-grid, .cards { grid-template-columns: 1fr; }
}

/* Timeline Section (Services Page) */
.timeline-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 20px;
    background: #ffffff;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.timeline-header .days {
    font-size: 5rem;
    font-weight: 700;
    color: var(--dark-brown);
    line-height: 1;
}

.timeline-header .title {
    font-size: 2rem;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
}

.timeline-container {
    display: flex;
    gap: 50px;
    position: relative;
}

/* Left side: Dots */
.timeline-nav {
    display: flex; flex-direction: column; gap: 40px;
    position: relative;
    padding-left: 20px;
}

.timeline-nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px;
    width: 2px;
    background: #eaeaea;
    z-index: 1;
}

.timeline-step {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #666;
    display: flex;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-step.active .step-num {
    background: var(--dark-brown);
    color: #fff;
    transform: scale(1.1);
}

.timeline-step:hover:not(.active) .step-num {
    background: #e0e0e0;
}

/* Right side: Content */
.timeline-content-wrapper {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.timeline-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.timeline-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.timeline-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.timeline-text {
    padding: 30px;
}

.timeline-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.timeline-text p {
    color: #666;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .timeline-container { flex-direction: column; gap: 30px; }
    .timeline-nav { flex-direction: row; justify-content: space-between; gap: 10px; padding-left: 0; }
    .timeline-nav::before { top: 25px; bottom: auto; left: 0; right: 0; height: 2px; width: 100%; }
    .timeline-header { flex-direction: column; text-align: center; gap: 10px; }
    .timeline-content-wrapper { min-height: auto; }
    .timeline-content { position: relative; }
    .timeline-content:not(.active) { display: none; }
}



/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}
@media(max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    border-radius: 4px;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: white; font-size: 40px; cursor: pointer;
    line-height: 1;
}
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: white; font-size: 60px; cursor: pointer;
    padding: 20px; user-select: none;
}
.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover { color: #d0d0d0; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.hero-banner.small-banner { height: 220px;
    margin-top: 110px; /* offset for fixed nav */
    margin-bottom: 30px;
}
.hero-banner.small-banner .breadcrumb {
    margin-bottom: 0;
    font-size: 1.1rem;
}





#scrollProgressBar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    z-index: 1001;
    display: none !important;
}





/* =========================================
   MOBILE NAVIGATION MENU (HAMBURGER)
   ========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}
/* Hamburger animation */
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
    .hamburger { display: flex; position: absolute; right: 20px; }
    
    .nav {
        flex-direction: row !important;
        justify-content: center !important;
        height: 80px !important;
        padding: 0 20px !important;
        position: fixed !important;
    }
    .nav-logo-img { margin-bottom: 0 !important; height: 65px !important; }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(30, 30, 30, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 40px !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s ease !important;
        z-index: 1500 !important;
    }
    
    .nav-links.active {
        transform: translateX(0) !important;
    }
    
    .nav-link {
        font-size: 1.5rem !important;
    }
}

/* =========================================
   SERVICES MOBILE GRID OVERRIDE
   ========================================= */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .item-kitchen { grid-column: 1 / -1 !important; }
    .item-bedroom { grid-column: 1 / 2 !important; }
    .item-living { grid-column: 2 / 3 !important; }
    .item-dining { grid-column: 1 / -1 !important; }
    
    .service-title { font-size: 1.2rem !important; }
    .service-block img { min-height: 200px !important; }
}

/* =========================================
   REELS SECTION (PORTFOLIO PAGE)
   ========================================= */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}
.reel-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}
.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.reel-item:hover video {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reels-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
}


/* =========================================
   ABOUT PAGE OVERHAUL
   ========================================= */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-collage {
    position: relative;
    height: 600px;
}
.collage-img-1 {
    width: 70%;
    height: 80%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.collage-img-2 {
    width: 65%;
    height: 65%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 12px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}
.vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
@media (max-width: 1024px) {
    .about-hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-collage { height: 450px; }
    .process-grid { grid-template-columns: 1fr; gap: 60px; }
    .process-shift { transform: translateY(0) !important; }
    .vision-grid { grid-template-columns: 1fr; }
}

/* FIX MOBILE GAP FOR HERO BANNER */
@media (max-width: 900px) {
    body {
        /* Prevents margin collapse */
        /* margin collapse fix */ border-top: 0.1px solid transparent;
    }
    .hero-banner {
        margin-top: 80px !important;
    }
    .hero-banner.small-banner {
        margin-top: 80px !important;
    }
}


/* FIX MOBILE PADDING */
@media (max-width: 900px) {
    .container {
        padding: 50px 5% !important;
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }
}


/* HERO BANNER RESPONSIVE FIXES */
@media (max-width: 768px) {
    .hero-banner {
          margin-top: 65px !important;
        height: 300px !important;
    }
      .hero-banner.small-banner {
          margin-top: 65px !important;
      }
    .hero-title {
        font-size: 2.5rem !important;
    }
    .breadcrumb {
        font-size: 0.8rem !important;
    }
}







@media (max-width: 768px) {
    .cta-buttons { flex-direction: column !important; align-items: center !important; gap: 15px !important; }
    .btn { padding: 12px 20px !important; width: 100% !important; max-width: 250px !important; white-space: nowrap !important; }
}


.floating-socials { position: fixed; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 2px; z-index: 1000; }
.float-btn { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: width 0.3s ease; border-radius: 10px 0 0 10px; }
.float-btn svg { width: 26px; height: 26px; fill: white; }
.float-wa, .float-ig, .float-fb { background: var(--dark-brown); border: 2px solid var(--dark-brown); border-right: none;}
.float-btn:hover { width: 60px; }
@media (max-width: 768px) {
    .float-btn { width: 45px; height: 45px; }
    .float-btn svg { width: 22px; height: 22px; }
}
