* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --gold-color: #D4AF37;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --dark: #1a1a1a;
    --dark-nav: #0f0f0f;
    --gray: #666;
    --light-gray: #e0e0e0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    /* Removed overflow-x: hidden as it can break position: sticky on some browsers */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Navigation - Premium Dark Theme */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 80px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Hide background elements - not needed for clean navbar */
.nav-background-elements {
    display: none;
}

/* Navigation Overlay - Removed, not needed */
.nav-overlay {
    display: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
    z-index: 3;
    min-height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-left {
    flex: 1;
    justify-content: flex-end;
    display: flex;
    padding-right: 45px;
}

.nav-right {
    flex: 1;
    justify-content: flex-start;
    display: flex;
    padding-left: 45px;
}

.nav-logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.golden-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.golden-logo:hover {
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.golden-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.7));
}

.golden-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.5rem 0.2rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1.5px;
    background: var(--gold-color);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link:hover {
    color: var(--gold-color);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.btn-appointment {
    background: transparent;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold-color);
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    min-height: 44px;
    /* Touch target */
}

.nav-link.btn-appointment::after {
    display: none;
}

.nav-link.btn-appointment:hover {
    background: var(--gold-color);
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.phone-icon {
    display: none;
    /* Phone icon removed from nav, using floating button instead */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1001;
    border-radius: 4px;
}

/* For right-side dropdowns, align to right */
.nav-right-container .dropdown-menu {
    left: auto;
    right: 0;
}

/* Mega Menu for RAJASTHAN MARBLE & HANDICRAFT */
.mega-menu {
    position: static;
}

.mega-menu-content {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 2rem 0;
    min-height: 400px;
    display: block;
}

.nav-item.mega-menu:hover .mega-menu-content,
.nav-item.mega-menu.open .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.mega-menu:hover .nav-link {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

/* Keep mega menu open when hovering over it */
.mega-menu-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep hover state on nav link when mega menu is open - using JavaScript will handle this better */


.mega-menu-container {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.mega-menu-left {
    width: 250px;
    padding: 0;
    padding-right: 2rem;
    padding-left: 0;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    margin-right: 2rem;
    margin-left: 0;
    text-align: right;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.mega-menu-list li {
    margin-bottom: 0.5rem;
}

.mega-menu-list a {
    display: block;
    padding: 0.8rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    border-radius: 4px;
    text-transform: none;
    font-weight: 400;
    text-align: right;
}

.mega-menu-list a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-color);
    padding-right: 1rem;
}

.mega-menu-right {
    flex: 1;
    padding: 0 2rem 0 0;
    overflow-x: auto;
}

.mega-menu-gallery {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem 0;
}

.gallery-item {
    flex: 0 0 auto;
    width: 200px;
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.gallery-item.active {
    opacity: 1;
}

.gallery-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-label {
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    text-transform: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    text-transform: none;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* ===== GLOBAL RESPONSIVE NAVBAR ===== */
@media (max-width: 1024px) {
    .navbar {
        min-height: 80px;
    }

    .nav-menu.nav-left,
    .nav-menu.nav-right {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0f0f0f;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.nav-left.active,
    .nav-menu.nav-right.active {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-logo-center {
        position: static;
        transform: none;
        margin: 0;
    }

    .mega-menu-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        padding: 0;
        min-height: auto;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .nav-item.mega-menu.open .mega-menu-content {
        display: block;
    }

    .mega-menu-container {
        flex-direction: column;
    }

    .mega-menu-left {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 1rem;
        margin: 0;
    }

    .mega-menu-list a {
        text-align: center;
        padding: 0.8rem;
    }

    .mega-menu-right {
        display: none;
    }
}

/* Hero Section with Video */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: #1a1a1a;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-video[src],
.hero-video:has(source[src]) {
    display: block;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 1;
    display: block;
    overflow: hidden;
}

/* Industrial Showroom Background */
.showroom-background {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 30%, #0f0f1a 60%, #0a0a0a 100%);
    overflow: hidden;
}

/* Ceiling Infrastructure */
.ceiling-infrastructure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
}

.ceiling-pipes {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 200px;
    height: 8px;
    background: linear-gradient(90deg, #2a2a3a, #1a1a2a);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ceiling-pipes::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, #2a2a3a, #1a1a2a);
    border-radius: 3px;
}

.ceiling-pipes::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 100px;
    width: 180px;
    height: 8px;
    background: linear-gradient(90deg, #2a2a3a, #1a1a2a);
    border-radius: 4px;
}

.ceiling-ducts {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 250px;
    height: 40px;
    background: linear-gradient(90deg, #1a1a2a, #0f0f1a);
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.ceiling-ducts::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    height: 35px;
    background: linear-gradient(90deg, #1a1a2a, #0f0f1a);
    border-radius: 17px;
}

.track-lighting {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 6px;
    background: linear-gradient(90deg, #3a3a4a, #2a2a3a);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.track-lighting::before,
.track-lighting::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #4a4a5a, #2a2a3a);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.track-lighting::before {
    left: 20%;
}

.track-lighting::after {
    right: 20%;
}

.light-panels {
    position: absolute;
    top: 10%;
    left: 30%;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.light-panels::before {
    content: '';
    position: absolute;
    top: 90px;
    right: -50px;
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 5px;
}

.security-cameras {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ffffff, #e0e0e0);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.security-cameras::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
}

.security-cameras::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: #2a2a3a;
    border-radius: 0 0 5px 5px;
}

/* Pillars */
.showroom-pillars {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    z-index: 1;
}

.pillar {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, #1a1a2a, #0f0f1a, #1a1a2a);
    box-shadow: inset -5px 0 20px rgba(0, 0, 0, 0.8), inset 5px 0 20px rgba(0, 0, 0, 0.8);
}

.pillar-1 {
    left: 15%;
}

.pillar-2 {
    left: 35%;
}

.pillar-3 {
    left: 55%;
}

.pillar-4 {
    left: 75%;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
}

/* Light Sources */
.light-sources {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.light-spot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: flicker 3s infinite;
}

.light-1 {
    top: 20%;
    left: 12%;
    animation-delay: 0s;
}

.light-2 {
    top: 25%;
    left: 32%;
    animation-delay: 0.5s;
}

.light-3 {
    top: 30%;
    left: 52%;
    animation-delay: 1s;
}

.light-4 {
    top: 25%;
    left: 72%;
    animation-delay: 1.5s;
}

.light-5 {
    top: 35%;
    left: 45%;
    animation-delay: 2s;
}

.light-6 {
    top: 40%;
    left: 65%;
    animation-delay: 2.5s;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Plant */
.showroom-plant {
    position: absolute;
    bottom: 5%;
    right: 8%;
    width: 100px;
    height: 120px;
    z-index: 3;
}

.showroom-plant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #2d5016, #1a3009);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.showroom-plant::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #2d5016, #1a3009);
    border-radius: 50%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

/* Hide fallback when video is playing */
.hero-video-container:has(.hero-video[src]) .hero-fallback-bg {
    display: none;
}

.hero-video-container .hero-video[src=""]~.hero-fallback-bg,
.hero-video-container .hero-video:not([src])~.hero-fallback-bg {
    display: block;
}

/* Hero Room Display */
.hero-room-display {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 3%;
    padding-bottom: 5%;
}

.hero-left-section {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.hero-center-section {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-right-section {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

/* Left Side: Balustrade */
.white-baluustrade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.white-baluustrade::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 15px,
            #ffffff 15px,
            #ffffff 20px);
}

/* Artwork Wall */
.artwork-wall {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 60%;
    background: #0a0a0a;
    border-radius: 5px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.parrot-artwork {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 5px;
}

.parrot {
    position: absolute;
    width: 40px;
    height: 35px;
    border-radius: 50% 50% 40% 40%;
}

.parrot-1 {
    top: 15%;
    left: 20%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    transform: rotate(-15deg);
}

.parrot-2 {
    top: 25%;
    right: 25%;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    transform: rotate(10deg);
}

.parrot-3 {
    top: 35%;
    left: 30%;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    transform: rotate(-5deg);
}

.parrot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.tropical-leaves {
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #2d5016, #1a3009);
    border-radius: 50% 0 50% 0;
    top: 20%;
    left: 10%;
    transform: rotate(-20deg);
}

.tropical-leaves::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #2d5016, #1a3009);
    border-radius: 50% 0 50% 0;
    top: 10px;
    right: -20px;
    transform: rotate(15deg);
}

.white-flowers {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 50%;
    top: 30%;
    left: 15%;
    box-shadow:
        25px 10px 0 #ffffff,
        50px -5px 0 #ffffff,
        30px 30px 0 #ffffff;
}

/* Center: Fireplace Mantel */
.fireplace-mantel {
    width: 100%;
    max-width: 600px;
    height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mantel-mirror {
    width: 80%;
    height: 200px;
    position: relative;
    margin-bottom: 10px;
}

.mirror-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.mirror-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
}

.mirror-glass {
    position: absolute;
    inset: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    border-radius: 3px;
    backdrop-filter: blur(2px);
}

.mantelpiece {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    overflow: hidden;
}

.mantelpiece::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.2) 10px,
            rgba(212, 175, 55, 0.2) 12px);
}

.mantel-urn-left {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 30px 30px 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.mantel-urn-left::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.mantel-rabbit {
    width: 25px;
    height: 30px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.mantel-rabbit::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow:
        20px 0 0 #ffffff,
        10px -8px 0 5px #ffffff;
}

.mantel-lattice {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 3px;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mantel-lattice::before {
    content: '';
    position: absolute;
    inset: 5px;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.1) 8px,
            rgba(0, 0, 0, 0.1) 10px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.1) 8px,
            rgba(0, 0, 0, 0.1) 10px);
}

.mantel-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.fireplace-opening {
    width: 60%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.8);
}

.metal-pot {
    width: 50px;
    height: 60px;
    border-radius: 25px 25px 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    position: relative;
}

.pot-bronze {
    background: linear-gradient(135deg, #8B4513, #654321);
}

.pot-brass {
    background: linear-gradient(135deg, #B8860B, #8B6914);
}

.pot-dark {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.metal-pot::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 10px;
    right: 10px;
    height: 8px;
    background: inherit;
    border-radius: 3px;
    opacity: 0.8;
}

.pot-1 {
    width: 45px;
    height: 55px;
}

.pot-2 {
    width: 50px;
    height: 60px;
}

.pot-3 {
    width: 40px;
    height: 50px;
}

.pot-4 {
    width: 48px;
    height: 58px;
}

/* Right Side: Plant and Temple */
.potted-plant {
    position: absolute;
    bottom: 200px;
    right: 10%;
    z-index: 2;
}

.plant-pot {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 25px 25px 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.plant-foliage {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #2d5016, #1a3009);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.plant-foliage::before,
.plant-foliage::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #2d5016, #1a3009);
    border-radius: 50%;
}

.plant-foliage::before {
    top: -10px;
    left: -15px;
    transform: rotate(-20deg);
}

.plant-foliage::after {
    top: -10px;
    right: -15px;
    transform: rotate(20deg);
}

.temple-display {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
}

.wooden-cabinet {
    width: 100%;
    height: 120px;
    position: relative;
}

.cabinet-top {
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cabinet-body {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #8B6914, #6B4E0A);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.cabinet-body::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.marble-temple {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 180px;
}

.temple-roof {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.temple-roof::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid #f5f5f5;
}

.temple-body {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    border-radius: 0 0 10px 10px;
}

.temple-elephants {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 20px;
    background: repeating-linear-gradient(90deg,
            #f5f5f5,
            #f5f5f5 8px,
            rgba(0, 0, 0, 0.1) 8px,
            rgba(0, 0, 0, 0.1) 10px);
    border-radius: 3px;
}

.temple-lattice {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    bottom: 40px;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.05) 8px,
            rgba(0, 0, 0, 0.05) 10px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.05) 8px,
            rgba(0, 0, 0, 0.05) 10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
}

.temple-offerings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow:
        15px 0 0 #ffa500,
        -15px 0 0 #4ecdc4,
        0 15px 0 #ffd700,
        0 -15px 0 #ff6b6b;
}

.pedestal-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
}

.left-group {
    position: absolute;
    left: 8%;
    bottom: 0;
}

.right-group {
    position: absolute;
    right: 8%;
    bottom: 0;
}

/* Pedestals */
.pedestal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.pedestal-white {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.pedestal-dark {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.pedestal-pink {
    background: linear-gradient(135deg, #d4a5a5, #c49595);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pedestal-tall {
    width: 50px;
    height: 180px;
    border-radius: 25px 25px 5px 5px;
}

.pedestal-medium {
    width: 45px;
    height: 140px;
    border-radius: 22px 22px 5px 5px;
}

.pedestal-short {
    width: 40px;
    height: 100px;
    border-radius: 20px 20px 5px 5px;
}

/* Fluted column effect */
.pedestal-white::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    right: 20%;
    bottom: 10%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.05) 8px,
            rgba(0, 0, 0, 0.05) 10px);
    border-radius: 10px;
}

/* Vases on Pedestals */
.vase {
    position: absolute;
    top: -30px;
    width: 35px;
    height: 40px;
    border-radius: 17px 17px 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vase-white {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
}

.vase-cream {
    background: linear-gradient(135deg, #f5f5dc, #e8e8d0);
}

.vase::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 12px;
    border-radius: 50%;
    background: inherit;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Lotus Sculptures */
.lotus-sculpture {
    position: absolute;
    top: -35px;
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lotus-sculpture::before,
.lotus-sculpture::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
}

.lotus-sculpture::before {
    top: -5px;
    left: -5px;
}

.lotus-sculpture::after {
    top: -5px;
    right: -5px;
}

.lotus-sculpture.small {
    width: 30px;
    height: 25px;
    top: -30px;
}

/* Central Altar/Mandir */
.central-altar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 4;
}

.altar-structure {
    position: relative;
    width: 200px;
    height: 280px;
}

.altar-top-tier {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.altar-roof {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 12px);
    position: relative;
}

.altar-roof::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #f5f5f5;
}

.altar-middle-tier {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.altar-carved-panel {
    width: 90%;
    height: 80%;
    margin: 10% auto;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.05) 8px,
            rgba(0, 0, 0, 0.05) 10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
}

.altar-base-tier {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-idol {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px 20px 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    position: relative;
}

.dark-idol::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 50%;
}

.altar-base-carving {
    position: absolute;
    bottom: 10px;
    left: 10%;
    right: 10%;
    height: 15px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 5px,
            rgba(212, 175, 55, 0.3) 5px,
            rgba(212, 175, 55, 0.3) 7px);
    border-radius: 3px;
}

.altar-side-1 {
    position: absolute;
    left: -80px;
    bottom: 20px;
}

.altar-side-2 {
    position: absolute;
    right: -80px;
    bottom: 20px;
}

/* Additional spotlight effects */
.stone-art-platform::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-small-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    letter-spacing: 4px;
    color: var(--white);
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 15px;
    line-height: 1.1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.hero-title-line-1 {
    display: block;
    margin-bottom: 0.3rem;
    width: 100%;
    text-align: center;
}

.hero-title-line-2 {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 6px;
    margin-top: 1rem;
    color: var(--white);
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    padding-left: 0;
}

/* Global Floating Buttons Stacking */


/* When Back to Top is hidden, move others down for better UX? 
   Actually, let's keep them fixed to avoid jumping buttons. */



/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Dream Temple Steps */
.dream-temple-steps {
    background: var(--light-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Pricing Cards */
.pooja-room-pricing,
.dream-temple-pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #6B3410;
    text-decoration: underline;
}

/* RMH Experience */
.rmh-experience {
    background: var(--light-bg);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Our Clients */
.our-clients {
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
}

/* Explore Projects */
.explore-projects {
    background: var(--light-bg);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.projects-message {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    font-size: 1.1rem;
}

/* Happy Families */
.happy-families {
    background: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 2rem auto;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-content h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* TSA Guides */
.tsa-guides {
    background: var(--light-bg);
}

.guides-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.guides-content {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
}

/* Contact Form */
/* Full Screen Map Section */
.map-section {
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Form Section with Visual */
.contact-form-visual-section {
    background: #f5f5f0;
    padding: 0;
    margin: 0;
}

.contact-form-visual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin: 0;
}

.contact-visual-left {
    position: relative;
    overflow: hidden;
}

.interior-visual-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.contact-form-right {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 500px;
    background: #f5f5f0;
    padding: 2.5rem;
    border-radius: 0;
}

.form-header-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-radio-group {
    display: flex;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.radio-option span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked+span {
    color: var(--primary-color);
    font-weight: 600;
}

.form-progress {
    display: flex;
    align-items: center;
}

.progress-indicator {
    background: #ff0000;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    background: #ffffff;
    overflow: hidden;
}

.phone-input-wrapper .phone-flag {
    padding: 0 0.5rem;
    font-size: 1.2rem;
}

.phone-input-wrapper .phone-code {
    padding: 0 0.5rem;
    color: #666;
    font-weight: 500;
    border-right: 1px solid #e0e0e0;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
}

.phone-input-wrapper input:focus {
    outline: none;
}

.radio-options-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option-large {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option-large:hover {
    border-color: var(--primary-color);
    background: #f9f9f9;
}

.radio-option-large input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.radio-option-large span {
    flex: 1;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
}

.radio-option-large input[type="radio"]:checked+span {
    color: var(--primary-color);
    font-weight: 500;
}

.radio-option-large input[type="radio"]:checked {
    accent-color: var(--primary-color);
}

.btn-next {
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-next:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
    background: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #ffffff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Articles */
.articles-section {
    background: var(--light-bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
}

.article-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-color);
}

.article-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
}

/* Featured In */
.featured-in {
    background: var(--white);
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-logo {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
}

/* About Us Page Styles */
.about-page {
    background: #ffffff;
}

/* WHO WE ARE Section */
.who-we-are-section {
    padding: 5rem 0;
    background: #ffffff;
}

.who-we-are-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.who-we-are-text {
    flex: 1;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.who-we-are-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.who-we-are-description p {
    margin-bottom: 1.5rem;
}

.who-we-are-image {
    flex: 1;
}

/* PARALLAX TEAM Section */
.about-parallax-section {
    position: relative;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/wwr.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    filter: grayscale(100%);
    /* Matches the black and white theme from the prompt */
    transition: filter 0.5s ease;
}

.about-parallax-section:hover {
    filter: grayscale(0%);
    /* Optional: bring color on hover */
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darkens the image for text readability */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.parallax-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: 700;
}

.parallax-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-parallax-section {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
        height: 350px;
    }

    .parallax-content h2 {
        font-size: 2.5rem;
    }
}

/* OUR STORY Section */
.our-story-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.story-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-image-large {
    flex: 1;
}

.story-text-blocks {
    flex: 1;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.story-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.story-thumbnail {
    flex: 1;
}

/* OUR VISION Section */
.our-vision-section {
    padding: 5rem 0;
    background: #ffffff;
}

.vision-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.vision-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.journey-section {
    text-align: center;
}

.journey-label {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.journey-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Timeline Carousel */
.timeline-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.timeline-carousel::-webkit-scrollbar {
    display: none;
}

.timeline-card {
    flex: 0 0 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.timeline-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* 3D Rotating Gallery Showcase */
.gallery-3d-section {
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9f0 0%, #fffbf8 100%);
    position: relative;
}

.gallery-3d-wrapper {
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2500px;
    /* High perspective for 3D look */
}

.gallery-3d-carousel {
    position: relative;
    width: 260px;
    height: 380px;
    transform-style: preserve-3d;
    animation: rotate3dCarousel 40s linear infinite;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-3d-carousel:hover {
    animation-play-state: paused;
}

.gallery-3d-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
    cursor: pointer;
    background: #fdfdfd;
    transition: transform 0.5s, box-shadow 0.5s;
    -webkit-box-reflect: below 15px linear-gradient(transparent, rgba(255, 255, 255, 0.1));
}

.gallery-3d-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f8f8;
    transition: transform 0.6s;
}

.gallery-3d-item:hover img {
    transform: scale(1.1);
}

/* Positioning 8 items in a circle (360 / 8 = 45deg) */
.gallery-3d-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(500px);
}

.gallery-3d-item:nth-child(2) {
    transform: rotateY(45deg) translateZ(500px);
}

.gallery-3d-item:nth-child(3) {
    transform: rotateY(90deg) translateZ(500px);
}

.gallery-3d-item:nth-child(4) {
    transform: rotateY(135deg) translateZ(500px);
}

.gallery-3d-item:nth-child(5) {
    transform: rotateY(180deg) translateZ(500px);
}

.gallery-3d-item:nth-child(6) {
    transform: rotateY(225deg) translateZ(500px);
}

.gallery-3d-item:nth-child(7) {
    transform: rotateY(270deg) translateZ(500px);
}

.gallery-3d-item:nth-child(8) {
    transform: rotateY(315deg) translateZ(500px);
}

@keyframes rotate3dCarousel {
    from {
        transform: rotateX(-5deg) rotateY(0deg);
    }

    to {
        transform: rotateX(-5deg) rotateY(360deg);
    }
}

/* Mobile Responsiveness for 3D Carousel */
@media (max-width: 768px) {
    .gallery-3d-wrapper {
        height: 550px;
    }

    .gallery-3d-carousel {
        width: 180px;
        height: 280px;
    }

    .gallery-3d-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(2) {
        transform: rotateY(45deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(3) {
        transform: rotateY(90deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(4) {
        transform: rotateY(135deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(5) {
        transform: rotateY(180deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(6) {
        transform: rotateY(225deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(7) {
        transform: rotateY(270deg) translateZ(350px);
    }

    .gallery-3d-item:nth-child(8) {
        transform: rotateY(315deg) translateZ(350px);
    }
}

@media (max-width: 480px) {
    .gallery-3d-wrapper {
        perspective: 1200px;
        height: 450px;
    }

    .gallery-3d-carousel {
        width: 140px;
        height: 220px;
    }

    .gallery-3d-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(2) {
        transform: rotateY(45deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(3) {
        transform: rotateY(90deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(4) {
        transform: rotateY(135deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(5) {
        transform: rotateY(180deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(6) {
        transform: rotateY(225deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(7) {
        transform: rotateY(270deg) translateZ(250px);
    }

    .gallery-3d-item:nth-child(8) {
        transform: rotateY(315deg) translateZ(250px);
    }
}

/* OUR CLIENTS Section */
.our-clients-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.client-logo-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* OUR TEAM Section */
.our-team-section {
    padding: 5rem 0;
    background: #ffffff;
}

.team-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
}

.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.team-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-member-card {
    flex: 0 0 250px;
    text-align: center;
}

.team-member-photo {
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1rem;
    color: #666;
}

/* OUR VALUES Section */
.our-values-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.values-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.prod-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-color);
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* RAJASTHAN MARBLE & HANDICRAFT Section */
.rajasthan-marble-section {
    padding: 5rem 0;
    background: #ffffff;
}

.house-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
}

.house-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.house-image-item {
    border-radius: 8px;
    overflow: hidden;
}

/* OUR STORES Section */
.our-stores-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.stores-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.store-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    width: 100%;
}

.store-image {
    position: relative;
    overflow: hidden;
}

.store-location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold-color);
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.store-details {
    padding: 2rem;
}

.store-address {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.store-phone {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* MEDIA COVERAGES Section */
.media-coverages-section {
    padding: 5rem 0;
    background: #ffffff;
}

.media-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
}

.media-cards-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.media-cards-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.media-cards-carousel::-webkit-scrollbar {
    display: none;
}

.media-card {
    flex: 0 0 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.media-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.media-logo sup {
    font-size: 0.6em;
    font-weight: 400;
}

.media-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer .container {
    max-width: 100% !important;
    padding: 0 4rem;
    width: 100%;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-info p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact-info p strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-info a:hover {
    color: var(--gold-color);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-color);
}

.footer-section:last-child {
    align-items: flex-start;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold-color);
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    align-items: center;
    justify-content: flex-start;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: #000000;
    transform: translateY(-3px);
}

/* Map Styling */
.footer-map-container {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-map-container iframe:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: #333333;
    margin: 2rem 0;
}

.footer-locations {
    margin: 2rem 0;
}

.footer-location-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-location-section h3 i {
    color: var(--gold-color);
}

.location-group {
    margin-bottom: 1.5rem;
}

.location-group h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.location-links {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.location-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.location-links a:hover {
    color: var(--gold-color);
}

.footer-interests {
    margin: 2rem 0;
}

.footer-interests h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-interests h3 i {
    color: var(--gold-color);
}

.footer-interests ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-interests ul li {
    margin-bottom: 0.5rem;
}

.footer-interests a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-interests a:hover {
    color: var(--gold-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    margin-top: 2rem;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-nav);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo-center {
        position: static;
        transform: none;
        order: -1;
        margin-bottom: 1rem;
    }

    .nav-wrapper {
        flex-direction: column;
    }

    .nav-left,
    .nav-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-title-line-1,
    .hero-title-line-2 {
        display: block;
    }

    .hero-small-text {
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 1rem;
        padding-left: 0.5rem;
    }

    .hero-phone-icon {
        bottom: 20px;
        right: 20px;
    }

    .phone-call-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .hero-room-display {
        flex-direction: column;
        padding: 0 2%;
    }

    .hero-left-section,
    .hero-center-section,
    .hero-right-section {
        width: 100%;
        height: auto;
        position: relative;
    }

    .hero-center-section {
        order: 2;
        height: 50vh;
    }

    .hero-left-section {
        order: 1;
        height: 25vh;
    }

    .hero-right-section {
        order: 3;
        height: 25vh;
    }

    .fireplace-mantel {
        max-width: 100%;
        height: 100%;
    }

    .temple-display {
        width: 60%;
        transform: scale(0.8);
    }

    .potted-plant {
        bottom: 150px;
        right: 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .footer-section h3::after {
        left: 0;
    }

    .footer-map-container {
        height: 300px;
    }

    .footer-social-icons {
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    /* Contact Form Visual Section Responsive */
    .contact-form-visual-container {
        grid-template-columns: 1fr;
    }

    .contact-visual-left {
        min-height: 400px;
    }

    .interior-visual-placeholder {
        min-height: 400px;
    }

    .contact-form-right {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 5px;
        line-height: 1.2;
    }

    .hero-small-text {
        font-size: 0.7rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    /* About Us Responsive */
    .who-we-are-content {
        flex-direction: column;
    }

    .story-content {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .house-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        font-size: 2rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .vision-title {
        font-size: 2rem;
    }

    .journey-title {
        font-size: 2rem;
    }

    .timeline-card,
    .team-member-card,
    .media-card {
        flex: 0 0 250px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

/* --- NEW HOMEPAGE DESIGN STYLES --- */

/* 1. Dream Steps Section */
.dream-steps-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.dream-steps-title {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dream-steps-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 4rem;
}

.dream-steps-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.dream-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    flex: 1;
    min-width: 140px;
}

.dream-step-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.dream-step:hover .dream-step-circle {
    transform: scale(1.05);
}

.dream-step-label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    max-width: 150px;
    line-height: 1.4;
}

.dream-step-num {
    color: var(--gold-color);
    font-weight: 700;
    margin-right: 5px;
}

.dream-step-arrow {
    padding-top: 35px;
    width: 60px;
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .dream-steps-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .dream-step-arrow {
        display: none;
    }

    .dream-step {
        flex: 0 0 40%;
    }
}

@media (max-width: 600px) {
    .dream-step {
        flex: 0 0 100%;
    }
}

/* 2. Welcome World Section */
.welcome-world-section {
    padding: 4rem 0 0;
    text-align: center;
    background-color: #ffffff;
}

.welcome-title {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.welcome-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Pooja Room Budget Section & Dream Budget Section */
.budget-pricing-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.budget-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.budget-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    /* Wider for 4 columns */
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.budget-card {
    position: relative;
    height: 420px;
    /* Slightly taller for more premium feel */
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.budget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.budget-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.budget-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.budget-card:hover .budget-card-image {
    transform: scale(1.1);
}

.budget-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #bfa260;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 2px;
}

.budget-label {
    position: absolute;
    bottom: 25px;
    left: 20px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    width: calc(100% - 40px);
    z-index: 2;
    transition: transform 0.3s ease;
}

.budget-card:hover .budget-label {
    transform: translateY(-5px);
}

.btn-pricing {
    display: inline-block;
    background-color: #bfa260;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    border-radius: 2px;
}

.btn-pricing:hover {
    background-color: #a38848;
}

/* Full Width Grid Style */
.budget-grid-full-width {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 3rem;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .budget-grid-full-width {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .budget-grid-full-width {
        grid-template-columns: 1fr;
    }
}

/* 4. Experience Future Section */
/* 4. Experience Future Section */
.experience-future-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    overflow: hidden;
}

/* Background Abstract Shape used for glass contrast */
.experience-background-shape {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.experience-container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.experience-content {
    flex: 1;
    text-align: left;
    padding: 3rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glassmorphism Effect */
.experience-content.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    /* Subtle entry animation */
    animation: fadeInUp 1s ease-out forwards;
}

.experience-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}

.experience-image-wrapper {
    flex: 1.2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    /* Image entry animation */
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
    /* Final state handled by forwards */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.experience-image {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.experience-image-wrapper:hover .experience-image {
    transform: scale(1.05);
}

.experience-title {
    font-size: 2rem;
    /* Made larger for impact */
    color: #222;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 700;
    background: linear-gradient(45deg, #222, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.experience-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.experience-list li::before {
    content: "✦";
    /* Elegant bullet */
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-size: 1.2rem;
}

.btn-virtual-tour {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    /* Pill shape for modern look */
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-virtual-tour:hover {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .experience-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .experience-content {
        padding: 2rem;
        text-align: center;
    }

    .experience-list li {
        justify-content: center;
        text-align: left;
    }

    .experience-image-wrapper {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
}

/* 6. Completed Projects Stats */
.completed-projects-section {
    position: relative;
    padding: 8rem 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('img/JS photo mockups 13 dec AC (1)-images-22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 10rem;
    width: 100%;
}

.stat-item {
    transition: transform 0.4s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h3 {
    font-size: 3.5rem;
    /* Larger font */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold-color);
    /* Use gold for emphasis */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.9;
}

/* 7. Our Clients */
.new-clients-section {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
}

.new-clients-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #333;
}

.clients-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.clients-logos-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    width: max-content;
}

.clients-scroll {
    animation: scrollClients 25s linear infinite;
}

.clients-logos-row h3 {
    color: #888;
    font-size: 1.2rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 2px;
    margin: 0;
    transition: color 0.3s;
}

.clients-logos-row h3:hover {
    color: var(--gold-color);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo-img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 8. Explore Projects */
.explore-projects-section {
    padding: 5rem 0;
    background-color: #fff;
    text-align: center;
    padding-bottom: 8rem;
    /* Space for content above footer */
    animation: exploreFadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes exploreFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.explore-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #333;
}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.project-tab {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s;
}

.project-tab.active,
.project-tab:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.projects-scroll-wrapper {
    width: 100%;
    margin-top: 2rem;
    position: relative;
    padding: 0 60px;
    /* Space for arrows */
}

.project-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.project-nav-btn.prev {
    left: 10px;
}

.project-nav-btn.next {
    right: 10px;
}

.projects-category-list {
    display: none;
    flex-wrap: nowrap;
    overflow-x: hidden;
    /* Buttons will handle scroll */
    gap: 20px;
    padding: 20px 0 40px;
    scroll-behavior: smooth;
    width: 100%;
}

.projects-category-list.active {
    display: flex;
}

.project-scroll-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-scroll-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.6);
}

.project-image-box {
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.project-scroll-item:hover .project-image-box img {
    transform: scale(1.02);
}

.project-details {
    padding: 1.5rem;
    text-align: left;
    background: transparent;
}

.project-details h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-details p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

@media (max-width: 1100px) {
    .project-scroll-item {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 768px) {
    .projects-scroll-wrapper {
        padding: 0 15px;
    }

    .project-nav-btn {
        display: none;
    }

    .projects-category-list {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .project-scroll-item {
        flex: 0 0 85%;
    }

    .project-image-box {
        height: 450px;
    }
}

.project-grid-overlay h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.project-grid-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 1024px) {
    .budget-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid-view {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-container {
        flex-direction: column;
    }

    .stats-grid {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .budget-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid-view {
        grid-template-columns: 1fr;
    }

    .dream-steps-row {
        flex-direction: column;
        align-items: center;
    }

    .dream-step-arrow {
        display: none;
    }

    .experience-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .clients-logos-row {
        gap: 2rem;
    }

    .client-logo-img {
        height: 30px;
    }
}

/* Styling for Client Logos Row (Text Placeholders) */
.clients-logos-row h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: default;
}

.clients-logos-row h3:hover {
    color: #333;
}

/* =========================================
   New Homepage Sections (Append)
   ========================================= */

/* Happy Families Section */
.happy-families-section {
    padding: 5rem 0;
    background-color: #fffcf5;
    /* Light cream background */
    text-align: center;
}

.happy-families-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
    font-weight: 500;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    /* Space for arrows */
}

.testimonials-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none;
    /* Hide scrollbar */
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-color, #d4af37);
    transition: height 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card:hover::before {
    height: 100%;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rating-stars {
    color: #d4af37;
    font-size: 0.8rem;
    display: flex;
    gap: 4px;
}

.testimonial-content {
    padding: 1rem;
    /* Reduced from 1.25rem */
}

.testimonial-text {
    font-size: 0.85rem;
    /* Slightly smaller text */
    color: #555;
    margin-bottom: 0.5rem;
    /* Reduced margin */
    line-height: 1.4;
    font-style: italic;
    min-height: 40px;
    /* Reduced from 60px */
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-nav-btn:hover {
    background: #f8f8f8;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}


/* Before After Section */
.before-after-section {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.before-after-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
}

.before-after-text {
    flex: 1;
    min-width: 300px;
}

.before-after-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

.before-after-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.comparison-slider-wrapper {
    flex: 1.5;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-after {
    /* Initial clip path for 50% split */
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.slider-handle-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    cursor: ew-resize;
    z-index: 20;
}

.slider-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #333;
    font-size: 0.8rem;
}


/* Guides Section */
.rmh-guides-section {
    padding: 6rem 0;
    background-color: #fffcf5;
    text-align: center;
}

.section-guides-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

.rmh-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guide-card {
    background: #fff;
    border-radius: 0;
    /* Boxy look per image */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.guide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.guide-card:hover .guide-img {
    transform: scale(1.05);
}

.guide-content {
    padding: 2rem;
}

.guide-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #333;
    font-family: 'Playfair Display', serif;
    /* Or similar elegant font */
}

.guide-details {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-link {
    font-size: 0.8rem;
    color: #D4AF37;
    /* Gold */
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-btn-container {
    margin-top: 4rem;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-black:hover {
    background: #333;
}


/* Talk to Expert Form Section */
.expert-form-section {
    background: #fffcf5;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    position: relative;
}

.expert-image-side {
    flex: 1;
    min-width: 400px;
    position: relative;
    max-height: 800px;
    /* Limit height */
}

.expert-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-form-side {
    flex: 1;
    min-width: 400px;
    padding: 5rem;
    background: #fffcf5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.form-tabs {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

.form-tab {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.form-tab.active {
    color: #333;
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    /* align with border bottom */
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    /* Active underline */
}

/* Custom radio visual for tabs */
.tab-radio-circle {
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.form-tab.active .tab-radio-circle {
    border-color: #D4AF37;
}

.form-tab.active .tab-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #333;
    font-weight: 600;
}

.step-indicator.active {
    border-color: #f00;
    /* Red per image (Wait, image circle seems grey/black with red part? Just simple circle with text 1/2 is safer) */
    border-color: #333;
}

/* Step Arc (red progress) - simpler just text for now */

.expert-form h3 {
    font-family: 'Inter', sans-serif;
    /* Clean sans serif */
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-control:focus {
    border-color: #333;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 0 10px;
    background: #fff;
}

.phone-flag {
    width: 24px;
    margin-right: 8px;
}

.phone-code {
    margin-right: 10px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.phone-input-wrapper .form-control {
    border: none;
    padding-left: 0;
}

.radio-group-label {
    display: block;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.custom-radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.custom-radio-option input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #333;
}

.custom-radio-option span {
    font-size: 0.9rem;
    color: #555;
}

.btn-next {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-next:hover {
    background: #333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .expert-form-section {
        flex-direction: column;
    }

    .expert-image-side {
        height: 300px;
        min-height: auto;
        flex: none;
    }

    .expert-form-side {
        padding: 3rem 2rem;
    }
}

@media (max-width: 900px) {
    .before-after-container {
        flex-direction: column;
        padding: 2rem;
        gap: 3rem;
    }

    .comparison-slider-wrapper {
        min-height: 250px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 280px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 1rem;
    }

    .expert-form-side {
        padding: 2rem 1rem;
    }

    .form-tabs {
        gap: 1rem;
        font-size: 0.75rem;
    }
}

/* =========================================
   Consultation Section (Talk to Our Expert)
   ========================================= */
.consultation-section {
    padding: 60px 0;
    background-color: #fff;
}

.consultation-wrapper {
    display: flex;
    background-color: #FFF8E7;
    /* Light beige/cream */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Image Column */
.consultation-image-col {
    width: 45%;
    position: relative;
    min-height: 100%;
}

.consultation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Form Column */
.consultation-form-col {
    width: 55%;
    padding: 40px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header: Region Toggle & Step */
.consultation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.region-selector {
    display: flex;
    gap: 25px;
}

.region-option {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.region-option input {
    display: none;
}

.region-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    transition: color 0.3s;
}

.region-option input:checked+.region-label {
    color: #333;
}

/* Step Indicator (Top Right) */
.step-number {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border: 2px solid #dc3545;
    /* Reddish color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #dc3545;
    border-right-color: transparent;
    /* Create open circle effect */
    transform: rotate(45deg);
}

.step-number::before {
    content: '1/2';
    transform: rotate(-45deg);
}

/* Heading */
.consultation-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Form Fields */
.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.consultation-form .form-control:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.consultation-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.consultation-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.consultation-form .form-control::placeholder {
    color: #aaa;
}

/* Phone Group */
.phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.phone-group .country-select {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    height: 48px;
    gap: 8px;
    font-size: 0.95rem;
    color: #333;
}

.phone-group .country-select img {
    width: 22px;
    height: auto;
}

.phone-group .form-control {
    border: none;
    border-radius: 0;
    height: 48px;
    padding-left: 15px;
}

.phone-group:focus-within {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Radio Group */
.form-section-group {
    margin-top: 30px;
    margin-bottom: 30px;
}

.form-section-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.radio-item input[type="radio"] {
    margin-top: 3px;
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #333;
}

/* Next Button */
.btn-consultation-next {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-consultation-next:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .consultation-wrapper {
        flex-direction: column;
        max-width: 600px;
    }

    .consultation-image-col {
        width: 100%;
        height: 300px;
        order: 1;
    }

    .consultation-form-col {
        width: 100%;
        padding: 30px 20px;
        order: 2;
    }

    .step-number {
        top: 20px;
        right: 20px;
    }
}

/* 8. Guides Section & Modal Styling */
.rmh-guides-section {
    padding: 80px 0;
    background-color: #fdfaf5;
}

.section-guides-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.rmh-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.guide-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.guide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-img {
    transform: scale(1.1);
}

.guide-content {
    padding: 25px;
}

.guide-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.guide-details {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #8B6914;
}

/* Modal Styling */
.guide-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.guide-modal-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.guide-modal.active .guide-modal-content {
    transform: scale(1);
}

.close-guide-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-guide-modal:hover {
    color: #D4AF37;
}

#guideModalTitle {
    font-family: 'Cinzel', serif;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-size: 2rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 15px;
}

#guideModalText {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 992px) {
    .guide-modal-content {
        padding: 30px;
        width: 95%;
    }

    #guideModalTitle {
        font-size: 1.5rem;
    }
}

/* =========================================
   INDEX PAGE REFINEMENTS
   ========================================= */

@media (max-width: 992px) {
    .dream-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .dream-step-arrow {
        transform: rotate(90deg);
        margin: -1rem 0;
    }

    /* Dream Temple Budget Section */
    .budget-grid-full-width {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 40px 0;
    }

    .budget-card {
        position: relative;
        height: 400px;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    }

    .budget-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .budget-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .budget-card:hover .budget-card-image {
        transform: scale(1.1);
    }

    .budget-grid-full-width {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .experience-container {
        flex-direction: column;
    }

    .experience-image-wrapper {
        height: auto;
        min-height: 350px;
        order: -1;
    }

    .stats-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .dream-step-circle svg {
        width: 100px;
        height: 100px;
    }

    .budget-grid-full-width {
        grid-template-columns: 1fr;
    }

    .budget-card {
        height: 350px;
    }

    .experience-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.8rem;
    }

    .project-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .project-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .projects-scroll-wrapper {
        padding: 0 15px;
    }

    .project-nav-btn {
        display: none;
    }

    .projects-category-list {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .project-scroll-item {
        flex: 0 0 85%;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .dream-steps-title {
        font-size: 1.5rem;
    }

    .budget-card {
        height: 300px;
    }

    .experience-content {
        padding: 1.5rem;
    }

    .btn-pricing,
    .btn-virtual-tour {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   GLOBAL RESPONSIVENESS & DEVICE FRIENDLINESS
   ========================================= */

@media (max-width: 1024px) {

    /* Navigation */
    .nav-wrapper {
        justify-content: space-between;
        padding: 0 20px;
    }

    .nav-left,
    .nav-right {
        display: none !important;
        position: fixed;
        left: 0;
        width: 100%;
        background: #0f0f0f;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-left.active {
        display: flex !important;
        top: 80px;
    }

    .nav-right.active {
        display: flex !important;
        /* Positioned below nav-left in script.js */
    }

    .nav-logo-center {
        position: static;
        transform: none;
        margin: 0;
    }

    .golden-logo {
        width: 50px;
        height: 50px;
    }

    .hamburger {
        display: flex !important;
        z-index: 1001;
    }

    /* Mega Menu Mobile Specifics */
    .mega-menu-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        padding: 0;
        min-height: auto;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .nav-item.mega-menu.open .mega-menu-content {
        display: block;
    }

    .mega-menu-container {
        flex-direction: column;
    }

    .mega-menu-left {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 1rem;
        margin: 0;
    }

    .mega-menu-list a {
        text-align: center;
        padding: 0.8rem;
    }

    .mega-menu-right {
        display: none;
        /* Hide images on mobile to save space */
    }

    .nav-item.mega-menu.open .mega-menu-right {
        display: none;
    }

    /* Grids & Layouts */
    .who-we-are-content,
    .story-content,
    .values-grid,
    .contact-form-visual-container {
        flex-direction: column;
        display: flex;
        gap: 2rem;
    }

    .contact-form-visual-container {
        grid-template-columns: 1fr;
    }

    .contact-visual-left {
        height: 300px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .house-images-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Typography Scaling */
    h1,
    .hero-title {
        font-size: 2.2rem !important;
    }

    h2,
    .section-heading,
    .story-title,
    .vision-title {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    /* Container Spacing */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    /* Hero Section */
    .hero-content {
        padding: 0 15px;
    }

    .room-container {
        transform: scale(0.4) translateY(180px) !important;
    }

    /* Timeline Carousel */
    .timeline-card {
        flex: 0 0 240px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }

    /* Budget Grid */
    .budget-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stats Grid */
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    /* Consultation Form */
    .consultation-wrapper {
        flex-direction: column;
    }

    .consultation-image-col {
        height: 250px;
    }

    .consultation-form-col {
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }

    /* Products Grid */
    .products-grid,
    .articles-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .prod-card.featured {
        grid-column: span 1;
    }

    /* Experience Center Responsiveness */
    .split-images {
        grid-template-columns: 1fr !important;
        padding: 2rem 15px !important;
    }

    .split-image-container {
        height: 400px !important;
    }

    .full-banner {
        height: 350px !important;
    }

    .quote-section {
        padding: 4rem 20px !important;
    }

    .quote-text {
        font-size: 1.1rem !important;
    }

    .quote-text::before,
    .quote-text::after {
        display: none;
        /* Hide large quotes on mobile */
    }

    .experience-hero h2 {
        font-size: 2rem !important;
        letter-spacing: 4px !important;
    }

    .section-main-title {
        font-size: 1.6rem !important;
        letter-spacing: 2px !important;
    }

    /* Footer Responsiveness */
    .footer .container {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .footer-section h3::after {
        left: 0;
    }

    .footer-map-container {
        height: 300px;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }

    /* Artisans Page Responsiveness */
    .artisans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 1rem !important;
    }

    .grid-item {
        height: 250px !important;
    }

    .story-section {
        padding: 3rem 15px 2rem !important;
    }

    /* About Us - Timeline */
    .timeline-carousel {
        padding: 1rem 0;
    }

    .timeline-card {
        min-width: 260px !important;
    }

    .journey-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }

    /* Client Logos */
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Specialized Image Layouts */
    .split-image-container {
        height: 300px !important;
    }

    /* Contact Details Stacking */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .golden-logo {
        width: 50px;
        height: 50px;
    }

    .btn-virtual-tour,
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .hero-small-text {
        font-size: 0.8rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-section {
        text-align: center !important;
        align-items: center !important;
    }

    .footer-section ul li {
        text-align: center !important;
    }

    .footer-section:last-child h3,
    .footer-section:last-child ul,
    .footer-section:last-child ul li {
        text-align: center !important;
    }

    .footer-section:last-child .footer-social-icons {
        justify-content: center !important;
    }

    .artisans-grid {
        grid-template-columns: 1fr !important;
    }

    .grid-item {
        height: 350px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .artisans-hero h1 {
        font-size: 1.8rem !important;
        letter-spacing: 4px !important;
    }
}

/* Global Floating Buttons Styles */
.back-to-top-btn {
    position: fixed;
    bottom: 85px;
    /* Positioned above the call button */
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    z-index: 2001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: #fff;
    color: var(--gold-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* WhatsApp Float (Bottom Left) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    z-index: 2001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Call Float (Bottom Right) */
.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 2001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-float:hover {
    transform: scale(1.1);
    background: #b8860b;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }

    .whatsapp-float {
        left: 15px;
    }

    .call-float {
        right: 15px;
    }

    .back-to-top-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 75px;
    }
}

/* Global Mobile Drawer & Overlay - Fixed Position so they don't leak into flow */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #0a0a0a;
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 30px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transform: translateX(100%);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.active {
    visibility: visible;
    opacity: 1;
}

.drawer-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--gold-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.drawer-close:hover {
    transform: rotate(90deg);
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-item {
    margin-bottom: 1.5rem;
}

.drawer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    display: block;
    padding: 12px 0;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.drawer-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.drawer-link-wrapper .drawer-link {
    border-bottom: none;
    flex: 1;
}

.submenu-toggle {
    padding: 10px;
    color: var(--gold-color);
    cursor: pointer;
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
}

.has-submenu.active .drawer-submenu {
    max-height: 500px;
    padding: 15px 0;
}

.drawer-gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px 20px;
    scrollbar-width: none;
}

.drawer-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 140px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-img {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-card span {
    color: #ddd;
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific Media Query Adjustments */
@media (max-width: 768px) {

    /* Mobile Header Layout Fix */
    .nav-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        min-height: 70px !important;
        width: 100% !important;
    }

    /* Hide desktop menus */
    .nav-left,
    .nav-right,
    .nav-menu {
        display: none !important;
    }

    /* Reposition Logo to Left */
    .nav-logo-center {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        display: block !important;
    }

    .golden-logo {
        width: 45px !important;
        height: 45px !important;
        margin: 0 !important;
    }

    /* Hamburger on Right */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        cursor: pointer !important;
        width: 35px !important;
        height: 35px !important;
        z-index: 1001 !important;
    }

    .hamburger span {
        display: block !important;
        width: 28px !important;
        height: 2px !important;
        background-color: var(--gold-color) !important;
        transition: 0.3s ease !important;
    }


}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 3.5rem) !important;
    letter-spacing: 8px !important;
}

.artisans-hero h1 {
    font-size: 1.8rem !important;
    letter-spacing: 4px !important;
}