/* ── Cox Interior Studio Global Stylesheet ── */
:root {
    --pastel-bg: linear-gradient(135deg, #ffffff 0%, #fcf8f2 50%, #f7f1fc 100%);
    --header-bg: rgba(255, 255, 255, 0.85);
    --dark-heading: #070a13;
    --text-gray: #5e6675;
    --text-light-gray: #9ba3b2;
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow-bloom: 0 15px 45px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.06);
    --gold: #d4af37;
    --gold-muted: #c5a880;
    --red-accent: #e31e24;
    --lime-green: #dff875;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Reset & General ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background: var(--pastel-bg);
    color: var(--dark-heading);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 8px;
    display: inline-block;
}
.title-serif {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 38px;
    line-height: 1.2;
    color: var(--dark-heading);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}
.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold-muted);
    margin: 20px auto 0 auto;
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Sticky Navbar ── */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    transition: var(--transition);
}
.header-nav .container {
    max-width: 1400px;
    padding-left: 12px;
    padding-right: 12px;
}
.header-nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-box img {
    height: 38px;
    width: auto;
    object-fit: contain;
}
.logo-box span {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--dark-heading);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-menu > div {
    position: relative;
}
.nav-menu a, .dropdown-trigger {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-gray);
    letter-spacing: 0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active, .dropdown-trigger:hover {
    color: var(--dark-heading);
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}
.nav-menu > div:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    text-align: left;
}
.nav-dropdown a:hover {
    background: rgba(0,0,0,0.02);
    color: var(--dark-heading);
    padding-left: 24px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-search-bar {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 9999px;
    padding: 8px 16px 8px 36px;
    font-size: 12px;
    color: var(--dark-heading);
    width: 170px;
    outline: none;
    transition: var(--transition);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e6675' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 14px;
}
.nav-search-bar:focus {
    width: 210px;
    background-color: #ffffff;
    border-color: rgba(0,0,0,0.1);
}
.nav-bag-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.nav-bag-btn:hover {
    background: var(--dark-heading);
    color: #ffffff;
    transform: scale(1.05);
}
.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    color: var(--dark-heading);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

/* ── Hero Space & Slider ── */
.hero {
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 58px;
    line-height: 1.05;
    color: var(--dark-heading);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.hero-desc {
    color: var(--text-gray);
    font-size: 14.5px;
    max-width: 520px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.categories-slider-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
}
.categories-container {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
}
.categories-container::-webkit-scrollbar {
    display: none;
}
.category-card {
    flex: 0 0 calc(20% - 13px);
    min-width: 135px;
    aspect-ratio: 1.05;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-bloom);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: var(--transition);
    color: var(--dark-heading);
    position: relative;
    overflow: hidden;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}
.category-card span {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12.5px;
}
.category-card.gradient-orange {
    background: linear-gradient(135deg, #ff7b52 0%, #ff9e7d 100%);
    border: none;
    color: #ffffff;
}
.category-card.gradient-blue {
    background: linear-gradient(135deg, #3d6ef5 0%, #6893ff 100%);
    border: none;
    color: #ffffff;
}
.category-card.gradient-green {
    background: linear-gradient(135deg, #1fa37a 0%, #3fe3a5 100%);
    border: none;
    color: #ffffff;
}
.slider-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark-heading);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(7, 10, 19, 0.1);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.slider-arrow-btn:hover {
    background: var(--gold-muted);
    transform: translateY(-50%) scale(1.05);
}
#slider-arrow-left { left: -10px; }
#slider-arrow-right { right: -10px; }

/* ── About Cox Intro Section ── */
.about-intro-section {
    padding: 90px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-img {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.about-intro-content h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 800;
    color: var(--gold-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}
.about-intro-content h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    line-height: 1.2;
    color: var(--dark-heading);
    margin-bottom: 20px;
}
.about-intro-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark-heading);
}
.feature-badge i {
    color: var(--gold-muted);
    font-size: 18px;
}

/* ── Our Services Grid ── */
.services-section {
    padding: 90px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-item-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-bloom);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}
.service-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(0,0,0,0.08);
}
.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(197, 168, 128, 0.08);
    color: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.service-item-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 8px;
}
.service-item-card p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}
.service-link-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
}
.service-link-btn:hover {
    color: var(--gold-muted);
}

/* ── Catalog Grid & Accurate Product Cards ── */
.catalog-section {
    padding: 90px 0;
    background: #ffffff;
    border-y: 1px solid var(--border-light);
}
.catalog-layout-grid {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}
.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-design-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 14px;
    box-shadow: var(--shadow-bloom);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}
.product-design-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}
.product-card-img-frame {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img-frame img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition);
}
.product-design-card:hover .product-card-img-frame img {
    transform: scale(1.04);
}

/* Green Capsule Badge inside Card */
.product-badge-capsule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--lime-green);
    border-radius: 9999px;
    padding: 4px 4px 4px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.product-badge-capsule span {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 9.5px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}
.badge-add-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #070a13;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 10px;
    transition: var(--transition);
}
.badge-add-circle:hover {
    transform: scale(1.1);
    background: var(--gold-muted);
}
.product-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 0 4px;
}
.product-title-row h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16.5px;
    color: var(--dark-heading);
    margin: 0;
    line-height: 1.25;
}
.product-wishlist-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.product-wishlist-btn:hover, .product-wishlist-btn.active {
    color: var(--red-accent);
    transform: scale(1.1);
}
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    padding-left: 4px;
    padding-right: 4px;
}
.product-price-row .price {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 18px;
    color: var(--dark-heading);
}
.product-card-btn {
    background: #070a13;
    color: #ffffff;
    border: none;
    padding: 7px 18px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 10px;
    text-transform: capitalize;
    cursor: pointer;
    transition: var(--transition);
}
.product-card-btn:hover {
    background: var(--gold-muted);
    transform: scale(1.02);
}

/* ── Promotional Widget Cards (Furnix Style) ── */
.promo-cards-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.promo-widget-card {
    border-radius: 28px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: var(--shadow-bloom);
    transition: var(--transition);
}
.promo-widget-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.promo-widget-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 9999px;
    align-self: flex-start;
}
.promo-widget-title {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 26px;
    line-height: 1.15;
    margin-top: 10px;
}
.promo-widget-desc {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.85;
    margin-top: 6px;
}

/* Orange Discount Card with Woman Photo */
.promo-widget-card.orange-theme {
    background: linear-gradient(135deg, #ff5e36 0%, #ff8036 100%);
    color: #ffffff;
    padding-bottom: 24px;
}
.promo-widget-card.orange-theme .promo-woman-img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 140px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
.promo-widget-card.orange-theme .promo-content-wrapper {
    max-width: 55%;
    position: relative;
    z-index: 2;
}

/* Blue Legacy Card */
.promo-widget-card.blue-theme {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
}
.promo-widget-card.blue-theme .logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.promo-logo-box {
    background: #ffffff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.promo-logo-box img {
    width: 20px;
    height: auto;
}

/* White Summer Offers Card */
.promo-widget-card.white-theme {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--dark-heading);
}
.promo-widget-card.white-theme .promo-widget-badge {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
}
.promo-widget-card.white-theme .promo-widget-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 24px;
}
.promo-widget-card.white-theme .promo-widget-desc {
    color: var(--text-gray);
}
.promo-widget-card.white-theme .arrow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

/* Promo Link Circle Arrow */
.promo-circle-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.promo-widget-card.orange-theme .promo-circle-arrow { color: #ff5e36; }
.promo-widget-card.blue-theme .promo-circle-arrow { color: #1d4ed8; }
.promo-widget-card.white-theme .promo-circle-arrow {
    background: #ff5e36;
    color: #ffffff;
}
.promo-widget-card:hover .promo-circle-arrow {
    transform: scale(1.08) rotate(45deg);
}

/* ── Featured Projects ── */
.projects-section {
    padding: 90px 0;
}
.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-showcase-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-bloom);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.project-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}
.project-img-container {
    position: relative;
    aspect-ratio: 1.5;
    overflow: hidden;
}
.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.project-showcase-card:hover .project-img-container img {
    transform: scale(1.04);
}
.project-loc-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-heading);
}
.project-info-box {
    padding: 24px;
}
.project-cat-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 6px;
    display: inline-block;
}
.project-info-box h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-heading);
    margin-bottom: 12px;
}
.project-detail-link {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    gap: 4px;
}
.project-detail-link:hover {
    color: var(--gold-muted);
}

/* ── Visual Gallery & Lightbox ── */
.gallery-section {
    padding: 90px 0;
    background: #ffffff;
    border-y: 1px solid var(--border-light);
}
.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-bloom);
    border: 1px solid var(--border-light);
    cursor: pointer;
}
.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item-card:hover img {
    transform: scale(1.04);
}
.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(255, 255, 255, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.gallery-item-card:hover .gallery-hover-overlay {
    opacity: 1;
}
.gallery-hover-overlay span {
    align-self: flex-start;
    background: var(--dark-heading);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 9999px;
    margin-bottom: 6px;
}
.gallery-hover-overlay h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 15px;
    color: var(--dark-heading);
}

/* Lightbox Modal */
#lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
}
#lightbox-modal.show {
    opacity: 1;
}
.lb-image-box {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-image-box img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.lb-nav-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark-heading);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10000;
}
.lb-nav-circle:hover {
    background: var(--gold-muted);
}
#lb-btn-left { left: 30px; }
#lb-btn-right { right: 30px; }
.lb-close-circle {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    z-index: 10000;
}
.lb-close-circle:hover {
    background: var(--dark-heading);
    color: #ffffff;
    transform: rotate(90deg);
}

/* ── Customer Reviews Section ── */
.reviews-section {
    padding: 90px 0;
}
.reviews-slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-bloom);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
}
.review-stars {
    color: var(--gold-muted);
    font-size: 14px;
    margin-bottom: 14px;
}
.review-text {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    color: var(--dark-heading);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-info h4 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-heading);
}
.author-info span {
    font-size: 11px;
    color: var(--text-light-gray);
}

/* ── Auto Scrolling Brands Slider ── */
.brands-section {
    padding: 50px 0;
    background: #ffffff;
    border-y: 1px solid var(--border-light);
    overflow: hidden;
}
.brands-slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}
.brand-logo-item {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
}
.brand-logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Service Areas Grid ── */
.areas-section {
    padding: 90px 0;
}
.areas-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.area-badge-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-heading);
    box-shadow: var(--shadow-bloom);
    transition: var(--transition);
    cursor: pointer;
}
.area-badge-card:hover {
    background: var(--dark-heading);
    color: #ffffff;
    transform: scale(1.03);
}

/* ── Video Gallery Page & Section ── */
.videos-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.video-card-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-bloom);
    transition: var(--transition);
}
.video-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.video-thumbnail-box {
    position: relative;
    aspect-ratio: 1.6;
    background: #000000;
}
.video-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}
.video-card-item:hover .video-play-btn {
    background: rgba(0, 0, 0, 0.4);
    font-size: 44px;
    color: var(--lime-green);
}
.video-info-text {
    padding: 20px;
}
.video-info-text h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 6px;
}
.video-info-text span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-muted);
}

/* ── Subpages Structural Layout ── */
.subpage-hero {
    padding: 140px 0 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(252,248,242,0.6) 0%, rgba(255,255,255,0) 100%);
    border-bottom: 1px solid var(--border-light);
}
.subpage-title {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 44px;
    color: var(--dark-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.subpage-breadcrumbs {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.subpage-breadcrumbs a:hover {
    color: var(--dark-heading);
}
.subpage-content {
    padding: 80px 0;
}

/* ── Contact Section & Footer ── */
.footer-section {
    padding: 90px 0 50px 0;
    background: #fafafa;
    border-top: 1px solid var(--border-light);
}
.footer-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    margin-bottom: 60px;
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.footer-brand h2 {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 26px;
    color: var(--dark-heading);
    margin-bottom: 8px;
}
.footer-brand p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    color: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-text h4 {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark-heading);
}
.contact-text p, .contact-text a {
    font-size: 13.5px;
    color: var(--text-gray);
}
.contact-text a:hover {
    color: var(--dark-heading);
}

/* Consultation Form Card */
.enquiry-form-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 36px;
    padding: 40px;
    box-shadow: var(--shadow-bloom);
    position: relative;
    overflow: hidden;
}
.enquiry-form-card h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 8px;
}
.enquiry-form-card p {
    font-size: 12.5px;
    color: var(--text-gray);
    margin-bottom: 24px;
}
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    padding-left: 4px;
}
.form-input {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
    color: var(--dark-heading);
}
.form-input:focus {
    background: #ffffff;
    border-color: rgba(0,0,0,0.12);
}
textarea.form-input {
    min-height: 90px;
    resize: vertical;
}
.form-captcha-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: flex-end;
}
.form-btn-submit {
    background: #070a13;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 13px 20px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-btn-submit:hover {
    background: var(--gold-muted);
}
.form-msg {
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}
.footer-copyright p {
    font-size: 12.5px;
    color: var(--text-gray);
}
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.footer-social-circle:hover {
    background: var(--dark-heading);
    color: #ffffff;
    transform: scale(1.05);
}

/* ── Floating Estimate Cart Drawer ── */
.floating-cart-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.floating-cart-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #070a13;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    transition: var(--transition);
}
.floating-cart-btn:hover {
    transform: scale(1.05);
    background: var(--gold-muted);
}
.cart-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red-accent);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    display: none;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}
.cart-overlay.show {
    opacity: 1;
}
.cart-drawer {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #ffffff;
    box-shadow: -15px 0 45px rgba(0,0,0,0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}
.cart-items-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.cart-row-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0,0,0,0.01);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}
.cart-row-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
}
.cart-row-info {
    flex-grow: 1;
}
.cart-row-info h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-heading);
}
.cart-row-info span {
    font-size: 11px;
    color: var(--text-gray);
}
.cart-row-remove {
    background: none;
    border: none;
    color: var(--text-light-gray);
    cursor: pointer;
    font-size: 14px;
}
.cart-row-remove:hover {
    color: var(--red-accent);
}

/* ── Responsive Media Queries ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-layout-grid { grid-template-columns: 1fr; }
    .products-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-cards-sidebar { flex-direction: row; }
    .promo-widget-card { flex: 1; }
    .projects-showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-slider-container { grid-template-columns: repeat(2, 1fr); }
    .footer-layout { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    .nav-menu { display: none; }
    .nav-actions { display: none; }
    .menu-toggle { display: flex; }
    .hero-title { font-size: 40px; }
    .categories-slider-wrapper { padding: 0; }
    .category-card { min-width: 120px; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-cards-grid { grid-template-columns: 1fr; }
    .promo-cards-sidebar { flex-direction: column; }
    .projects-showcase-grid { grid-template-columns: 1fr; }
    .gallery-masonry-grid { grid-template-columns: 1fr; }
    .reviews-slider-container { grid-template-columns: 1fr; }
    .videos-showcase-grid { grid-template-columns: 1fr; }
    .enquiry-form-card { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-captcha-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    #lb-btn-left, #lb-btn-right { display: none; }
    .lb-image-box { max-width: 90vw; }
}

/* ── New Luxury Hero & Signature Spaces Styles ── */
.hero-luxury {
    position: relative;
    background: url('../img/gallery/hero_background.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 160px 0 100px 0;
}
.hero-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}
.hero-luxury .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-luxury-content {
    max-width: 650px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-luxury-badge {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--gold-muted);
    text-transform: uppercase;
}
.hero-luxury-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #ffffff;
}
.hero-luxury-desc {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
}
.hero-luxury-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}
.hero-btn-primary {
    background: var(--dark-heading);
    color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}
.hero-btn-primary:hover {
    background: #ffffff;
    color: var(--dark-heading);
    transform: translateY(-2px);
}
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: inline-block;
}
.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Floating info bar */
.hero-info-bar {
    position: relative;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 5;
}
.info-bar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.info-bar-val {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}
.info-bar-lbl {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.info-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Offset about-intro section if info bar is displayed */
.about-intro-section {
    padding-top: 100px;
}

/* Signature spaces showcase styles */
.signature-spaces-section {
    padding: 100px 0;
    background: #ffffff;
}
.curated-spaces-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}
.curated-space-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-bloom);
    transition: var(--transition);
}
.curated-space-card:hover {
    box-shadow: var(--shadow-card);
}
.curated-space-card.reverse-row {
    grid-template-columns: 0.9fr 1.1fr;
}
.curated-space-card.reverse-row .curated-img-frame {
    order: 2;
}
.curated-space-card.reverse-row .curated-content-box {
    order: 1;
}
.curated-img-frame {
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.curated-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.45, 1);
}
.curated-space-card:hover .curated-img-frame img {
    transform: scale(1.04);
}
.curated-content-box {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.curated-tag {
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold-muted);
    text-transform: uppercase;
}
.curated-content-box h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-heading);
    line-height: 1.2;
}
.curated-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-gray);
}
.curated-specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0;
}
.curated-spec-pill {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 6px 14px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    gap: 6px;
}
.curated-spec-pill i {
    color: var(--gold-muted);
    font-size: 10px;
}
.curated-cta-btn {
    align-self: flex-start;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-heading);
    border-bottom: 2px solid var(--dark-heading);
    padding-bottom: 2px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.curated-cta-btn:hover {
    color: var(--gold-muted);
    border-color: var(--gold-muted);
    padding-left: 4px;
}

/* Responsive fixes for Signature Spaces */
@media (max-width: 1024px) {
    .curated-space-card, .curated-space-card.reverse-row {
        grid-template-columns: 1fr;
    }
    .curated-space-card.reverse-row .curated-img-frame {
        order: 1;
    }
    .curated-space-card.reverse-row .curated-content-box {
        order: 2;
    }
    .curated-img-frame {
        height: 300px;
    }
    .curated-content-box {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .hero-luxury {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        background: transparent !important; /* Remove background on parent */
        height: auto !important;
        min-height: auto !important;
    }
    .hero-luxury::before {
        content: '' !important;
        position: relative !important;
        inset: auto !important;
        display: block !important;
        width: 100% !important;
        padding-top: 75% !important; /* Forces 4:3 Aspect Ratio for taller/more visible image */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 60%, rgba(15, 23, 42, 1) 100%), 
                    url('../img/gallery/hero_background.png') no-repeat center center !important;
        background-size: cover !important;
        z-index: 1 !important;
    }
    .hero-luxury .container {
        position: relative !important;
        z-index: 2 !important;
        background: #0f172a !important; /* Deep theme matching background */
        padding: 30px 24px 50px 24px !important;
        margin-top: 0 !important;
    }
    .hero-luxury-content {
        max-width: 100% !important;
        gap: 15px !important;
    }
    .hero-luxury-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }
    .hero-luxury-desc {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }
    .hero-luxury-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-top: 5px !important;
    }
    .hero-btn-primary, .hero-btn-secondary {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
    }
    .hero-info-bar {
        position: relative !important;
        bottom: auto !important;
        margin-top: 30px !important;
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .info-bar-divider {
        display: none !important;
    }
    .about-intro-section {
        padding-top: 60px !important;
    }

    /* Edge-to-edge Scroll-snap Carousels for Homepage Sections */
    .services-section .services-grid, 
    .signature-spaces-section .curated-spaces-grid, 
    .gallery-section .gallery-masonry-grid, 
    #videos .videos-showcase-grid, 
    #reviews .reviews-slider-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-top: 10px !important;
        padding-bottom: 25px !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none !important; /* Hide scrollbar for IE 10+ */
    }

    .services-section .services-grid::-webkit-scrollbar,
    .signature-spaces-section .curated-spaces-grid::-webkit-scrollbar,
    .gallery-section .gallery-masonry-grid::-webkit-scrollbar,
    #videos .videos-showcase-grid::-webkit-scrollbar,
    #reviews .reviews-slider-container::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar for Safari and Chrome */
    }

    /* Carousel Item Cards setup */
    .services-section .service-item-card,
    .signature-spaces-section .curated-space-card,
    .gallery-section .gallery-item-card,
    #videos .video-card-item,
    #reviews .review-card {
        min-width: 82vw !important;
        width: 82vw !important;
        max-width: 82vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }

    /* Responsive fixes for curated cards in carousel layout */
    .signature-spaces-section .curated-space-card {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .signature-spaces-section .curated-img-frame {
        height: 200px !important;
    }
    .signature-spaces-section .curated-content-box {
        padding: 24px !important;
        gap: 12px !important;
    }

    /* Hover overlay fix for touch screens (show design titles directly) */
    .gallery-section .gallery-hover-overlay {
        opacity: 1 !important;
        padding: 16px !important;
    }
    .gallery-section .gallery-hover-overlay h4 {
        font-size: 13px !important;
    }
}
