/* ── RESET & ROOT ── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --red-primary: #C0000C;
            --red-dark: #8B0000;
            --red-light: #E8001A;
            --red-accent: #FF1C2E;
            --red-glow: rgba(192, 0, 12, 0.15);
            --charcoal: #1A1A1A;
            --warm-black: #111111;
            --off-white: #FAF8F7;
            --cream: #F5F1EE;
            --warm-grey: #6B6B6B;
            --border: #E0D8D5;
            --wood-warm: #C8956A;
            --fire: #C8102E;
            --fire-deep: #8B0000;
            --fire-bright: #FF2442;
            --ember: #FF6B35;
            --ash: #1A1A1A;
            --smoke: #F7F5F3;
            --white: #FFFFFF;
            --gold: #C9A84C;
            --text-muted: #6B6B6B;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background: var(--white);
            color: var(--ash);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }
        ::-webkit-scrollbar-track {
            background: var(--smoke);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--red-primary);
            border-radius: 2px;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─────────────────────────────────────────────── */
        /* ── HEADER ── */
        /* ─────────────────────────────────────────────── */

        .topbar {
            background: var(--charcoal);
            color: #ccc;
            font-size: 12px;
            padding: 7px 10px;
            letter-spacing: 0.5px;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 16px;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px 0;
            flex-shrink: 0;
        }

        .topbar-right {
            flex-shrink: 0;
            margin-left: auto;
        }

        .topbar a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .topbar a:hover {
            color: var(--red-accent);
        }

        .topbar .pipe {
            margin: 0 8px;
            opacity: 0.3;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .topbar {
                font-size: 10px;
                padding: 5px 0;
            }
            .topbar-inner {
                gap: 8px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .topbar-left,
            .topbar-right {
                flex-wrap: wrap;
                justify-content: center;
                flex-shrink: 1;
            }
            .topbar-right {
                margin-left: 0;
            }
            .topbar .pipe {
                margin: 0 4px;
            }
        }

        @media (max-width: 480px) {
            .topbar {
                font-size: 9px;
                padding: 4px 0;
            }
            .topbar .pipe {
                margin: 0 3px;
            }
            .topbar-left i,
            .topbar-right a {
                font-size: 9px;
            }
        }

        /* ── NAVBAR ── */
        .navbar-main {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s;
        }
        .navbar-main.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 72px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-flame {
            width: 42px;
            height: 42px;
            background: var(--red-primary);
            clip-path: polygon(50% 0%, 80% 30%, 100% 60%, 80% 100%, 20% 100%, 0% 60%, 20% 30%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }
        .logo-flame::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            background: #fff;
            clip-path: polygon(50% 0%, 80% 40%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 20% 40%);
            opacity: 0.25;
        }
        .logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            color: var(--red-primary);
            letter-spacing: 2px;
            line-height: 1;
        }
        .logo-sub {
            font-size: 9px;
            color: var(--warm-grey);
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            height: 72px;
        }
        .nav-links>li {
            height: 100%;
            position: relative;
        }
        .nav-links>li>a {
            display: flex;
            align-items: center;
            gap: 5px;
            height: 100%;
            padding: 0 20px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 0.3px;
            transition: color 0.2s;
            border-bottom: 3px solid transparent;
        }
        .nav-links>li>a:hover,
        .nav-links>li>a.active {
            color: var(--red-primary);
            border-bottom-color: var(--red-primary);
        }
        .nav-links>li>a .fa-chevron-down {
            font-size: 9px;
            transition: transform 0.2s;
        }
        .nav-links>li:hover>a .fa-chevron-down {
            transform: rotate(180deg);
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-top: 3px solid var(--red-primary);
            min-width: 220px;
            padding: 16px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s;
            z-index: 999;
        }
        .nav-links>li:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 24px;
            font-size: 13px;
            color: var(--charcoal);
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }
        .nav-dropdown a:hover {
            background: var(--red-glow);
            color: var(--red-primary);
        }
        .nav-dropdown a .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--red-primary);
            flex-shrink: 0;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            font-size: 14px;
        }
        .nav-icon-btn:hover {
            border-color: var(--red-primary);
            color: var(--red-primary);
            background: var(--red-glow);
        }
        .btn-inquire {
            background: var(--red-primary);
            color: #fff;
            border: none;
            padding: 9px 22px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 2px;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-inquire:hover {
            background: var(--red-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--ash);
            transition: var(--transition);
        }

        #mobileNav {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 2rem 1.5rem;
            flex-direction: column;
            gap: 1.2rem;
            overflow-y: auto;
            border-top: 1px solid var(--border);
        }
        #mobileNav.open {
            display: flex;
        }
        #mobileNav a {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--ash);
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        #mobileNav a:hover {
            color: var(--red-primary);
        }
        #mobileNav a .fa-chevron-right {
            font-size: 12px;
            color: var(--warm-grey);
        }

        @media (max-width: 991px) {
            .navbar-inner {
                padding: 0 20px;
            }
            .nav-links {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .topbar .d-flex {
                flex-wrap: wrap;
                gap: 4px 0;
            }
            .topbar .pipe {
                margin: 0 6px;
            }
        }
        @media (max-width: 576px) {
            .navbar-inner {
                padding: 0 12px;
                height: 60px;
            }
            .logo-text {
                font-size: 20px;
            }
            .logo-flame {
                width: 34px;
                height: 34px;
            }
            .logo-flame::after {
                width: 14px;
                height: 14px;
            }
            .logo-sub {
                font-size: 7px;
                letter-spacing: 2px;
            }
            .btn-inquire {
                padding: 6px 14px;
                font-size: 11px;
            }
            .nav-icon-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .topbar {
                font-size: 10px;
                padding: 4px 0;
            }
            .topbar .pipe {
                margin: 0 4px;
            }
        }

        .logo-container {
            display: flex;
            align-items: center;
        }
        .logo-img {
            max-height: 70px;
            width: auto;
            display: block;
        }

        /* ─────────────────────────────────────────────── */
        /* ── END HEADER ── */
        /* ─────────────────────────────────────────────── */

        /* ── HERO ── */
        .hero {
            margin-top: 0;
            position: relative;
            min-height: 88vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .hero-slides {
            position: absolute;
            inset: 0;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
        }
        .hero-slide.active {
            opacity: 1;
        }
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
        }
        .slide-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(10, 0, 0, 0.75) 0%, rgba(10, 0, 0, 0.4) 50%, transparent 100%);
        }
        .slide-bg-1 {
            background: linear-gradient(135deg, #1a0a00 0%, #3d1200 40%, #6b2200 70%, #c8102e 100%);
        }
        .slide-bg-2 {
            background: linear-gradient(135deg, #0d0d0d 0%, #2d0a0a 40%, #8b0000 70%, #c8102e 100%);
        }
        .slide-bg-3 {
            background: linear-gradient(135deg, #1a1200 0%, #3d2d00 40%, #6b5500 70%, #c9a84c 100%);
        }
        .slide-wood-texture {
            position: absolute;
            inset: 0;
            opacity: 0.12;
            background-image: repeating-linear-gradient(85deg,
                    transparent 0px,
                    transparent 20px,
                    rgba(255, 255, 255, 0.03) 20px,
                    rgba(255, 255, 255, 0.03) 21px),
                repeating-linear-gradient(175deg,
                    transparent 0px,
                    transparent 60px,
                    rgba(255, 255, 255, 0.02) 60px,
                    rgba(255, 255, 255, 0.02) 62px);
        }
        .slide-visual {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 55%;
            overflow: hidden;
        }
        .slide-visual svg {
            width: 100%;
            height: 100%;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            width: 100%;
        }
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 16, 46, 0.2);
            border: 1px solid rgba(200, 16, 46, 0.4);
            color: #ffaabb;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }
        .hero-label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--fire-bright);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(38px, 5.5vw, 80px);
            font-weight: 900;
            color: #fff;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            max-width: 620px;
        }
        .hero-title .accent {
            color: var(--fire-bright);
        }
        .hero-title .gold {
            color: var(--gold);
        }
        .hero-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 36px;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--red-primary);
            color: #fff;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: 2px solid var(--red-primary);
            font-family: var(--font-body);
        }
        .btn-primary:hover {
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(200, 16, 46, 0.5);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-family: var(--font-body);
        }
        .btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: #fff;
        }
        .hero-stats {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0;
            z-index: 2;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            overflow: hidden;
        }
        .stat {
            padding: 20px 36px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        .stat:last-child {
            border-right: none;
        }
        .stat-num {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }
        .stat-num span {
            color: var(--fire-bright);
        }
        .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 4px;
        }
        .hero-nav {
            position: absolute;
            bottom: 180px;
            right: 30px;
            z-index: 3;
            display: flex;
            gap: 8px;
        }
        .hero-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        .hero-dot.active {
            background: var(--fire-bright);
            width: 28px;
            border-radius: 4px;
        }

        /* ── MARQUEE ── */
        .marquee-bar {
            background: var(--red-primary);
            color: #fff;
            padding: 12px 0;
            overflow: hidden;
        }
        .marquee-track {
            display: flex;
            animation: marqueeScroll 22s linear infinite;
            white-space: nowrap;
        }
        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 40px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            flex-shrink: 0;
        }
        .marquee-item::before {
            content: '◆';
            font-size: 8px;
            opacity: 0.7;
        }
        @keyframes marqueeScroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        /* ════════════════════════════════════════════════════════════
           PARTNER LOGO SLIDER — CONTINUOUS (FULL WIDTH, LOGOS ONLY)
           ════════════════════════════════════════════════════════════ */
        #partnerSlider {
            background: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            border-top: 1px solid var(--border);
            overflow: hidden;
            width: 100%;
        }
        .partner-header {
            display: none;
        }

        .partner-logos-wrap {
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 8px 0;
        }
        .partner-logos-wrap::before,
        .partner-logos-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        .partner-logos-wrap::before {
            left: 0;
            background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
        }
        .partner-logos-wrap::after {
            right: 0;
            background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
        }

        .partner-track {
            display: flex;
            gap: 70px;
            animation: partnerScroll 30s linear infinite;
            width: max-content;
            align-items: center;
        }

        .partner-track:hover {
            animation-play-state: paused;
        }

        .partner-logo-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background: transparent;
            border: none;
            min-width: 100px;
            height: 60px;
            transition: all 0.3s ease;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            color: var(--charcoal);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            gap: 10px;
            opacity: 0.7;
        }
        .partner-logo-item i {
            font-size: 36px;
            color: var(--red-primary);
            opacity: 0.6;
        }
        .partner-logo-item:hover {
            opacity: 1;
            transform: scale(1.05);
            color: var(--red-primary);
        }

        @keyframes partnerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 767px) {
            #partnerSlider {
                padding: 12px 0;
            }
            .partner-logo-item {
                min-width: 70px;
                height: 40px;
                font-size: 11px;
                gap: 6px;
            }
            .partner-logo-item i {
                font-size: 24px;
            }
            .partner-track {
                gap: 40px;
            }
            .partner-logos-wrap::before,
            .partner-logos-wrap::after {
                width: 40px;
            }
        }

        @media (max-width: 480px) {
            .partner-logo-item {
                min-width: 60px;
                height: 32px;
                font-size: 9px;
                gap: 4px;
            }
            .partner-logo-item i {
                font-size: 18px;
            }
            .partner-track {
                gap: 30px;
            }
        }

        /* =========================================================
           BRAND INTRO — EXACT DESIGN FROM REFERENCE PAGE
        ========================================================= */
        #brandIntro {
            background: var(--cream);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        #brandIntro .section-desc {
            max-width: 100%;
        }
        #brandIntro .section-eyebrow {
            color: var(--red-primary);
        }
        #brandIntro .section-title .fire {
            color: var(--red-primary);
        }

        .intro-stat {
            border-left: 2px solid var(--red-primary);
            padding: 0.4rem 0 0.4rem 1.2rem;
        }
        .intro-stat .num {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--red-primary);
            line-height: 1;
        }
        .intro-stat .lbl {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--warm-grey);
            margin-top: 2px;
        }

        .brand-intro-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            overflow: hidden;
        }

        @media (max-width: 991px) {
            #brandIntro {
                padding: 60px 0;
            }
            .intro-stat .num {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 767px) {
            #brandIntro {
                padding: 40px 0;
            }
            .brand-intro-img {
                height: 160px;
            }
        }

        /* =========================================================
           COLLECTIONS — "Crafted for Every Need" SECTION
        ========================================================= */
        products.php {
            background: var(--cream);
            padding: 4rem 0;
        }
        .sec-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--red-primary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
        }
        .sec-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--red-primary);
        }
        .sec-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 600;
            line-height: 1.1;
            color: var(--ash);
        }
        .sec-title em {
            font-style: italic;
            color: var(--gold);
        }
        .sec-desc {
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-muted);
            max-width: 560px;
        }

        .collection-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 3/4;
            border-radius: 0;
        }
        .collection-card .col-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.7s ease;
        }
        .collection-card:hover .col-bg {
            transform: scale(1.08);
        }
        .collection-card .col-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(44, 40, 36, 0.85) 0%, rgba(44, 40, 36, 0.2) 55%, transparent 100%);
            transition: background var(--transition);
        }
        .collection-card:hover .col-overlay {
            background: linear-gradient(to top, rgba(192, 0, 12, 0.7) 0%, rgba(44, 40, 36, 0.3) 60%, transparent 100%);
        }
        .collection-card .col-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.8rem;
        }
        .col-tag {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--red-accent);
            margin-bottom: 0.3rem;
        }
        .col-name {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 0.5rem;
        }
        .col-desc {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition);
        }
        .collection-card:hover .col-desc {
            max-height: 60px;
        }
        .col-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--white);
            text-decoration: none;
            margin-top: 0.8rem;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity var(--transition), transform var(--transition);
        }
        .collection-card:hover .col-link {
            opacity: 1;
            transform: translateY(0);
        }

        .swatch-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }
        .swatch {
            width: 40px;
            height: 40px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: border-color var(--transition), transform var(--transition);
            position: relative;
        }
        .swatch:hover,
        .swatch.active {
            border-color: var(--red-primary);
            transform: scale(1.15);
        }
        .swatch-label {
            position: absolute;
            bottom: -1.4rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.5rem;
            white-space: nowrap;
            color: var(--text-muted);
        }
        .sw-1 {
            background: linear-gradient(135deg, #8B6343 0%, #C4956A 50%, #8B6343 100%);
        }
        .sw-2 {
            background: linear-gradient(135deg, #2C2C2C 0%, #5A5A5A 50%, #2C2C2C 100%);
        }
        .sw-3 {
            background: linear-gradient(135deg, #C8C8C8 0%, #F0F0F0 50%, #B8B8B8 100%);
        }
        .sw-4 {
            background: linear-gradient(135deg, #4A3728 0%, #6B5040 50%, #4A3728 100%);
        }
        .sw-5 {
            background: linear-gradient(135deg, #1A2A1A 0%, #2E4A2E 50%, #1A2A1A 100%);
        }
        .sw-6 {
            background: linear-gradient(135deg, #C8962A 0%, #E8B84A 50%, #C8962A 100%);
        }

        /* ── SECTIONS COMMON ── */
        section {
            padding: 90px 0;
            overflow-x: hidden;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--red-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--red-primary);
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 700;
            color: var(--ash);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .section-title .fire {
            color: var(--red-primary);
        }
        .section-desc {
            font-size: 15.5px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 560px;
        }

        /* ════════════════════════════════════════════════════════════
           INSPIRATION ROOMS — MERGED WITH CATEGORY ICONS
           ════════════════════════════════════════════════════════════ */
        #inspiration {
            background: var(--ash);
            padding: 40px 0;
            overflow: hidden;
        }
        .inspiration-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .inspiration-header .section-title {
            color: #fff;
        }
        .inspiration-header .section-desc {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 auto;
            text-align: center;
        }

        .inspiration-categories {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 16px;
            margin-bottom: 2.5rem;
        }
        .insp-cat-card {
            background: rgba(255, 255, 255, 0.06);
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        .insp-cat-card:hover {
            transform: translateY(-4px);
            border-color: var(--red-primary);
            background: rgba(192, 0, 12, 0.15);
        }
        .insp-cat-card.active {
            background: var(--red-primary);
            border-color: var(--red-primary);
            box-shadow: 0 8px 24px rgba(192, 0, 12, 0.3);
        }
        .insp-cat-card.active .insp-cat-label {
            color: #fff;
        }
        .insp-cat-icon {
            font-size: 28px;
            line-height: 1;
            display: block;
        }
        .insp-cat-card.active .insp-cat-icon {
            filter: brightness(0) invert(1);
        }
        .insp-cat-label {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.02em;
            transition: color 0.3s;
        }

        .room-panel {
            display: none;
        }
        .room-panel.active {
            display: block;
        }

        .room-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: var(--red-primary);
            color: white;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 0.35rem 0.9rem;
            z-index: 15;
        }
        .room-info {
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(4px);
            height: 100%;
            border-left: 3px solid var(--red-primary);
        }
        .room-info h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.6rem;
        }
        .room-info p {
            font-size: 0.87rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }
        .finish-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.8rem;
        }
        .finish-tag {
            font-size: 0.66rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: 1px solid rgba(200, 16, 46, 0.5);
            color: var(--red-accent);
            padding: 0.3rem 0.8rem;
        }

        .inspiration-slider {
            position: relative;
            overflow: hidden;
            height: 500px;
            background: rgba(0, 0, 0, 0.3);
        }
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            visibility: hidden;
            overflow: hidden;
        }
        .slider-slide.active {
            opacity: 1;
            visibility: visible;
        }
        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slider-slide.active img {
            animation: smoothZoom 8s ease-in-out infinite alternate;
        }
        @keyframes smoothZoom {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.12);
            }
        }
        .slider-prev,
        .slider-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.6);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slider-prev {
            left: 15px;
        }
        .slider-next {
            right: 15px;
        }
        .slider-prev:hover,
        .slider-next:hover {
            background: var(--red-primary);
            transform: translateY(-50%) scale(1.05);
        }
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .slider-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dots .dot.active {
            background: var(--red-primary);
            width: 24px;
            border-radius: 5px;
        }

        .btn-fire {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--white);
            background: var(--red-primary);
            padding: 0.85rem 1.8rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--red-primary);
        }
        .btn-fire:hover {
            background: var(--red-dark);
            border-color: var(--red-dark);
            color: var(--white);
        }

        .btn-outline-fire {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--red-primary);
            background: transparent;
            padding: 0.85rem 1.8rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--red-primary);
        }
        .btn-outline-fire:hover {
            background: var(--red-primary);
            color: var(--white);
        }

        @media (max-width: 1100px) {
            .inspiration-categories {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 767px) {
            .inspiration-categories {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
            .insp-cat-card {
                padding: 14px 6px;
            }
            .insp-cat-icon {
                font-size: 22px;
            }
            .insp-cat-label {
                font-size: 10px;
            }
            .inspiration-slider {
                height: 320px;
            }
            .room-info {
                padding: 1.5rem;
            }
            .room-info h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .inspiration-categories {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ───────────────────────────────────────────────────────────
           WHY AGNI — PILLAR CARDS (imported from reference)
           ─────────────────────────────────────────────────────────── */
        #whyAgni {
            background: var(--cream);
            padding: 4rem 0;
        }
        #whyAgni .sec-title em {
            color: var(--red-primary);
            font-style: italic;
        }
        #whyAgni .sec-desc {
            max-width: 560px;
            margin: 1rem auto 0;
            text-align: center;
        }

        .pillar-card {
            border: 1px solid var(--border);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: border-color var(--transition), transform var(--transition);
            background: var(--white);
            height: 100%;
        }
        .pillar-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red-primary);
            transition: width 0.5s ease;
        }
        .pillar-card:hover {
            border-color: rgba(192, 0, 12, 0.3);
            transform: translateY(-4px);
        }
        .pillar-card:hover::before {
            width: 100%;
        }
        .pillar-num {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: rgba(192, 0, 12, 0.85);
            line-height: 1;
            margin-bottom: 1rem;
        }
        .pillar-icon {
            width: 44px;
            height: 44px;
            background: rgba(192, 0, 12, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--red-primary);
            margin-bottom: 1rem;
        }
        .pillar-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ash);
            margin-bottom: 0.7rem;
        }
        .pillar-text {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ── STORY ── */
        .story {
            background: var(--ash);
            color: #fff;
            overflow: hidden;
        }
        .story-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }
        .story-visual {
            position: relative;
            overflow: hidden;
        }
        .story-visual-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--ember) 100%);
        }
        .story-visual-bg svg {
            width: 100%;
            height: 100%;
        }
        .story-content {
            padding: 80px 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .story-content .section-eyebrow {
            color: rgba(255, 255, 255, 0.5);
        }
        .story-content .section-eyebrow::before {
            background: rgba(255, 255, 255, 0.3);
        }
        .story-content .section-title {
            color: #fff;
            max-width: none;
        }
        .story-content .section-desc {
            color: rgba(255, 255, 255, 0.65);
            max-width: none;
            margin-bottom: 40px;
        }
        .story-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }
        .story-feat {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .feat-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: rgba(200, 16, 46, 0.3);
            border: 1px solid rgba(200, 16, 46, 0.5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .feat-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 3px;
        }
        .feat-text p {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        /* ── TRUSTED BY INDIA'S TOP PROJECTS ── */
        #trustedProjects {
            background: var(--cream);
            padding: 80px 0;
        }
        .arch-card {
            position: relative;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
        }
        .arch-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-color: var(--red-primary);
        }
        .arch-img {
            height: 210px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        .arch-card:hover .arch-img {
            transform: scale(1.05);
        }
        .arch-info {
            padding: 1.5rem;
            background: var(--white);
            border-top: 2px solid var(--red-primary);
        }
        .arch-name {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--ash);
        }
        .arch-role {
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red-primary);
            margin-top: 2px;
        }
        .arch-quote {
            font-size: 0.82rem;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.6rem;
            line-height: 1.6;
        }

        /* ── BLOG ── */
        .blog {
            background: var(--smoke);
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }
        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.35s;
            cursor: pointer;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
        }
        .blog-img {
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .blog-img-inner {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-img-inner {
            transform: scale(1.06);
        }
        .blog-info {
            padding: 22px 24px 26px;
        }
        .blog-tag {
            display: inline-block;
            background: rgba(200, 16, 46, 0.1);
            color: var(--red-primary);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 6px;
            margin-bottom: 12px;
        }
        .blog-info h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            color: var(--ash);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .blog-info p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
        }
        .blog-read {
            font-weight: 600;
            color: var(--red-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ── TESTIMONIALS ── */
        .testimonials {
            background: var(--white);
            overflow: hidden;
        }
        .testi-inner {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 100%;
        }
        .testi-left {
            flex: 0 0 380px;
        }
        .testi-right {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-width: 0;
        }
        .testi-slides {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }
        .testi-slide {
            min-width: 100%;
            width: 100%;
            padding: 40px;
            background: var(--smoke);
            border-radius: 20px;
            border-left: 4px solid var(--red-primary);
            box-sizing: border-box;
        }
        .stars {
            color: var(--gold);
            font-size: 18px;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }
        .testi-quote {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--ash);
            line-height: 1.5;
            margin-bottom: 22px;
            font-style: italic;
            word-wrap: break-word;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .author-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--red-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 17px;
            flex-shrink: 0;
        }
        .author-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--ash);
        }
        .author-role {
            font-size: 12px;
            color: var(--text-muted);
        }
        .testi-controls {
            display: flex;
            gap: 10px;
            margin-top: 24px;
        }
        .testi-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: none;
            border: 2px solid #e0e0e0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
            font-size: 16px;
            font-family: var(--font-body);
        }
        .testi-btn:hover {
            border-color: var(--red-primary);
            background: var(--red-primary);
            color: #fff;
        }

        /* ── CTA BANNER ── */
        .cta-banner {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--ember) 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            right: -10%;
            bottom: -50%;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        }
        .cta-banner h2 {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            position: relative;
            padding: 0 20px;
            word-wrap: break-word;
        }
        .cta-banner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 36px;
            position: relative;
            padding: 0 20px;
            word-wrap: break-word;
        }
        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            padding: 0 20px;
        }
        .btn-white {
            background: #fff;
            color: var(--red-primary);
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-white:hover {
            background: var(--ash);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-outline-white:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: #fff;
        }

        /* ── INQUIRY FORM ── */
        .inquiry-section {
            background: var(--smoke);
            padding: 80px 0;
        }
        .inquiry-form-wrap {
            background: #fff;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
        }
        .inquiry-form-wrap h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--ash);
            margin-bottom: 1.8rem;
        }
        .form-control {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.84rem;
            font-family: var(--font-body);
            outline: none;
            transition: border-color 0.2s;
            background: #fff;
        }
        .form-control:focus {
            border-color: var(--red-primary);
            box-shadow: 0 0 0 3px var(--red-glow);
        }
        .form-control select {
            appearance: none;
        }
        .form-btn {
            background: var(--red-primary);
            color: #fff;
            border: none;
            padding: 0.85rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-body);
        }
        .form-btn:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--ash);
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-top {
            padding: 70px 0 50px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
        }
        .footer-brand .logo {
            margin-bottom: 18px;
        }
        .footer-brand p {
            font-size: 13.5px;
            line-height: 1.7;
            margin-bottom: 22px;
        }
        .social-links {
            display: flex;
            gap: 10px;
        }
        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
        }
        .social-btn:hover {
            background: var(--red-primary);
            border-color: var(--red-primary);
            color: #fff;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.05em;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--fire-bright);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12.5px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: var(--fire-bright);
        }

        /* ── FLOATING WHATSAPP ── */
        .float-wa {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #25D366;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: #fff;
            animation: floatBounce 3s ease-in-out infinite;
        }
        .float-wa:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
            color: #fff;
        }
        @keyframes floatBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        /* ── BACK TO TOP ── */
        #backTop {
            position: fixed;
            bottom: 90px;
            right: 28px;
            z-index: 999;
            width: 44px;
            height: 44px;
            background: rgba(200, 16, 46, 0.85);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border: none;
        }
        #backTop.visible {
            opacity: 1;
            pointer-events: all;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 991px) {
            .hero-stats {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin-top: 40px;
                flex-wrap: wrap;
                width: 100%;
                border-radius: 12px;
            }
            .stat {
                padding: 16px 24px;
                flex: 1;
                min-width: 100px;
            }
            .story-inner {
                grid-template-columns: 1fr;
            }
            .story-visual {
                min-height: 300px;
            }
            .story-content {
                padding: 48px 30px;
            }
            .blog-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testi-inner {
                flex-direction: column;
                gap: 40px;
            }
            .testi-left {
                flex: none;
                width: 100%;
            }
            .testi-right {
                width: 100%;
                overflow: hidden;
            }
            .testi-slide {
                padding: 30px;
                min-width: 100%;
                width: 100%;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-nav {
                bottom: 280px;
                right: 20px;
            }
            .slide-visual {
                width: 40%;
                opacity: 0.6;
            }
            .hero-title {
                font-size: clamp(32px, 5vw, 52px);
            }
            .inspiration-slider {
                height: 400px;
            }
            #trustedProjects {
                padding: 60px 0;
            }
            .cta-banner {
                padding: 60px 0;
            }
            .cta-banner h2 {
                font-size: clamp(24px, 6vw, 40px);
                padding: 0 20px;
            }
            .cta-banner p {
                font-size: 15px;
                padding: 0 20px;
            }
            .cta-btns {
                padding: 0 20px;
                gap: 12px;
            }
        }
        @media (max-width: 767px) {
            section {
                padding: 60px 0;
                overflow-x: hidden;
            }
            .container {
                padding: 0 16px;
                max-width: 100%;
                overflow-x: hidden;
            }
            .row {
                margin-left: 0;
                margin-right: 0;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-desc {
                font-size: 14px;
            }
            .hero-stats {
                flex-wrap: wrap;
            }
            .stat {
                padding: 12px 16px;
                min-width: 80px;
            }
            .stat-num {
                font-size: 24px;
            }
            .hero-nav {
                bottom: 270px;
                right: 16px;
            }
            .slide-visual {
                width: 30%;
                opacity: 0.4;
            }
            .story-features {
                grid-template-columns: 1fr;
            }
            .cta-banner {
                padding: 50px 0;
            }
            .cta-banner h2 {
                font-size: 26px;
                line-height: 1.3;
            }
            .cta-banner p {
                font-size: 14px;
                margin-bottom: 28px;
            }
            .cta-btns {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .cta-btns a {
                width: 100%;
                justify-content: center;
                text-align: center;
                max-width: 320px;
            }
            .btn-white,
            .btn-outline-white {
                padding: 14px 24px;
                font-size: 14px;
            }
            .testi-slide {
                padding: 24px;
            }
            .testi-quote {
                font-size: 17px;
            }
            .testi-slides {
                display: flex;
                width: 100%;
            }
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-btns a {
                width: 100%;
                justify-content: center;
            }
            .inquiry-form-wrap {
                padding: 1.5rem;
            }
            .inspiration-slider {
                height: 320px;
            }
            .room-info {
                padding: 1.5rem;
            }
            .room-info h3 {
                font-size: 1.4rem;
            }
            #trustedProjects {
                padding: 40px 0;
            }
            .arch-img {
                height: 160px;
            }
        }
        @media (max-width: 480px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom a {
                margin: 0 8px;
            }
        }
