﻿/* --- CSS Reset & Variables --- */
:root {
    --primary-red: #e63a3a;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #dddddd;
    --bg-grey: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    overflow-x: hidden;
}

/* --- Top Utility Bar --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 40px;
    font-size: 12px;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.top-links a,
.top-right a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 10px;
}

.top-right i {
    color: var(--primary-red);
    margin-right: 5px;
}

/* --- Main Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-red);
    margin-right: 5px;
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.nav-links li a:hover,
.nav-links li a:focus-visible,
.nav-links li a.active,
.nav-links li a[aria-current="page"] {
    color: var(--primary-red);
}

.nav-links li a i {
    font-size: 10px;
    margin-left: 5px;
    color: var(--text-light);
}

.nav-links li a:hover i,
.nav-links li a:focus-visible i,
.nav-links li a.active i,
.nav-links li a[aria-current="page"] i {
    color: var(--primary-red);
}

.btn-estimate {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-estimate:hover {
    background-color: #c92b2b;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    background: url('image-1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
    z-index: 2;
}

.hero-text {
    color: var(--white);
    max-width: 50%;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-person {
    position: absolute;
    bottom: -5vh;
    left: 45%;
    transform: translateX(-50%);
    height: 90%;
    z-index: 1;
    pointer-events: none;
}

.hero-person img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* --- Lead Form --- */
.lead-form {
    background: var(--white);
    padding: 30px;
    width: 380px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.lead-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.input-group {
    margin-bottom: 15px;
    position: relative;
}

.lead-form input[type="text"],
textarea,
.form-select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    background: transparent;
}

a {
    text-decoration: none;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.flag-icon {
    padding-right: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.flag-icon img {
    width: 20px;
    margin-right: 5px;
}

.phone-input-wrapper input {
    border-bottom: none !important;
}

.whatsapp-optin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.toggle-switch {
    width: 36px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
}

.btn-submit {
    width: 100%;
    background: var(--primary-red);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit i {
    margin-left: 10px;
}

.disclaimer {
    font-size: 10px;
    color: #999;
    margin-top: 10px;
    line-height: 1.4;
}

.disclaimer a {
    color: var(--primary-red);
    text-decoration: none;
}

/* --- Mega Menu --- */
.nav-links li {
    position: relative;
    padding: 20px 0;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(96vw, 1100px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    border-top: 3px solid var(--primary-red);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 24px;
}

.nav-links li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateX(5px);
}

.menu-item:hover .menu-text {
    color: var(--primary-red);
}

.menu-item.menu-heading {
    cursor: default;
    border-bottom: 2px solid #f1f1f1;
    padding-top: 0;
    padding-bottom: 0;
}

.menu-item.menu-heading:hover {
    transform: none;
}

.menu-item.menu-heading .menu-text {
    font-weight: 700;
    color: var(--primary-red);
}

.menu-icon {
    font-size: 14px;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #555;
    position: relative;
}

.menu-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* --- Why Choose Us --- */
.why-choose-us {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.features-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: default;
}

.feature-icon {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #333;
}

.feature-icon.red-accent {
    color: var(--primary-red);
}

.feature-icon.blue-accent {
    color: #5dade2;
}

.feature-icon.dark-accent {
    color: #34495e;
}

/* --- Video Section (Full Width) --- */
.video-section {
    padding: 0;
    background-color: #000;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-header {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 12px 25px;
    border-radius: 4px;
}

.video-header h2 {
    font-size: 22px;
    color: #000;
    font-weight: 800;
    margin: 0;
}

.video-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

.video-track::-webkit-scrollbar {
    display: none;
}

.video-slide {
    min-width: 100vw;
    width: 100vw;
    position: relative;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-aspect-ratio {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    transition: 0.3s;
}

.slider-nav-btn:hover {
    background-color: var(--primary-red);
}

.slider-nav-btn.prev {
    left: 30px;
}

.slider-nav-btn.next {
    right: 30px;
}

/* --- Product Sliders --- */
.product-slider-section {
    padding: 40px 0;
    background-color: #fff;
    max-width: 1240px;
    margin: 0 auto;
}

.slider-group {
    margin-bottom: 50px;
    position: relative;
    /*padding: 0 20px;*/
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

.product-slider-section .section-header h2 {
    width: 100%;
    margin: 0;
    text-align: center;
    font-weight: 700;
}

.section-header a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

/*.product-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 0;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .product-track::-webkit-scrollbar {
            display: none;
        }

        .product-card {
            min-width: 300px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }*/

.product-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hidden Product Name Overlay */
.product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    text-align: center;

    background: rgba(0, 0, 0, 0.6);
    /* black transparent */
    color: #fff;
    font-size: 18px;
    font-weight: 600;

    opacity: 0.75;
    /* hidden initially */
    transform: translateY(0%);
    transition: 0.35s ease;
    /* smooth slide + fade */
}

/* Show name on hover */
.product-card:hover .product-name {
    opacity: 1;
    transform: translateY(0);
}

.product-name1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    text-align: center;

    background: rgba(0, 0, 0, 0.6);
    /* black transparent */
    color: #fff;
    font-size: 18px;
    font-weight: 600;

    opacity: 0;
    /* hidden initially */
    transform: translateY(100%);
    transition: 0.35s ease;
    /* smooth slide + fade */
}

/* Show name on hover */
.product-card:hover .product-name1 {
    opacity: 1;
    transform: translateY(0);
}


.nav-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 1px solid #eee;
    color: #333;
}

.nav-arrow:hover {
    background: var(--primary-red);
    color: white;
}

.nav-arrow.left {
    left: 0;
}

.nav-arrow.right {
    right: 0;
}

/* --- Estimate & Design Session --- */
.estimate-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    text-align: center;
}

.estimate-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.estimate-header h2 span {
    color: var(--primary-red);
}

.estimate-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.estimate-card {
    background: #fff;
    width: 450px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.card-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.main-icon {
    font-size: 40px;
    color: #333;
}

.calc-icon {
    font-size: 24px;
    color: #e0e0e0;
    border: 1px solid #e0e0e0;
    padding: 5px;
    border-radius: 4px;
}

.btn-card-estimate {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
}



/* --- NEW SECTION: Design to Move-In Slider --- */
.process-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #f0f0f0;
}

.process-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-indicator.active {
    background-color: var(--primary-red);
}

.process-slider-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.process-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.process-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
}

.slide-content {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
}

.slide-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.slide-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 30px;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
}

.process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.process-arrow.left {
    left: 0;
}

.process-arrow.right {
    right: 0;
}

/* --- Widgets --- */
.widget-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #5ba585;
    color: white;
    padding: 15px;
    border-radius: 8px;
    width: 267px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 100;
}

.widget-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 88px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.2s ease;
}

.widget-whatsapp img,
.widget-call img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.widget-whatsapp:hover,
.widget-call:hover {
    transform: scale(1.06);
}

.widget-call {
    position: fixed;
    bottom: 156px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.2s ease;
}

.widget-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 14px;
    z-index: 100;
}

.widget-chat .connect-btn {
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
}

.widget-chat .connect-btn a {
    color: white;
    text-decoration: none;
}

/* --- Global Responsive --- */
@media (max-width: 1024px) {
    .hero-person {
        display: none;
    }
}

@media (max-width: 768px) {

    .top-bar,
    .nav-links {
        display: none;
    }

    nav {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .lead-form {
        width: 100%;
    }

    .widget-notification {
        display: none;
    }

    .process-slide {
        flex-direction: column-reverse;
        text-align: center;
    }

    .slide-content {
        max-width: 100%;
        padding-right: 0;
        margin-top: 20px;
    }

    .progress-bar {
        max-width: 300px;
    }

    .step-indicator {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* --- Testimonial Section (Topi Nahi Pehenaya) --- */
.testimonial-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.testimonial-slider-container {
    position: relative;
    padding: 0 50px;
    /* Space for arrows */
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    /* Hide scrollbar spacing */

    /* Hide scrollbars */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

/*.testimonial-card {
            flex: 0 0 calc(33.333% - 20px);
            background: #fff;
            text-align: left;
            border-radius: 8px;
            overflow: hidden;
            min-width: 300px;
        }*/
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    min-width: 340px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Video Thumbnail Area */
/*.testimonial-video-box {
            position: relative;
            width: 40%;
    		height: 200px;
            background-color: #000;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
        }

        .testimonial-video-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }*/
.testimonial-video-box {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}

.testimonial-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-video-box:hover .play-icon-overlay {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

/* Content Area */
.testimonial-content {
    flex: 1;
}

.testimonial-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.testimonial-quote {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/*.testimonial-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }*/

/*.testimonial-location {
            font-size: 12px;
            color: #999;
            margin-bottom: 15px;
            display: block;
        }*/

/*.testimonial-quote {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }*/

/* --- BluePearl Luxe Section --- */
.luxe-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

/* Overlay to darken image slightly */
.luxe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.luxe-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white box */
    padding: 40px 60px;
    border-radius: 4px;
    max-width: 600px;
}

.luxe-content h3 {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luxe-logo {
    font-size: 36px;
    font-weight: 400;
    /* Thin font often used for Luxe */
    color: #b8860b;
    /* Gold color */
    margin-bottom: 30px;
    font-family: serif;
    /* Elegant font */
}

.luxe-logo span {
    font-weight: 900;
    font-family: sans-serif;
    color: #b8860b;
}

.btn-luxe {
    background-color: #b8860b;
    /* Gold button */
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.btn-luxe:hover {
    background-color: #9a7009;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 85%;
        /* Single card with peek on mobile */
    }

    .testimonial-slider-container {
        padding: 0;
        /* Full width on mobile */
    }

    .luxe-content {
        width: 90%;
        padding: 30px 20px;
    }
}

/* --- Testimonial Section --- */
.testimonial-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.site-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.site-lightbox.is-open {
    display: flex;
}

.site-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.site-lightbox-content {
    position: relative;
    z-index: 2;
    width: min(92vw, 980px);
}

.site-lightbox-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.site-lightbox-image-wrap img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

.site-lightbox-title {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding-top: 12px;
}

.site-lightbox-close,
.site-lightbox-nav {
    position: absolute;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-lightbox-close:hover,
.site-lightbox-nav:hover {
    background: var(--primary-red);
    color: #fff;
}

.site-lightbox-close {
    top: 24px;
    right: 24px;
}

.site-lightbox-nav.prev {
    left: 24px;
}

.site-lightbox-nav.next {
    right: 24px;
}

@media (max-width: 767px) {
    .site-lightbox-title {
        font-size: 16px;
    }

    .site-lightbox-nav {
        width: 34px;
        height: 34px;
    }

    .site-lightbox-nav.prev {
        left: 8px;
    }

    .site-lightbox-nav.next {
        right: 8px;
    }

    .site-lightbox-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }
}

.testimonial-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Scrollable Container */
.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    text-align: left;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/*.testimonial-card {
    min-width: 350px;
    flex: 0 0 350px; 
    display: flex;
    flex-direction: column;
}*/

/* Video Thumbnail */
.video-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.3);
}

/* Card Text */
.t-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.t-location {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.t-quote {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* --- Luxe Section --- */
.luxe-section {
    position: relative;
    width: 100%;
    height: 500px;
    /* Using a placeholder luxury interior image */
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

/* Overlay box */
.luxe-content-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 60px;
    text-align: center;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.luxe-intro {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 5px;
}

.luxe-logo {
    font-size: 32px;
    color: #b8860b;
    /* Gold Color */
    font-family: serif;
    /* Elegant font */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.luxe-logo span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #b8860b;
}

.btn-luxe {
    background-color: #b8860b;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.btn-luxe:hover {
    background-color: #966d08;
}

/* --- Refer Section --- */
.refer-section {
    background-color: #fff0f0;
    /* Light pink bg */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.refer-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.refer-text {
    max-width: 50%;
}

.refer-text h2 {
    font-size: 32px;
    color: #333;
    font-weight: 300;
    margin-bottom: 10px;
}

.refer-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.btn-refer {
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
}

.refer-image img {
    height: 180px;
    width: auto;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {

    /* Testimonial cards adjust width */
    .testimonial-card {
        min-width: 280px;
        flex: 0 0 280px;
    }

    /* Luxe box smaller padding */
    .luxe-content-box {
        padding: 30px 20px;
    }

    /* Refer section stacks vertically */
    .refer-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .refer-text {
        max-width: 100%;
    }
}

/* --- Shared Utilities --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- Testimonials Section (Topi Nahi Pehenaya) --- */
.testimonials-section {
    background: #fff;
    text-align: left;
    /* Image shows left aligned text for title? actually centered usually better, but let's stick to standard */
}

.testimonials-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    /* Title centered as per image */
    margin-bottom: 40px;
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for arrows */
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 560px;
    /* Width based on desktop view */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    /* Optional shadow if needed, image looks flat but clean */
}

/* Video Thumbnail Styling */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 8px;
    /* Rounded corners as per image */
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* Card Content */
.t-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.t-location {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.t-quote {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Navigation Arrows (Circle style) */
.nav-btn {
    position: absolute;
    top: 40%;
    /* Align with image part roughly */
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #e63a3a;
    color: white;
    border-color: #e63a3a;
}

.nav-btn.prev {
    left: 0;
}

.nav-btn.next {
    right: 0;
}


/* --- Luxe Section --- */
.luxe-section {
    position: relative;
    height: 500px;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

/* The semi-transparent overlay box */
.luxe-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 40px 60px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    border-radius: 4px;
}

.luxe-intro {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    margin-bottom: 5px;
}

.luxe-logo-text {
    font-size: 36px;
    color: #b8860b;
    /* Dark Gold */
    margin-bottom: 30px;
    font-family: serif;
    /* Mimicking the script font style */
}

.luxe-logo-text span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-right: 5px;
}

.btn-luxe {
    background-color: #b8860b;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-luxe:hover {
    background-color: #946c09;
}


/* --- Refer & Earn Section --- */
.refer-section {
    background-color: #fff5f5;
    /* Light pink background */
    padding: 60px 0;
}

.refer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.refer-content {
    flex: 1;
}

.refer-content h2 {
    font-size: 32px;
    color: #333;
    font-weight: 300;
    margin-bottom: 10px;
}

.refer-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
}

.btn-refer {
    background-color: #e63a3a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.refer-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.refer-image img {
    max-width: 300px;
    height: auto;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {

    /* Testimonials */
    .testimonial-card {
        min-width: 300px;
        /* Smaller card for mobile */
    }

    .testimonial-slider-wrapper {
        padding: 0 10px;
    }

    .nav-btn {
        display: none;
        /* Hide arrows on mobile, use swipe */
    }

    /* Luxe */
    .luxe-section {
        height: 350px;
    }

    .luxe-box {
        padding: 25px;
    }

    /* Refer */
    .refer-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .refer-image {
        justify-content: center;
    }
}

/* --- Partners/News Scrolling Section --- */
.partners-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.partners-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Infinite Scroll Animation */
.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scrollLeft 20s linear infinite;
    padding-left: 50px;
    /* Initial offset */
}

.partner-logo {
    height: 40px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves half way (since content is duplicated) */
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        flex: 0 0 280px;
    }

    .nav-arrow {
        display: none;
    }

    .refer-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .refer-text {
        max-width: 100%;
    }

    .partner-logo {
        height: 30px;
        gap: 30px;
    }
}

/* --- Footer Section --- */
.site-footer {
    background-color: #ffffff;
    padding-top: 60px;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Left Side: Brand & Social */
.footer-brand-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-red);
    font-size: 32px;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
}

/* Right Side: Links Columns */
.footer-links-group {
    flex: 4;
    display: flex;
    justify-content: space-between;
    /*flex-wrap: wrap;*/
    gap: 30px;
}

.footer-col {
    min-width: 160px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.office-address-text {
    font-size: 13px;
}

/* Bottom Copyright Bar */
.footer-bottom {
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 25px 20px;
    margin-top: 40px;
}

.bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    color: #666;
    font-size: 13px;
}

.footer-contact-info {
    display: flex;
    gap: 30px;
}

.footer-contact-info a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-info i {
    color: #666;
    font-size: 16px;
}

/* --- Footer Responsive --- */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-links-group {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .footer-links-group {
        flex-direction: column;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- SEO / Popular Links Section --- */
.seo-links-section {
    background-color: #fafafa;
    padding: 50px 20px;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
    color: #666;
}

.seo-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Tabs Styling */
.seo-tabs-header {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.seo-tab-btn {
    background: none;
    border: none;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    position: relative;
    margin-bottom: -1px;
    /* Overlap border */
}

.seo-tab-btn.active {
    border-bottom: 3px solid #333;
    color: #000;
}

.seo-tab-content {
    display: none;
    /* Hidden by default */
    margin-bottom: 40px;
}

.seo-tab-content.active {
    display: block;
    /* Visible when active */
}

/* Link Lists */
.seo-link-list {
    line-height: 2;
}

.seo-link-list a {
    text-decoration: none;
    color: #777;
    transition: 0.2s;
    white-space: nowrap;
    /* Keep city names together */
}

.seo-link-list a:hover {
    color: var(--primary-red);
}

.seo-separator {
    margin: 0 8px;
    color: #ccc;
}

/* Description Paragraph */
.seo-description {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .seo-link-list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px 0;
    }

    .seo-separator {
        display: none;
        /* Hide pipes on mobile for cleaner wrap */
    }

    .seo-link-list a {
        margin-right: 10px;
        background: #eee;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
    }
}

/* --- Service Guarantee Section (Image 2) --- */
.guarantee-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    position: relative;
}

/* Optional: Faint background decoration like the image */
.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.guarantee-container {
    max-width: 1240px;
    margin: 0 auto;
}

.guarantee-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    padding: 0 30px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-item:last-child {
    border-right: none;
}

.g-icon-box {
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 48px;
    /* Icon size */
}

/* Specific styling for the icons to look thin/outlined */
.g-icon-box i {
    font-weight: 300;
}

.g-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.g-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.btn-book-red {
    background-color: #e63a3a;
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-book-red:hover {
    background-color: #d12f2f;
}

/* --- Updated SEO Section Styles (Image 1) --- */
.seo-links-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    font-family: 'Lato', sans-serif;
    border-top: 1px solid #eaeaea;
}

.seo-group {
    margin-bottom: 40px;
}

.seo-tabs-header {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.seo-tab-btn {
    background: none;
    border: none;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.seo-tab-btn.active {
    color: #000;
    border-bottom: 3px solid #333;
}

.seo-link-container {
    line-height: 2.2;
    font-size: 12px;
    color: #666;
}

.seo-link-container a {
    text-decoration: none;
    color: #666;
    transition: 0.2s;
}

.seo-link-container a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.seo-pipe {
    color: #ccc;
    margin: 0 8px;
}

.seo-footer-text {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .guarantee-item {
        flex: 1 1 45%;
        /* 2 items per row */
        border-right: none;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .guarantee-item {
        flex: 1 1 100%;
        /* 1 item per row */
    }

    .seo-tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}

/* --- About Us Section --- */
.about-section {
    font-family: 'Lato', sans-serif;
    color: #fff;
}

/* Top Dark Header Area */
.about-header-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

.about-header-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    /* Align top */
    gap: 50px;
    flex-wrap: wrap;
}

.about-title {
    flex: 1;
    min-width: 200px;
}

.about-title h2 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
    color: #fff;
    position: relative;
}

/* Optional line under title if desired, though image doesn't show one explicitly */
.about-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #b8860b;
    /* Gold accent */
    margin-top: 15px;
}

.about-desc {
    flex: 3;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: justify;
}

/* Images Grid Area */
.about-grid-section {

    padding: 40px 20px 60px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
    margin-top: -30px;
    /* Slight overlap or just separation? Image implies separation or clean grid below */
}

/* If you want them overlapping the dark header slightly like some modern designs, use negative margin. 
           Based on your image, they sit cleanly below or inside a container. Let's keep them cleanly below. */

.about-card {
    position: relative;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .about-img-box img {
    transform: scale(1.05);
}

.about-caption {
    background: #e63a3a;
    /* The specific gold/brown color from your image */
    /* Gradient for a metallic look */
    background: linear-gradient(to right, #e63a3a, #e63a3a);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 768px) {
    .about-header-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-title h2 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
    }
}

.product-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

/* Image container */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Image */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Gradient background + blur */
.product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    box-sizing: border-box;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            /* dark bottom */
            rgba(0, 0, 0, 0.4),
            /* middle */
            rgba(0, 0, 0, 0)
            /* transparent top */
        );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Image hover zoom */
.product-card:hover img {
    transform: scale(1.08);
}

/* Responsive columns */
@media (min-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.design-session-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.design-session-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-image-box {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
}

.step-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

@media (min-width: 992px) {
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

@media (min-width: 1464px) {
    .container {
        max-width: 1440px;
    }
}

.bg-custom {
    background: #836735;
    border-radius: 6rem 0 0 6rem;
    padding: 3rem 0 3rem 6rem;
    margin: 2rem 0;
    position: relative;
    left: 7%;
}

h2.pg-heading.text-lg-start.text-center.text-white {
    font-size: 23px;
    line-height: 35px;
}

.text-lg-start {
    text-align: left !important;
}

@media (min-width: 992px) {
    .text-lg-start {
        text-align: left !important;
    }
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 1) !important;
}

.text-lg-start {
    text-align: left !important;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

[type=submit],
[type=reset],
button,
html [type=button] {
    -webkit-appearance: button;
}

.custom_btn {
    border: 2px solid #fff;
    padding: 4px 20px;
    font-size: 18px;
    color: #fff;
    transition: .5s ease-out;
    margin: 10px 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

a {
    color: var(--theme-color);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    text-decoration: none;
}

.bg-custom:after {
    position: absolute;
    content: '';
    background: #836735;
    height: 100%;
    width: 1100px;
    /*right: -45rem;*/
    top: 0;
    z-index: -1;
    border-top-right-radius: 6rem;
    border-bottom-right-radius: 6rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section-header a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.video-section {
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ========== SLIDER ========== */
.video-slider-container {
    position: relative;
    width: 100%;
}

.video-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
    display: none;
}

.video-card {
    position: relative;
    min-width: 330px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Slider Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
}

.slide-btn:hover {
    opacity: 1;
}

.left {
    left: -5px;
}

.right {
    right: -5px;
}

/* Video title overlay */
.video-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0));
}

/* ========== GRID ========== */
.video-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

.grid-card {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.grid-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Grid */
@media (min-width: 600px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Header Search */
.header-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}

.header-search input {
    border: none;
    outline: none;
    padding: 8px 10px;
    width: 180px;
    font-size: 13px;
}

.header-search button {
    border: none;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 10px;
    cursor: pointer;
}

/* Trust banner */
.trust-banner-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.trust-banner-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.trust-banner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.trust-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 30px;
    font-weight: 700;
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary-red);
    color: #fff;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1200;
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 900px) {
    .header-search {
        display: none;
    }

    .trust-banner-overlay {
        font-size: 20px;
    }
}

/* --- Bootstrap-friendly spacing fixes and responsive polish --- */
.services-intro-section {
    margin-top: 24px;
}

.reasons-section {
    margin-top: 0;
    padding-top: 30px;
}

.reasons-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 44px;
}

.reasons-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.reasons-track::-webkit-scrollbar {
    display: none;
}

.reason-pill {
    min-width: 220px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 18px 14px;
    background: #fff;
    white-space: normal;
}

.reason-pill .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 42px;
}

.reason-pill p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

.reasons-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.reasons-arrow:hover {
    background: var(--primary-red);
    color: #fff;
}

.reasons-arrow.left {
    left: 0;
}

.reasons-arrow.right {
    right: 0;
}

.products-accessories-section {
    max-width: 1240px;
}

.pa-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pa-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pa-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-light);
}

.pa-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    nav {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        gap: 16px;
        white-space: nowrap;
    }

    .btn-estimate {
        margin-left: auto;
    }

    .services-intro-section {
        margin-top: 8px;
    }

    .reasons-slider-container {
        padding: 0 38px;
    }

    .reason-pill p {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .top-bar {
        padding: 8px 12px;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .reasons-slider-container {
        padding: 0 34px;
    }

    .reasons-arrow {
        width: 30px;
        height: 30px;
    }
}

/* --- Final responsive overrides (Bootstrap-aligned) --- */
.nav-toggle {
    display: none;
}

.nav-main-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-footer-nav {
    display: none;
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    nav {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 6px 8px;
        background: #fff;
        margin-left: auto;
    }

    .nav-toggle .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230,58,58,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .nav-main-controls {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 10px 0 2px;
    }

    nav.menu-open .nav-main-controls {
        display: flex;
    }

    nav .nav-main-controls .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        white-space: normal;
        overflow: visible;
        border-top: 1px solid #f0f0f0;
    }

    nav .nav-main-controls .nav-links li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f5f5f5;
    }

    nav .nav-main-controls .nav-links li a {
        padding: 11px 2px;
        justify-content: space-between;
    }

    nav .nav-main-controls .nav-links li a:hover,
    nav .nav-main-controls .nav-links li a:focus-visible,
    nav .nav-main-controls .nav-links li a.active,
    nav .nav-main-controls .nav-links li a[aria-current="page"] {
        color: var(--primary-red);
    }

    nav .nav-main-controls .header-search {
        display: flex;
        width: 100%;
    }

    nav .nav-main-controls .header-search input {
        width: 100%;
    }

    nav .nav-main-controls .btn-estimate {
        width: 100%;
        text-align: center;
    }

    .nav-links .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        box-shadow: none;
        border-top: none;
        border-radius: 8px;
        background: #fafafa;
        margin-bottom: 8px;
        padding: 8px 12px;
    }

    .nav-links .mega-menu .mega-column {
        border-bottom: 1px solid #ececec;
        padding: 2px 0;
    }

    .nav-links .mega-menu .mega-column:last-child {
        border-bottom: none;
    }

    .nav-links .mega-menu .mega-column .menu-item {
        display: none;
        padding: 0;
    }

    .nav-links .mega-menu .mega-column .menu-item.menu-heading {
        display: flex;
        cursor: pointer;
        padding: 0;
        justify-content: space-between;
    }

    .nav-links .mega-menu .mega-column .menu-item.menu-heading .menu-text {
        font-weight: 400;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links .mega-menu .mega-column .menu-item.menu-heading .menu-text::after {
        content: "\25BE";
        color: var(--primary-red);
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.2s ease;
    }

    .nav-links .mega-menu .mega-column.mobile-open .menu-item.menu-heading .menu-text::after {
        content: "\25B4";
    }

    .nav-links .mega-menu .mega-column.mobile-open .menu-item {
        display: flex;
    }

    .nav-links .mega-menu .mega-column .menu-icon {
        display: none;
    }

    .nav-links .mega-menu .mega-column .menu-text {
        font-size: 14px;
    }

    .nav-links li:hover .mega-menu {
        top: auto;
    }

    .nav-links li.mega-open .mega-menu {
        display: grid;
    }

    .hero {
        height: auto;
        min-height: 540px;
        padding: 30px 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .lead-form {
        width: min(100%, 560px);
    }

    .section-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-card {
        min-width: 260px;
    }

    .custom .img-responsive {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .mobile-footer-nav {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        height: 62px;
        background: #ffffff;
        border-top: 1px solid #e8e8e8;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 1200;
    }

    .mobile-footer-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #333;
        text-decoration: none;
        font-size: 11px;
        line-height: 1.1;
    }

    .mobile-footer-item i {
        font-size: 16px;
    }

    .mobile-footer-item:hover,
    .mobile-footer-item:focus-visible {
        color: var(--primary-red);
    }

    body {
        padding-bottom: 68px;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text h2 {
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-width: 84vw;
    }

    .video-card {
        min-width: 84vw;
        height: 190px;
    }
}

--- CSS Reset & Variables --- :root {
    --brand-blue: #e63a3a;
    --brand-blue-hover: #e63a3a;
    --brand-gold: #D97706;
    --brand-gold-hover: #ca8a04;
    --brand-dark: #111827;
    --brand-light: #F3F4F6;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --bg-body: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: 60px;
    /* Space for sticky bottom bar */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--brand-dark);
    color: white;
    font-size: 0.75rem;
    padding: 8px 16px;
}

.top-bar-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a:hover {
    color: var(--brand-gold);
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-contact i {
    color: var(--brand-gold);
}

.search-container {
    position: relative;
    display: none;
}

.search-input {
    background-color: #374151;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 0.75rem;
    width: 160px;
}

.search-container i {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.btn-enquiry {
    background-color: var(--brand-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-enquiry:hover {
    background-color: var(--brand-gold-hover);
}

@media (min-width: 640px) {
    .top-bar-inner {
        flex-direction: row;
        gap: 0;
    }
}

@media (min-width: 768px) {
    .search-container {
        display: block;
    }
}

/* --- Main Header --- */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-top: -4px;
    letter-spacing: 2px;
    font-weight: 300;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    display: block;
}

.main-nav {
    display: none;
    gap: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    align-items: center;
}

.main-nav a {
    color: var(--text-muted);
}

.main-nav a:hover {
    color: var(--brand-gold);
}

.main-nav a.active {
    color: var(--brand-gold);
    border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 4px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .main-nav {
        display: flex;
    }
}

/* --- Page Title / Breadcrumb --- */
.page-header {
    background-color: #e5e7eb;
    padding: 32px 0;
    border-bottom: 1px solid #d1d5db;
}

.page-header-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--text-main);
    border-left: 4px solid var(--brand-gold);
    padding-left: 16px;
}

.back-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--brand-gold);
}

@media (min-width: 768px) {
    .page-header-inner {
        flex-direction: row;
        gap: 0;
    }
}

/* --- Main Layout --- */
.content-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.main-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .content-layout {
        flex-direction: row;
    }

    .sidebar {
        width: 25%;
    }

    .main-content {
        width: 75%;
    }
}

/* --- Sidebar Widgets --- */
.widget {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    padding: 20px;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.kitchen-types li a {
    display: block;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.kitchen-types li a:hover {
    background-color: var(--bg-body);
}

.kitchen-types li a.active {
    background-color: #e63a3a;
    color: white;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #f3f4f6;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--brand-blue);
    color: white;
}

.tag.active {
    background-color: var(--brand-gold);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.tag.active:hover {
    background-color: var(--brand-gold-hover);
}

.promo-banner {
    background-color: #e63a3a;
    color: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.promo-banner h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-banner p {
    font-size: 0.875rem;
    color: #bfdbfe;
    margin-bottom: 16px;
}

.btn-promo {
    background-color: var(--brand-gold);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-promo:hover {
    background-color: var(--brand-gold-hover);
}

/* --- Main Content Area --- */
.intro-box {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.intro-box h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.intro-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .intro-box p {
        font-size: 1rem;
    }
}

.cta-box {
    background-color: #e63a3a;
    /* orange-50 */
    border-left: 4px solid var(--brand-gold);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cta-text {
    font-weight: 500;
    color: white;
}

.cta-phone {
    color: var(--brand-blue);
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-cta {
    background-color: var(--brand-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: none;
}

.btn-cta:hover {
    background-color: var(--brand-blue-hover);
}

@media (min-width: 640px) {
    .btn-cta {
        display: block;
    }
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #e5e7eb;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.card-label {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: var(--brand-gold);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.card-image-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.image-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 58, 138, 0.2);
    /* brand-blue with opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card:hover .card-overlay {
    opacity: 1;
}

.search-icon {
    background-color: white;
    color: var(--brand-blue);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(16px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.image-card:hover .search-icon {
    transform: translateY(0);
}

/* --- Pagination --- */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    background-color: transparent;
    font-weight: 500;
}

.page-btn:hover {
    background-color: var(--bg-body);
}

.page-btn.active {
    background-color: var(--brand-gold);
    color: white;
    border-color: var(--brand-gold);
}

.page-dots {
    padding: 0 8px;
    color: var(--text-light);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--brand-dark);
    color: #d1d5db;
    /* gray-300 */
    padding-top: 64px;
    padding-bottom: 32px;
    border-top: 4px solid var(--brand-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    color: var(--brand-blue);
}

.footer-logo-subtitle {
    font-weight: 300;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: #9ca3af;
}

.footer-about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 24px;
}

.make-in-india {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: 1px solid #374151;
    padding-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.875rem;
}

.footer-links a i {
    color: var(--brand-gold);
    margin-right: 8px;
}

.footer-links a:hover {
    color: var(--brand-gold);
}

.social-heading {
    margin-top: 32px;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icon {
    background-color: #1f2937;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-icon:hover.google {
    background-color: var(--brand-blue);
}

.social-icon:hover.youtube {
    background-color: #dc2626;
}

.social-icon:hover.facebook {
    background-color: #2563eb;
}

.social-icon:hover.instagram {
    background-color: #db2777;
}

.social-icon:hover.linkedin {
    background-color: #1d4ed8;
}

.social-icon:hover.twitter {
    background-color: #60a5fa;
}

.contact-info {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info strong {
    color: white;
}

.contact-info i {
    color: var(--brand-gold);
    margin-right: 8px;
}

.map-container {
    width: 100%;
    height: 128px;
    background-color: #374151;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid #4b5563;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: white;
}

.map-overlay a {
    color: #93c5fd;
}

.map-overlay a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
    gap: 8px;
}

.footer-bottom a:hover {
    color: white;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* --- Sticky Bottom Bar --- */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--brand-blue);
    color: white;
    box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 2px solid var(--brand-gold);
}

@media (min-width: 768px) {
    .bottom-bar {
        padding: 12px 32px;
    }
}

.pulse-text {
    font-weight: 600;
    font-size: 0.875rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (min-width: 768px) {
    .pulse-text {
        font-size: 1rem;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.bottom-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .bottom-bar-right {
        gap: 24px;
    }
}

.bottom-socials {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.bottom-socials a:hover {
    color: var(--brand-gold);
}

@media (min-width: 768px) {
    .bottom-socials {
        display: flex;
    }
}

.btn-call {
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-call:hover {
    background-color: var(--brand-gold-hover);
}

@media (min-width: 768px) {
    .btn-call {
        font-size: 1rem;
    }
}