/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
    --primary-gold: #b38e5d;
    --primary-gold-hover: #9c784a;
    --primary-gold-light: #f5eedf;
    --primary-gold-rgb: 179, 142, 93;
    
    --bg-luxury-cream: #fcfaf7;
    --bg-luxury-beige: #f5f0eb;
    --bg-dark-charcoal: #1c1917;
    --bg-dark-overlay: rgba(28, 25, 23, 0.55);
    
    --text-dark: #1c1917;
    --text-muted: #6b6359;
    --text-light: #ffffff;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --font-rubik: 'Rubik', sans-serif;
    --border-gold: 1px solid rgba(179, 142, 93, 0.3);
}

body {
    font-family: var(--font-rubik);
    background-color: var(--bg-luxury-cream);
    transition: var(--transition-smooth);
}

/* Top utility bar */
.top-bar {
    background-color: #f4efe7;
    padding: 6px 0;
    font-size: 13px;
    color: #4a3f35;
}
.top-bar a { color: #4a3f35; text-decoration: none; }

/* Allow top utility bar to display on mobile; keep styling minimal for small screens */
@media (max-width: 575.98px) {
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    .top-bar .row > div { text-align: center; }
    .top-bar .row > div.text-end { text-align: left; }
    .top-bar .border-start { display: none; }
}

/* Control which top-bar items show on small screens */
.top-bar .show-on-mobile { display: none; }
.top-bar .hide-on-mobile { display: inline; }

@media (max-width: 991.98px) {
    .top-bar .hide-on-mobile { display: none !important; }
    .top-bar .show-email { display: inline-block; }
    .top-bar .social-group { display: inline-block; }
    .top-bar .whatsapp-mobile { display: none !important; }
    .top-bar .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .top-bar .row > div {
        width: auto;
        flex: 1 1 auto;
    }
    .top-bar .row > div.text-end {
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .top-bar .row > div.text-end .show-email {
        flex: 1 1 auto;
    }
    .top-bar .row > div.text-end .social-group {
        flex: 0 0 auto;
    }
}

@media (max-width: 575.98px) {
    .top-bar .show-on-mobile { display: inline-block !important; }
    .top-bar .whatsapp-mobile { font-size: 18px; color: #25d366; }
    .top-bar .show-email { display: inline-block; }
}

/* Hide whatsapp icon on very small screens when user requests it */
@media (max-width: 575.98px) {
    .top-bar .whatsapp-mobile { display: none !important; }
}

/* Fixed WhatsApp button */
.fixed-whatsapp-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 1050;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.fixed-whatsapp-btn:hover,
.fixed-whatsapp-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
}
.fixed-whatsapp-btn i {
    font-size: 1.25rem;
}

@media (max-width: 575.98px) {
    .fixed-whatsapp-btn {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }
}

/* Main navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(28,25,23,0.06);
    padding: 12px 0;
}
.navbar .container { max-width: 1200px; }
.navbar-brand { color: var(--text-dark); }
.navbar .nav-link {
    color: #222222;
    font-weight: 500;
    padding: 12px 28px;
    margin: 0 12px;
}
.navbar .nav-link.active { color: var(--primary-gold); }
.navbar .btn-consultation {
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
}

/* CTA transform section (light/dark variants kept below) */

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}
.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold) !important;
}

.dropdown-menu .dropdown-item {
    color: #222222;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: rgba(206, 171, 106, 0.1);
    color: var(--primary-gold) !important;
}

/* Consultation Trigger Button */
.btn-consultation {
    background-color: var(--primary-gold);
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 14px;
    border: none;
    padding: 10px 24px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}
/* Hover / focus states for visibility across admin and site buttons */
.btn-consultation:hover,
.btn-consultation:focus {
    background-color: var(--primary-gold-hover);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-gold-rgb), 0.12);
    outline: none;
}
.btn-consultation:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(var(--primary-gold-rgb), 0.08);
}
.cta-transform {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 70px 0 70px;
    color: #ffffff;
    overflow: hidden;
}
.cta-transform .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28,25,23,0.78) 0%, rgba(28,25,23,0.55) 60%, rgba(28,25,23,0.32) 100%);
    z-index: 1;
}
.cta-transform .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8px 20px;
}
.cta-transform .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.cta-transform .cta-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}
.cta-transform .btn-consultation {
    border-radius: 6px;
    padding: 12px 30px;
    background-color: var(--primary-gold);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.cta-transform .btn-consultation i { margin-right: 8px; }
.cta-transform .btn-whatsapp-lg {
    border-radius: 6px;
    padding: 12px 28px;
    background-color: transparent;
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18) inset;
}
@media (max-width: 767.98px) {
    .cta-transform { padding: 40px 0 50px; }
    .cta-transform .cta-title { font-size: 1.4rem; }
    .cta-transform .cta-desc { font-size: 13px; }
    .cta-transform .d-flex { flex-direction: column !important; gap: 12px; }
}

.btn-hero-primary {
    background-color: var(--primary-gold);
    color: var(--text-light);
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}
.btn-hero-primary:hover {
    background-color: var(--primary-gold-hover);
    color: var(--text-light);
    transform: translateY(-3px);
}
.btn-hero-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--text-light);
    border-radius: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    margin-left: 20px;
}
.btn-hero-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,25,23,0.65) 0%, rgba(28,25,23,0.45) 40%, rgba(28,25,23,0.18) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 60px 0;
}

.service-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
}

.service-hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.02;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.service-hero-copy {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.92);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.service-highlights {
    background-color: #f8f3e8;
    padding: 60px 0;
}

.feature-panel {
    background-color: var(--text-light);
    border: 1px solid rgba(179, 142, 93, 0.12);
    border-radius: 24px;
    padding: 28px;
    min-height: 240px;
    transition: var(--transition-smooth);
}

.feature-panel h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.feature-panel p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 0;
    font-weight: 300;
    font-size: 0.97rem;
}

.feature-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(121, 94, 64, 0.08);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(179, 142, 93, 0.12);
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 18px;
}

.feature-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.feature-panel p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Base CSS */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center bottom;
    min-height: 900px;
    padding-top: 110px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Mobile CSS ہمیشہ آخر میں */
@media (max-width: 767.98px) {

    .hero-banner {
        min-height: 420px !important;
        height: 420px !important;
        padding-top: 0 !important;
        background-position: center center;
    }

    .hero-banner .hero-overlay {
        background: rgba(56, 56, 56, 0.55) !important;
    }

    .hero-content {
        padding: 40px 20px !important;
    }
}

@media (max-width: 767.98px) {

    .hero-content {
        padding: 20px 15px !important;
    }

}
.hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}
.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}
.hero-banner .hero-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-banner .hero-title {
    font-family: var(--font-rubik);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.06;
}
.hero-banner .hero-description {
    font-family: var(--font-rubik);
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    font-weight: 400;
    max-width: 720px;
    margin-bottom: 22px;
}
.hero-banner .hero-btns .btn-hero-primary {
    background-color: var(--primary-gold);
    color: #ffffff;
    border: none;
}
.hero-banner .hero-btns .btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

/* Features Block */
.features-section {
    background-color: #FAF7F2; /* Very soft warm cream background matching the image */
    padding: 50px 0;
    border-top: 1px solid rgba(179, 142, 93, 0.15);
    border-bottom: 1px solid rgba(179, 142, 93, 0.15);
}
.feature-col {
    position: relative;
}
@media (min-width: 992px) {
    .feature-col:not(:last-child) {
        border-right: 1px solid rgba(179, 142, 93, 0.2);
    }
}
.feature-box {
    text-align: center;
    padding: 20px 25px;
    transition: var(--transition-smooth);
}
.feature-icon {
    color: var(--primary-gold);
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}
.feature-box:hover .feature-icon {
    transform: translateY(-3px);
}
.feature-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.feature-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 300;
}
.section-subtitle.d-lg-none {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}
@media (max-width: 767.98px) {
    .features-section .feature-col:nth-child(3) {
        display: none;
    }
    .feature-desc {
        display: none;
    }
    .feature-col:nth-child(2n) {
        border-left: 1px solid rgba(179, 142, 93, 0.2);
    }
    .feature-col:nth-child(1),
    .feature-col:nth-child(2) {
        padding-bottom: 25px;
    }
    .feature-col:nth-child(n+3):not(:nth-child(3)) {
        border-top: 0.5px solid rgba(179, 142, 93, 0.3);
        padding-top: 25px;
    }
    /* About section mobile spacing */
    section.py-5.my-5 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    /* Button text wrapping on mobile */
    .btn-luxury-outline {
        white-space: nowrap;
        padding: 10px 12px;
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    .btn-luxury-outline {
        display: block !important;
        width: 100% !important;
        white-space: normal;
        padding: 12px 20px !important;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    /* Remove top gap on services section */
    section.py-5[style*="var(--bg-luxury-beige)"] {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }
    /* Remove gap between about and services sections */
    section.py-5.my-5 {
        margin-bottom: 0 !important;
    }
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
}

/* Theme brown background utility */
.bg-theme-brown {
    /* slightly darker brown tint */
    background-color: rgba(var(--primary-gold-rgb), 0.14);
}
.bg-theme-brown .section-title,
.bg-theme-brown h1,
.bg-theme-brown h2,
.bg-theme-brown h3 {
    color: var(--text-dark);
}

/* About Us Section */
.about-image img {
    border: var(--border-gold);
    padding: 10px;
    background-color: var(--text-light);
}
.stat-box {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-luxury-beige);
    border-bottom: 2px solid var(--primary-gold);
}
.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services and Category Cards */
.luxury-card {
    background-color: var(--text-light);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(179, 142, 93, 0.1);
}
.luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
}
.luxury-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.luxury-card:hover .luxury-card-img {
    transform: scale(1.1);
}
.luxury-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.luxury-card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}
.luxury-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Luxury Service Cards (Image 2 style) */
.luxury-service-card-link {
    display: block;
    transition: var(--transition-smooth);
}
.luxury-service-card {
    background-color: var(--text-light);
    border: var(--border-gold);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.luxury-service-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 85%; /* Taller aspect ratio to scale height alongside expanded width */
    background-color: var(--bg-luxury-beige);
}
.luxury-service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.luxury-service-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px; /* Increased padding */
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}
.luxury-service-card-title {
    font-size: 16px; /* Increased font-size */
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
}
.luxury-service-card-arrow {
    width: 38px; /* Increased arrow circle size */
    height: 38px; /* Increased arrow circle size */
    border-radius: 50%;
    border: 1px solid rgba(179, 142, 93, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 13px; /* Slightly larger icon */
    transition: var(--transition-smooth);
}
/* Hover Effects */
.luxury-service-card-link:hover .luxury-service-card {
    box-shadow: 0 12px 30px rgba(179, 142, 93, 0.15);
    transform: translateY(-4px);
}
.luxury-service-card-link:hover .luxury-service-card-img {
    transform: scale(1.06);
}
.luxury-service-card-link:hover .luxury-service-card-arrow {
    background-color: var(--primary-gold);
    color: var(--text-light);
    border-color: var(--primary-gold);
    transform: translateX(3px);
}
.luxury-service-card-link:hover .luxury-service-card-title {
    color: var(--primary-gold);
}

/* Overlay Collection Cards */
.collection-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    border: var(--border-gold);
    background-color: var(--bg-dark-charcoal);
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition-smooth);
}
.collection-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0) 100%);
    color: var(--text-light);
    transition: var(--transition-smooth);
}
.collection-card:hover img {
    transform: scale(1.08);
    opacity: 0.55;
}
.collection-card-title {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 5px;
}
.collection-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.collection-card:hover .collection-card-overlay {
    padding-bottom: 40px;
}
.collection-card:hover .collection-card-desc {
    max-height: 100px;
    margin-top: 10px;
}

/* Curated collections banner styling — matches banner_2.png */
.curated-collections-section {
    background-color: #FAF7F2;
    background-size: cover;
    background-position: 85% center; /* Shift the background image slightly left */
    background-repeat: no-repeat;
    min-height: 600px;
    padding: 100px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(179, 142, 93, 0.15);
    border-bottom: 1px solid rgba(179, 142, 93, 0.15);
}



.curated-subtitle-wrapper {
    gap: 15px;
}
.curated-line {
    display: inline-block;
    height: 1px;
    width: 120px;
    background-color: var(--primary-gold);
    opacity: 0.6;
}
.curated-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.curated-diamond-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.curated-diamond-svg {
    width: 10px;
    height: 10px;
    opacity: 0.8;
}
/* Serif font for title — matches image */
.curated-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: #1c1917 !important;
}
.text-primary-gold {
    color: var(--primary-gold) !important;
}
.curated-desc {
    font-size: 16px;
    color: #5c534e !important;
    line-height: 1.8;
    max-width: 600px;
    font-weight: 300;
}
.btn-curated-dark {
    background-color: #242220;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 16px 42px;
    border-radius: 0;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    border: none;
}
.btn-curated-dark:hover {
    background-color: var(--primary-gold);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 142, 93, 0.3);
}

/* Bottom Features Bar — solid cream background, separated from the image */
.curated-bottom-features {
    width: 100%;
    background-color: #FAF7F2;
    border-top: 1px solid rgba(179, 142, 93, 0.2);
    border-bottom: 1px solid rgba(179, 142, 93, 0.2);
    position: relative;
    z-index: 5;
}

.curated-feature-col {
    position: relative;
    padding: 15px 10px;
}
@media (min-width: 768px) {
    .curated-feature-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background-color: rgba(179, 142, 93, 0.25);
    }
}
.curated-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.curated-feature-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.curated-feature-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1c1917;
    margin-bottom: 2px;
}
.curated-feature-subtitle {
    font-size: 12px;
    color: #6e645e;
    font-weight: 300;
}

/* Premium WhatsApp and Details Buttons */
.btn-luxury-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn-luxury-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.btn-whatsapp-inquiry {
    background-color: var(--primary-gold);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}
.btn-whatsapp-inquiry:hover {
    background-color: #25d366; /* Changes to WhatsApp Green on hover for feedback */
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Large detail page WhatsApp button */
.btn-whatsapp-lg {
    background-color: #25d366;
    color: var(--text-light);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp-lg:hover {
    background-color: #1ebea5;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Testimonials Section & Slider Styling */
.testimonials-section {
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(179, 142, 93, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(179, 142, 93, 0.05) 0%, transparent 45%);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(179, 142, 93, 0.1);
    border-bottom: 1px solid rgba(179, 142, 93, 0.1);
    overflow: hidden;
}
.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}
.testimonials-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.testimonial-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}
@media (min-width: 576px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (min-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc(33.333% - 20px);
    }
}

.new-testimonial-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(179, 142, 93, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.new-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(179, 142, 93, 0.09);
}
.new-testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.new-testimonial-avatar-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    padding: 3px;
    background-color: #ffffff;
    flex-shrink: 0;
    margin-right: 15px;
}
.new-testimonial-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.new-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1c1917;
}
.new-testimonial-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.new-testimonial-social-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.new-testimonial-social-badge.google {
    background-color: #ea4335;
}
.new-testimonial-social-badge.facebook-f {
    background-color: #1877f2;
}
.new-testimonial-social-badge.instagram {
    background-color: #e1306c;
}
.new-testimonial-social-badge:not(.google):not(.facebook-f):not(.instagram) {
    background-color: var(--primary-gold);
}
.new-testimonial-card:hover .new-testimonial-social-badge {
    transform: scale(1.1);
}
.new-testimonial-body {
    position: relative;
}
.new-testimonial-quote-mark {
    color: rgba(179, 142, 93, 0.25);
    font-size: 36px;
    font-family: 'Georgia', serif;
    line-height: 1;
    margin-bottom: 8px;
    display: inline-block;
}
.new-testimonial-text {
    font-size: 14.5px;
    color: #5a544d;
    line-height: 1.8;
    font-weight: 300;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
}
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(179, 142, 93, 0.25);
    transition: var(--transition-smooth);
}
.slider-arrow:hover {
    background-color: #9d7b4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 142, 93, 0.4);
}
.slider-arrow svg {
    transition: var(--transition-smooth);
}
.slider-arrow:hover svg {
    transform: scale(1.05);
}
.slider-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}
.indicator-line {
    display: inline-block;
    width: 16px;
    height: 4px;
    background-color: rgba(179, 142, 93, 0.25);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.indicator-line.active {
    width: 36px;
    background-color: var(--primary-gold);
}

/* Served Locations */
.served-locations {
    padding: 85px 0;
    background-color: var(--bg-luxury-cream);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(179, 142, 93, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(179, 142, 93, 0.05) 0%, transparent 40%);
    border-top: 1px solid rgba(179, 142, 93, 0.1);
    border-bottom: 1px solid rgba(179, 142, 93, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.location-badge {
    background-color: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.12);
    border-radius: 20px;
    padding: 30px 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(179, 142, 93, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.location-badge:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(179, 142, 93, 0.1);
}
.location-icon {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}
.location-badge:hover .location-icon {
    transform: scale(1.15);
}
.location-name {
    font-weight: 600;
    font-size: 13.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.12em;
}

/* FAQ Accordion Styling */
.faq-section {
    background-color: var(--bg-luxury-cream);
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(179, 142, 93, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(179, 142, 93, 0.03) 0%, transparent 40%);
    padding: 90px 0;
    border-top: 1px solid rgba(179, 142, 93, 0.1);
    border-bottom: 1px solid rgba(179, 142, 93, 0.1);
    position: relative;
    overflow: hidden;
}
.faq-accordion .accordion-item {
    background-color: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.15);
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(179, 142, 93, 0.01);
    transition: var(--transition-smooth);
}
.faq-accordion .accordion-item:hover {
    border-color: rgba(179, 142, 93, 0.3);
    box-shadow: 0 6px 20px rgba(179, 142, 93, 0.04);
}
.faq-accordion .accordion-button {
    font-size: 15px;
    font-weight: 500;
    color: #4a3f35;
    background-color: #ffffff;
    padding: 18px 24px;
    border-radius: 8px !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(179, 142, 93, 0.1);
    border-radius: 8px 8px 0 0 !important;
}
.faq-accordion .accordion-button::after {
    content: '+';
    background-image: none;
    font-family: var(--font-rubik);
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    transform: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\2212'; /* Unicode minus sign */
    color: var(--primary-gold);
    transform: none;
}
.faq-accordion .accordion-body {
    padding: 22px 24px;
    font-size: 14px;
    color: var(--text-muted);
    background-color: #ffffff;
    line-height: 1.75;
}

/* CTA Transform Section (Split Mockup Style) */
.cta-transform-split {
    position: relative;
    background-color: #FAF8F6;
    overflow: hidden;
}

/* Bottom CTA Section (used above footer) */
.cta-transform {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 0 80px;
    color: #ffffff;
    overflow: hidden;
}
.cta-transform .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28,25,23,0.72) 0%, rgba(28,25,23,0.45) 60%);
    z-index: 1;
}
.cta-transform .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8px 20px;
}
.cta-transform .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: none;
}
.cta-transform .cta-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}
.cta-transform .btn-consultation {
    border-radius: 6px;
    padding: 12px 28px;
}
.cta-transform .btn-whatsapp-lg {
    border-radius: 6px;
    padding: 12px 28px;
}
@media (max-width: 767.98px) {
    .cta-transform { padding: 40px 0 50px; }
    .cta-transform .cta-title { font-size: 1.4rem; }
    .cta-transform .cta-desc { font-size: 13px; }
    .cta-transform .d-flex { flex-direction: column !important; gap: 12px; }
}
.cta-left-col {
    position: relative;
    padding: clamp(60px, 8vw, 100px) clamp(25px, 6vw, 90px);
    background-color: #FAF8F6;
    display: flex;
    align-items: flex-start;
}
.cta-decor-curves {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(150px, 20vw, 250px);
    height: clamp(150px, 20vw, 250px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M-10,30 Q30,30 30,-10 M-10,40 Q40,40 40,-10 M-10,50 Q50,50 50,-10 M-10,60 Q60,60 60,-10 M-10,70 Q70,70 70,-10 M-10,80 Q80,80 80,-10' fill='none' stroke='rgba(179, 142, 93, 0.12)' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}
.cta-left-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    width: 100%;
}
.cta-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 20px;
}
.cta-split-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5.2vw, 3.8rem);
    font-weight: 600;
    color: #4a3a2d;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.cta-split-desc {
    font-size: 15.5px;
    color: #6b6359;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 35px;
}
.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.cta-feature-item {
    position: relative;
    padding-right: 10px;
}
.cta-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(179, 142, 93, 0.2);
}
.cta-feature-icon {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}
.cta-feature-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
}
.cta-btns-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}
.btn-cta-consult {
    background-color: var(--primary-gold);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(179, 142, 93, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-cta-consult:hover {
    background-color: #9d7b4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 142, 93, 0.35);
    color: #ffffff;
}
.btn-cta-wa {
    background-color: #ffffff;
    color: #4a3f35;
    border: 1px solid rgba(179, 142, 93, 0.35);
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-cta-wa:hover {
    background-color: var(--bg-luxury-cream);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(179, 142, 93, 0.05);
}

/* Collections Page Styling */
.collections-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 60px 0 40px;
}
.collections-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 1;
}
.collections-hero-image {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}
.collections-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,25,23,0.28) 0%, rgba(28,25,23,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}
.collections-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0.22);
    z-index: 1;
}
.collections-hero .container,
.collections-hero-inner {
    position: relative;
    z-index: 2;
}
.collections-hero-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
.collections-hero-copy-col {
    max-width: 640px;
}
.collections-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 20px;
    max-width: 100%;
    color: #ffffff;
}
.collections-hero-copy {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.8;
}
.collections-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.collections-hero-panel {
    background-color: rgba(255,255,255,0.95);
    border-radius: 24px;
    overflow: hidden;
    padding: 22px;
    width: 100%;
    display: grid;
    gap: 14px;
    min-width: 280px;
}
.collections-hero-panel-item {
    background-color: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.13);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
}
.collections-hero-panel-item h3 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #3c3228;
}
.collections-hero-panel-item p {
    margin: 0;
    color: #7a6b61;
    font-size: 13px;
    font-weight: 500;
}
.section-copy {
    margin-top: 14px;
    font-size: 1rem;
}
.collections-card {
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
}
.collections-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-luxury-beige);
}
.collections-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.collections-card:hover .collections-card-img {
    transform: scale(1.06);
}
.collections-card .card-body {
    padding: 28px;
}
.collections-cta {
    background-color: #9f775e;
    border-top: 1px solid rgba(179, 142, 93, 0.12);
}
.collections-cta .section-subtitle {
    margin-bottom: 16px;
    color: #d6ac70;
}
.collections-cta .section-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    color: #FFFFFF;
}
.collections-cta .section-copy {
    margin-bottom: 0;
    color: #F5EFE8 !important;
}
@media (max-width: 992px) {
    .collections-hero {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .collections-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .collections-hero-copy-col {
        max-width: 100%;
    }
    .collections-hero-stats-col {
        width: 100%;
    }
    .collections-hero-panel {
        grid-template-columns: 1fr;
    }
}
.cta-satisfaction-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #6b6359;
}
.cta-satisfaction-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}
.cta-satisfaction-item i {
    color: var(--primary-gold);
    font-size: 14px;
}
.cta-satisfaction-divider {
    color: rgba(179, 142, 93, 0.4);
}
    .cta-right-col {
        position: relative;
        background-size: cover;
        background-position: center;
        min-height: 520px;
    }
    .cta-image-fade {
        position: absolute;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background: linear-gradient(90deg, #FAF8F6 0%, transparent 100%);
        pointer-events: none;
    }
@media (max-width: 991.98px) {
    .cta-right-col {
        display: none !important;
    }
    .cta-image-fade {
        display: none !important;
    }
    .cta-left-col {
        width: 100% !important;
        max-width: 100% !important;
    }
    .cta-left-col {
        padding: 80px 25px;
        justify-content: center;
    }
    .cta-left-content {
        max-width: 600px;
    }
    .cta-features-grid {
        display: none !important;
    }
}

/* Bottom Counter Bar */
.cta-counter-bar {
    background-color: #4e4235;
    padding: 24px 0 18px;
    color: #ffffff;
    position: relative;
    z-index: 10;
}
.cta-counter-bar .row {
    flex-wrap: nowrap;
    justify-content: space-between;
}
.cta-counter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 0;
    padding: 8px 0;
}
.cta-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}
.cta-counter-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}
.cta-counter-details {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.cta-counter-number-wrapper {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    font-family: var(--font-rubik);
}
.cta-counter-number,
.cta-counter-number-static {
    color: inherit;
}
.cta-counter-label {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1px;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .cta-counter-bar {
        display: none !important;
        padding: 30px 0 10px;
    }
    .cta-counter-item {
        margin-bottom: 25px;
    }
    .cta-counter-item::after {
        display: none !important;
    }
}

/* Homepage mobile responsiveness fixes */
@media (max-width: 991.98px) {
    .hero-banner {
        min-height: 680px;
        padding-top: 80px;
    }
    .hero-banner .hero-content {
        padding: 28px 20px;
    }
    .hero-banner .hero-description {
        max-width: 100%;
    }
    .hero-banner .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
        width: 100%;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    .hero-banner .hero-btns > .btn-hero-primary,
    .hero-banner .hero-btns > .btn-hero-secondary,
    .hero-banner .hero-btns > a,
    .hero-banner .hero-btns > button {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        flex: none !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .hero-banner .hero-btns > .btn-hero-secondary {
        min-width: auto !important;
    }
    .curated-collections-section {
        min-height: auto;
        padding: 55px 0 35px;
        background-position: center top;
    }
    .curated-subtitle-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
    .curated-line {
        width: 80px;
    }
    .curated-subtitle {
        white-space: nowrap;
        font-size: 11px;
        letter-spacing: 0.15em;
        padding: 0 8px !important;
    }
    .curated-desc {
        max-width: 100%;
    }
    .btn-curated-dark {
        width: fit-content;
    }
    .blinds-left-content,
    .blinds-right-content {
        width: 100%;
        text-align: center;
    }
    .blinds-image-wrapper {
        margin-top: 0;
    }
    .blinds-subtitle-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
    .blinds-line {
        display: none;
    }
    .blinds-subtitle {
        font-size: 11px;
        letter-spacing: 0.15em;
    }
    .blinds-features-bar .blinds-feature-item {
        display: none;
    }
}
    .blinds-float-card {
        position: static;
        right: auto;
        top: auto;
        width: auto;
        max-width: 320px;
        margin: 0 auto 24px;
        box-shadow: 0 15px 35px rgba(28, 25, 23, 0.08);
    }
    .blinds-stats-card {
        gap: 14px;
    }
    .blinds-stat-divider {
        display: none;
    }
    .blinds-feature-divider {
        display: none;
    }
    .blinds-types-row {
        gap: 14px;
    }
    .blinds-desc,
    .blinds-type-label {
        max-width: 100%;
    }
    .btn-explore-blinds {
        width: 100%;
    }
    @media (max-width: 991.98px) {
        /* Transformations section mobile spacing */
        section.py-5.bg-white.border-bottom {
            padding-top: 0 !important;
        }
        /* Transformation feature boxes mobile layout */
        section.py-5.bg-white.border-bottom .col-lg-3.col-sm-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }
        .ba-feature-desc {
            display: none;
        }
    }
    @media (max-width: 991.98px) {
        /* CTA split layout on mobile */
        .cta-transform-split .row {
            flex-wrap: wrap;
        }
        .cta-left-col {
            padding: 40px 20px;
            flex: 0 0 100%;
            max-width: 100%;
            order: 2;
        }
        /* Show CTA right column image on mobile */
        .cta-right-col {
            display: block !important;
            min-height: 300px;
            flex: 0 0 100%;
            max-width: 100%;
            background-size: cover;
            background-position: center;
            order: 1;
        }
        .cta-image-fade {
            width: 100%;
        }
        .cta-features-grid {
            grid-template-columns: 1fr;
        }
        .cta-feature-item {
            padding-right: 0;
        }
        .cta-btns-row {
            flex-direction: column;
        }
        .btn-cta-consult,
        .btn-cta-wa {
            width: 100%;
            justify-content: center;
        }
        .cta-satisfaction-row {
            justify-content: center;
        }
        .cta-counter-bar {
            padding: 25px 0 10px;
        }
        .cta-counter-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
        }
        .cta-counter-item:not(:last-child)::after {
            display: none;
        }
    }

    @media (max-width: 767.98px) {
    .hero-banner {
        min-height: 520px;
        padding-top: 90px;
    }
    .hero-banner .hero-content {
        padding: 24px 18px;
    }
    .hero-banner .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-banner .hero-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .feature-box {
        padding: 20px;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.3rem);
    }
    .about-image img {
        border-radius: 16px;
    }
    .stat-box {
        padding: 18px;
    }
    .stat-number {
        font-size: 28px;
    }
    .stat-label {
        font-size: 12px;
    }
    .blinds-types-row {
        gap: 12px;
    }
    .blinds-feature-item,
    .blinds-stat-col {
        min-width: 100%;
    }
    .blinds-promo-img,
    .ba-slider-img,
    .about-image img,
    .collections-card-img,
    .collection-card img,
    .luxury-service-card-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
    .ba-slider-container {
        height: 340px;
    }
    .ba-slider-handle {
        touch-action: pan-y;
    }
    .ba-handle-circle {
        width: 42px;
        height: 42px;
    }
    .cta-left-col {
        padding: 30px 18px;
    }
    .cta-split-title {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }
    .cta-split-desc {
        font-size: 14px;
    }
    .cta-features-grid {
        gap: 12px;
    }
    .cta-counter-icon {
        font-size: 26px;
    }
    .cta-counter-number-wrapper {
        font-size: 20px;
    }
    .cta-counter-label {
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .blinds-types-row {
        gap: 10px;
    }
    .blinds-type-item {
        flex: 0 0 calc(50% - 5px) !important;
        min-width: unset !important;
    }
    .blinds-type-circle {
        width: 60px;
        height: 60px;
    }
    .blinds-type-circle svg {
        width: 26px;
        height: 26px;
    }
    .blinds-type-label {
        font-size: 11px;
    }
    .new-testimonial-card {
        padding: 28px 18px;
    }
    .served-locations .location-badge {
        padding: 22px 12px;
    }
    .faq-section .accordion-body {
        padding: 18px 20px;
    }
    .cta-left-col {
        padding: 28px 16px;
    }
    .cta-btns-row {
        gap: 12px;
    }
    .cta-counter-item {
        gap: 6px;
    }
}

/* Footer styling */
footer {
    background-color: var(--bg-dark-charcoal);
    color: rgba(255,255,255,0.65);
    padding: 80px 0 30px;
    font-size: 14px;
    border-top: 3px solid var(--primary-gold);
}
footer h5 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}
footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition-smooth);
}
footer a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}
footer ul {
    list-style: none;
    padding-left: 0;
}
footer ul li {
    margin-bottom: 12px;
}
.footer-logo {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition-smooth);
}
.footer-social-icons a:hover {
    background-color: var(--primary-gold);
    color: var(--text-light);
    transform: translateY(-3px);
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}

/* Consultation Modal Popup */
.modal-content {
    border-radius: 0;
    border: var(--border-gold);
    background-color: var(--bg-luxury-cream);
}
.modal-header {
    border-bottom: 1px solid rgba(179, 142, 93, 0.2);
    padding: 25px 30px 15px;
}
.modal-title {
    font-size: 22px;
    font-weight: 500;
}
.modal-body {
    padding: 30px;
}
.form-control, .form-select {
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.12);
    padding: 12px 15px;
    background-color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-smooth);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(179, 142, 93, 0.15);
    background-color: var(--text-light);
}
.form-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

/* Product details gallery slider layout */
.product-gallery {
    margin-bottom: 30px;
}
.product-main-img {
    border: var(--border-gold);
    background-color: var(--text-light);
    padding: 10px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.product-thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    padding: 3px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}
.product-thumb-img.active,
.product-thumb-img:hover {
    border-color: var(--primary-gold);
}

/* Admin Dashboard CSS layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 260px;
    background-color: var(--bg-dark-charcoal);
    color: var(--text-light);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 2px solid var(--primary-gold);
}
.admin-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex-grow: 1;
}
.admin-menu-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition-smooth);
}
.admin-menu-item a:hover,
.admin-menu-item.active a {
    color: var(--text-light);
    background-color: rgba(179, 142, 93, 0.15);
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
}
.admin-content-area {
    flex-grow: 1;
    background-color: #faf8f5;
    padding: 40px;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.admin-card-stat {
    background-color: var(--text-light);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}
.admin-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--primary-gold-light);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.analytics-chart {
    min-height: 320px;
}

.analytics-card {
    border-radius: 1rem;
    border: 1px solid rgba(217, 204, 187, 0.55);
    box-shadow: 0 18px 40px rgba(69, 58, 43, 0.08);
}

.analytics-card h3 {
    letter-spacing: -0.02em;
}

.analytics-chart-card {
    min-height: 260px;
    position: relative;
}

.analytics-chart-card canvas {
    width: 100% !important;
    height: 100% !important;
    border-radius: 1rem;
}

.analytics-range-select {
    min-width: 145px;
    border-radius: 0.85rem;
    border-color: rgba(193, 175, 150, 0.45);
    color: #675742;
    background-color: #fcfbf8;
}

.analytics-range-select:focus {
    box-shadow: 0 0 0 0.15rem rgba(179, 142, 93, 0.18);
}

.analytics-chart-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.analytics-line-label .analytics-day {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.analytics-line-label .analytics-date {
    font-size: 0.75rem;
    margin-top: 2px;
}

.dashboard-report-form {
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.75rem;
}

.dashboard-report-form .btn-group {
    border-radius: 0.75rem;
    overflow: hidden;
}

.dashboard-report-form .btn-group .btn {
    border-radius: 0;
    padding: 0.55rem 0.95rem;
    font-weight: 600;
    font-size: 0.92rem;
    min-width: 130px;
    border: 1px solid rgba(0,0,0,0.08);
}

.dashboard-report-form .btn-group .btn:not(:last-child) {
    border-right: 0;
}

.dashboard-report-form .btn-group .btn-light {
    background-color: #f3f4f6;
    color: #212529;
}

.dashboard-report-form .btn-group .btn-success {
    background-color: #198754;
    color: #fff;
    border-color: #198754;
}

.dashboard-report-form .dashboard-date-input {
    max-width: 180px;
    border-radius: 0.75rem;
    padding: 0.45rem 0.75rem;
    min-width: 180px;
}

.dashboard-report-form .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.dashboard-report-form label {
    margin-bottom: 0;
}

/* Admin table & actions tweaks */
.admin-content-area .table-responsive form { margin-bottom: 0; }
.admin-content-area table.table thead th { vertical-align: middle; }
.admin-content-area table.table td { vertical-align: middle; }
.admin-content-area input[type="number"].form-control { padding: 6px 8px; height: 36px; }
.admin-content-area .btn-group .btn { padding: 4px 8px; line-height: 1; }
.admin-content-area .btn-sm { border-radius: 4px; }
.admin-content-area .table .btn-danger { background-color: #d9534f; border-color: #d43f3a; }
.admin-content-area .table .btn-light { background-color: #ffffff; }
.admin-content-area .table .btn {
    min-width: 60px;
}
.admin-content-area .table td .btn-sm {
    min-width: 95px;
    padding: 0.32rem 0.8rem;
    white-space: nowrap;
}
.admin-content-area .table td .btn-sm i {
    margin-right: 0.35rem;
}
.admin-content-area .table td .form-control-sm { width: 72px; }
.admin-content-area .table-responsive > form .btn-primary { background-color: #0d6efd; border-color: #0b5ed7; }
.admin-content-area .table-responsive > form .btn-primary:hover { background-color: #0b5ed7; }

/* Small screens adjustments */
@media (max-width: 767.98px) {
    .admin-content-area table.table thead th:first-child { display: none; }
    .admin-content-area table.table td:first-child { display: none; }

    /* Inquiry details table: keep it wide enough to trigger the shared scrollbar */
    .inquiry-detail-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        padding-bottom: 12px;
        scrollbar-width: thin;
        scrollbar-color: rgba(141,94,41,0.6) rgba(0,0,0,0.05);
    }
    .inquiry-detail-responsive table {
        min-width: 560px;
    }
    .inquiry-detail-responsive th,
    .inquiry-detail-responsive td {
        white-space: nowrap;
    }
}

@media (max-width: 991.98px) {
    .admin-wrapper {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 260px;
        max-width: 85%;
        border-right: none;
        border-bottom: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 1050;
        box-shadow: 4px 0 18px rgba(0, 0, 0, 0.15);
        background-color: var(--bg-dark-charcoal);
    }
    body.admin-sidebar-open .admin-sidebar {
        transform: translateX(0);
    }
    .admin-sidebar-header {
        padding: 16px;
    }
    .admin-sidebar-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 46px !important;
        min-width: 46px !important;
        height: 46px !important;
        padding: 0 !important;
        border: 1px solid rgba(0,0,0,0.12) !important;
        color: #212529 !important;
        background-color: rgba(255,255,255,0.95) !important;
        font-size: 1rem !important;
        text-align: center;
        border-radius: 8px !important;
        box-shadow: 0 1px 6px rgba(0,0,0,0.08) !important;
        z-index: 1100;
    }
    /* When sidebar open, hide the header hamburger to avoid overlap */
    body.admin-sidebar-open .admin-sidebar-toggle {
        display: none !important;
    }
    .admin-sidebar-close {
        display: none;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        background: transparent;
        color: #ffffff;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .admin-sidebar-header {
        position: relative;
    }
    .admin-sidebar-close {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 1160;
    }
    body.admin-sidebar-open .admin-sidebar-close {
        display: inline-flex;
    }
    .admin-sidebar-toggle i {
        margin-right: 0 !important;
    }
    .admin-sidebar-toggle:hover,
    .admin-sidebar-toggle:focus {
        background-color: rgba(255,255,255,1) !important;
        color: #212529 !important;
    }
    .admin-sidebar-menu {
        padding: 12px 0 18px;
    }
    .admin-sidebar-menu .admin-menu-item a {
        padding: 10px 18px;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
    }
    .admin-sidebar-menu .admin-menu-item.active a,
    .admin-sidebar-menu .admin-menu-item a:hover {
        background-color: rgba(179, 142, 93, 0.12);
        border-left: none;
        border-bottom-color: rgba(255,255,255,0.16);
    }
    .admin-sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    body.admin-sidebar-open .admin-sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }
    .admin-content-area {
        padding: 24px;
        margin-left: 0;
    }
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 28px;
    }
    .admin-header .d-flex {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .admin-header .text-end {
        text-align: left !important;
        width: 100%;
    }
    /* Improve Recent Customer Inquiries layout on small screens */
    .admin-content-area .card .d-flex.justify-content-between.align-items-center {
        width: 100%;
    }
    .admin-content-area .card .d-flex.justify-content-between.align-items-center .btn {
        min-width: 0;
    }
    .admin-content-area .card .d-flex.justify-content-between.align-items-center > a.btn {
        align-self: stretch;
    }
    .admin-card-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 18px;
    }
    .admin-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .dashboard-report-form {
        gap: 0.75rem;
    }
    .dashboard-report-form .dashboard-date-input {
        max-width: 100%;
        min-width: 100%;
    }
    .dashboard-report-form .btn-group .btn {
        min-width: auto;
        padding: 0.55rem 0.8rem;
    }
    .admin-content-area .table.table td .btn-sm {
        min-width: auto;
        white-space: normal;
    }
    .admin-content-area .table.table th,
    .admin-content-area .table.table td {
        padding: 0.75rem 0.65rem;
    }

    /* Make inquiry table and controls friendlier on narrow screens */
    .admin-content-area .card .d-flex.justify-content-between.align-items-center.mb-4 {
        /* keep header in a row but allow wrapping when needed */
        flex-wrap: wrap;
        align-items: center;
        gap: 0.6rem;
    }
    .admin-content-area .card .d-flex.justify-content-between.align-items-center.mb-4 a.btn {
        width: auto;
        margin-left: auto;
        text-align: center;
    }
    .admin-content-area .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* Visible horizontal scrollbar styling for inquiries table */
    .admin-content-area .table-responsive {
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: rgba(141,94,41,0.6) rgba(0,0,0,0.05);
    }
    .admin-content-area .table-responsive::-webkit-scrollbar {
        height: 10px;
    }
    .admin-content-area .table-responsive::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.03);
        border-radius: 10px;
    }
    .admin-content-area .table-responsive::-webkit-scrollbar-thumb {
        background: rgba(141,94,41,0.6);
        border-radius: 10px;
        box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    }

    /* Custom visible scrollbar container for horizontal tables */
    .admin-content-area .table-responsive {
        position: relative;
    }

    .admin-content-area .table-responsive .custom-hscroll,
    .admin-content-area .custom-hscroll {
        position: absolute;
        left: 8px;
        right: 8px;
        bottom: 6px;
        height: 8px;
        background: rgba(0,0,0,0.04);
        border-radius: 6px;
        display: none; /* shown via JS when needed */
        z-index: 1200;
    }

    .admin-content-area .table-responsive .custom-hscroll .hthumb,
    .admin-content-area .custom-hscroll .hthumb {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 40px;
        background: rgba(141,94,41,0.7);
        border-radius: 6px;
        transition: left 0.08s linear;
    }

    .admin-content-area .table-responsive .custom-hscroll.no-overflow .hthumb,
    .admin-content-area .custom-hscroll.no-overflow .hthumb {
        background: rgba(141,94,41,0.35);
        cursor: default;
    }
    .admin-content-area .table-responsive .custom-hscroll.no-overflow,
    .admin-content-area .custom-hscroll.no-overflow {
        opacity: 0.9;
    }

/* Force-visible scrollbar & nav for dashboard inquiries (override global resets) */
.admin-content-area .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(141,94,41,0.6) rgba(0,0,0,0.05) !important;
}

/* Mobile tweaks specifically for Inquiry Activity / Analytics card */
@media (max-width: 767.98px) {
    .analytics-card {
        padding: 14px !important;
        border-radius: 0.8rem !important;
    }
    .analytics-card .d-flex.flex-column.flex-sm-row.align-items-start.align-items-sm-center.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .dashboard-report-form {
        width: 100%;
        gap: 0.6rem;
    }
    .dashboard-report-form .btn-group {
        width: 100%;
        display: flex;
    }
    .dashboard-report-form .btn-group .btn {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0.45rem 0.65rem;
        font-size: 0.86rem;
    }
    .dashboard-report-form label {
        width: 100%;
    }
    .dashboard-report-form .dashboard-date-input {
        width: 100%;
    }
    .analytics-chart-card {
        min-height: 240px !important;
        height: 240px !important;
    }
    .analytics-chart-card canvas {
        width: 100% !important;
        height: 100% !important;
    }
    .dashboard-report-form .d-flex.align-items-center.gap-2.mb-0,
    .dashboard-report-form label.d-flex.align-items-center.gap-2.mb-0 {
        width: 100%;
        flex-wrap: nowrap;
        align-items: center !important;
    }
    .dashboard-report-form .small.text-muted {
        flex: 0 0 auto;
        min-width: 72px;
    }
    .dashboard-report-form .dashboard-date-input {
        width: calc(100% - 80px) !important;
        min-width: 0 !important;
        max-width: none !important;
    }
    .analytics-chart {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-top: 14px;
        padding-bottom: 12px;
        scrollbar-width: thin;
        scrollbar-color: rgba(141,94,41,0.7) rgba(0,0,0,0.06);
    }
    .analytics-chart::-webkit-scrollbar {
        height: 10px;
    }
    .analytics-chart::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.04);
        border-radius: 999px;
    }
    .analytics-chart::-webkit-scrollbar-thumb {
        background: rgba(141,94,41,0.7);
        border-radius: 999px;
    }
    .analytics-chart-card {
        min-width: 520px;
        margin-left: 18px;
        margin-top: 6px;
    }
    .analytics-chart-card canvas {
        min-width: 520px !important;
    }
    .analytics-scroll-inner {
        min-width: 560px;
        width: 560px;
        margin-left: 18px;
    }
    .analytics-scroll-responsive {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 18px;
        scrollbar-width: thin;
        scrollbar-color: rgba(141,94,41,0.7) rgba(0,0,0,0.06);
    }
    .analytics-scroll-responsive::-webkit-scrollbar {
        height: 10px;
    }
    .analytics-scroll-responsive::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.04);
        border-radius: 999px;
    }
    .analytics-scroll-responsive::-webkit-scrollbar-thumb {
        background: rgba(141,94,41,0.7);
        border-radius: 999px;
    }
}
.admin-content-area .table-responsive .custom-hscroll,
.admin-content-area .custom-hscroll {
    display: block !important;
    opacity: 1 !important;
}
.admin-content-area .table-responsive .hscroll-nav,
.admin-content-area .hscroll-nav {
    display: flex !important;
}
.admin-content-area .table-responsive .custom-hscroll.no-overflow .hthumb,
.admin-content-area .custom-hscroll.no-overflow .hthumb {
    background: rgba(141,94,41,0.25) !important;
}

    /* Left/Right nav buttons for horizontal table scrolling */
    .admin-content-area .table-responsive .hscroll-nav,
    .admin-content-area .hscroll-nav {
        position: absolute;
        right: 8px;
        bottom: 20px;
        display: flex;
        gap: 6px;
        z-index: 1210;
    }
    .admin-content-area .table-responsive .hscroll-nav button,
    .admin-content-area .hscroll-nav button {
        width: 36px;
        height: 28px;
        border-radius: 6px;
        border: 1px solid rgba(0,0,0,0.08);
        background: #ffffff;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }
    .admin-content-area .table-responsive .hscroll-nav button i,
    .admin-content-area .hscroll-nav button i {
        font-size: 12px;
        color: #8d5e29;
    }

    /* Analytics chart scrollbar shown directly under the card */
    .analytics-scrollbar-wrap {
        display: block;
        padding: 2px 4px 0;
        margin-top: 4px;
    }
    .analytics-static-scrollbar {
        display: block !important;
        position: relative;
        height: 8px;
        background: rgba(0,0,0,0.04);
        border-radius: 999px;
        overflow: hidden;
        margin-bottom: 8px;
        box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    }
    .analytics-static-scrollbar .hthumb {
        width: 72%;
        left: 0;
        background: rgba(141,94,41,0.7);
        border-radius: 999px;
    }
    .analytics-static-nav {
        display: flex !important;
        justify-content: flex-end;
        gap: 6px;
    }
    .analytics-static-nav button {
        width: 34px;
        height: 28px;
        border-radius: 6px;
        border: 1px solid rgba(0,0,0,0.08);
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .analytics-static-nav button i {
        color: #8d5e29;
        font-size: 12px;
    }
    .admin-content-area .table.table th,
    .admin-content-area .table.table td {
        white-space: nowrap !important;
    }
}

/* Ensure action buttons in admin tables appear side-by-side (not stacked) */
.admin-content-area table.table td .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 6px;
}
.admin-content-area table.table td .btn:first-child {
    margin-left: 0;
}
.admin-content-area table.table td .btn + .btn {
    margin-left: 8px;
}

/* Prevent buttons from wrapping to new line */
.admin-content-area table.table td {
    white-space: nowrap;
}

.inquiry-filter-form {
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem 0.25rem 0.5rem;
}

.inquiry-filter-form .form-select,
.inquiry-filter-form .form-control {
    border-radius: 0.85rem;
    padding: 0.65rem 0.9rem;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
}

.inquiry-filter-form .form-label {
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #5f5d58;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.72rem;
}

.inquiry-filter-form .col-md-2,
.inquiry-filter-form .col-md-4 {
    display: flex;
    flex-direction: column;
}

.inquiry-filter-form .btn-success,
.inquiry-filter-form .btn-secondary {
    min-width: 130px;
    border-radius: 0.75rem;
    padding: 0.62rem 1rem;
    font-weight: 600;
}

.inquiry-filter-form .btn-success {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.inquiry-filter-form .btn-secondary {
    background-color: #f8f9fa;
    border-color: #ddd;
    color: #495057;
}

.inquiry-filter-form .btn-secondary:hover,
.inquiry-filter-form .btn-success:hover {
    opacity: 0.92;
}

.inquiry-filter-form .form-select-sm,
.inquiry-filter-form .form-control-sm {
    min-height: 42px;
}

.inquiry-filter-form .form-control[type="date"] {
    min-width: 210px;
}

@media (max-width: 991.98px) {
    .inquiry-filter-form {
        gap: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .inquiry-filter-form .btn,
    .inquiry-filter-form .form-control,
    .inquiry-filter-form .form-select {
        width: 100% !important;
    }
}

/* Category Filter Tabs Styling */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-btn {
    background-color: var(--bg-luxury-beige);
    color: var(--text-dark);
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-gold);
    color: var(--text-light);
}

/* Redesigned Blinds Promo Section */
.blinds-promo-section {
    background-color: #FAF8F6;
    padding: 100px 0;
    border-top: 1px solid rgba(179, 142, 93, 0.15);
    border-bottom: 1px solid rgba(179, 142, 93, 0.15);
}
@media (min-width: 992px) {
    .blinds-left-content,
    .blinds-right-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}
.blinds-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.blinds-line {
    display: inline-block;
    height: 1px;
    width: 45px;
    background-color: var(--primary-gold);
    opacity: 0.8;
}
.blinds-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.blinds-title {
    font-family: var(--font-rubik);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1c1917 !important;
    margin-bottom: 30px;
}
.blinds-desc {
    font-size: 16px;
    color: #6b6359;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 580px;
}
.blinds-types-row {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.blinds-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    flex: 1;
    min-width: 90px;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .blinds-type-item {
        flex: 0 0 calc(50% - 12px) !important;
        min-width: unset !important;
    }
}
.blinds-type-item:hover {
    text-decoration: none;
}
.blinds-type-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid rgba(179, 142, 93, 0.25);
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}
.blinds-type-item:hover .blinds-type-circle {
    border-color: var(--primary-gold);
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(179, 142, 93, 0.15);
}
.blinds-type-circle svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-gold);
    stroke-width: 1.2px;
    transition: var(--transition-smooth);
}
.blinds-type-label {
    font-size: 13px;
    font-weight: 600;
    color: #1c1917;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.btn-explore-blinds {
    background-color: #9c784a;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 45px;
}
.btn-explore-blinds:hover {
    background-color: #856338;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 120, 74, 0.35);
}
.blinds-features-bar {
    border-top: 1px solid rgba(179, 142, 93, 0.15);
    padding-top: 35px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.blinds-feature-item {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 170px;
}
.blinds-feature-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blinds-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}
.blinds-feature-subtitle {
    font-size: 12px;
    color: #6b6359;
    font-weight: 300;
    display: block;
}
.blinds-feature-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(179, 142, 93, 0.2);
}
.blinds-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: visible;
}
@media (min-width: 992px) {
    .blinds-image-wrapper {
        flex-grow: 1;
        display: flex;
        position: relative;
        margin-bottom: 30px;
    }
}
.blinds-promo-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 35px rgba(28, 25, 23, 0.05);
}
@media (min-width: 992px) {
    .blinds-promo-img {
        height: 100%;
        min-height: 480px;
    }
}
.blinds-float-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background-color: #ffffff;
    border-radius: 24px;
    width: 150px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(28, 25, 23, 0.07);
    z-index: 5;
    animation: blinds-float 6s ease-in-out infinite;
}
@keyframes blinds-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.blinds-float-badge-icon {
    width: 36px;
    height: 36px;
    background-color: #b38e5d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.blinds-float-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 8px;
    line-height: 1.3;
}
.blinds-float-card-divider {
    width: 20px;
    height: 1px;
    background-color: rgba(179, 142, 93, 0.3);
    margin: 8px auto;
}
.blinds-float-card-desc {
    font-size: 11px;
    color: #6b6359;
    line-height: 1.3;
    font-weight: 500;
}
.blinds-stats-card {
    position: relative;
    background-color: #faf6f0;
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(28, 25, 23, 0.05);
    z-index: 6;
}
.blinds-stat-col {
    text-align: center;
    flex: 1;
}
.blinds-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    line-height: 1.1;
}
.blinds-stat-label {
    font-size: 10px;
    color: #6b6359;
    font-weight: 600;
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blinds-stat-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(179, 142, 93, 0.2);
}

@media (max-width: 991px) {
    .blinds-promo-section {
        padding: 60px 0;
    }
    .blinds-title {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }
    .blinds-float-card {
        right: 10px;
        top: 20px;
    }
    .blinds-stats-card {
        margin-top: 30px;
        width: 100%;
        padding: 20px;
    }
}
@media (max-width: 575px) {
    .blinds-types-row {
        gap: 15px;
    }
    .blinds-type-circle {
        width: 66px;
        height: 66px;
    }
    .blinds-type-circle svg {
        width: 26px;
        height: 26px;
    }
    .blinds-type-label {
        font-size: 11px;
    }
    .blinds-features-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .blinds-feature-divider {
        display: none;
    }
    .blinds-feature-item {
        width: 100%;
    }
    .blinds-stat-number {
        font-size: 20px;
    }
    .blinds-stat-label {
        font-size: 9px;
    }
}

/* Before/After Transformation Slider Styles */
.ba-slider-container {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    user-select: none;
    -webkit-user-select: none;
}
.ba-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.before-image-wrapper {
    z-index: 1;
}
.after-image-wrapper {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.ba-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    z-index: 3;
    color: #ffffff;
}
.before-label {
    left: 20px;
    background-color: rgba(28, 25, 23, 0.75);
}
.after-label {
    right: 20px;
    background-color: rgba(179, 142, 93, 0.85);
}
.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    z-index: 4;
    cursor: ew-resize;
}
.ba-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s, transform 0.2s;
}
.ba-slider-handle:hover .ba-handle-circle {
    background-color: var(--primary-gold-light);
    transform: translate(-50%, -50%) scale(1.05);
}
.ba-feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-gold-light);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ba-feature-icon-circle svg {
    stroke: var(--primary-gold);
}
.ba-feature-title {
    font-family: var(--font-rubik);
}
.btn-explore-transformations {
    background-color: #9c784a;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
}
.btn-explore-transformations:hover {
    background-color: #856338;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 120, 74, 0.35);
}
@media (max-width: 768px) {
    .ba-slider-container {
        height: 380px;
    }
}
@media (max-width: 576px) {
    .ba-slider-container {
        height: 280px;
    }
    .ba-label {
        top: 15px;
        padding: 5px 12px;
        font-size: 9px;
    }
    .before-label { left: 15px; }
    .after-label { right: 15px; }
    .ba-handle-circle {
        width: 36px;
        height: 36px;
    }
    .ba-handle-circle svg {
        width: 14px;
        height: 14px;
    }
}

/* Redesigned About Page Styles */
.about-hero-box {
    background-color: rgba(var(--primary-gold-rgb), 0.07);
    border: 1.5px solid rgba(var(--primary-gold-rgb), 0.15);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(var(--primary-gold-rgb), 0.03);
}
.about-story-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.about-stat-item {
    text-align: left;
}
.about-stat-number {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
    font-family: var(--font-rubik);
}
.about-stat-label {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}
.about-why-card {
    background-color: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.12);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}
.about-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(179, 142, 93, 0.08);
    border-color: rgba(179, 142, 93, 0.3);
}
.about-why-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--primary-gold-light);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px auto;
    transition: var(--transition-smooth);
}
.about-why-card:hover .about-why-icon-box {
    background-color: var(--primary-gold);
    color: #ffffff;
    transform: scale(1.1);
}
.about-why-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.about-why-desc {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
}
.about-cta-banner {
    background-color: var(--primary-gold);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    border-radius: 24px;
    padding: clamp(40px, 8vw, 75px) clamp(20px, 5vw, 50px);
    box-shadow: 0 15px 35px rgba(179, 142, 93, 0.25);
}
.about-cta-title {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
}
.btn-about-cta {
    background-color: #ffffff;
    color: var(--primary-gold);
    font-weight: 700;
    border-radius: 30px;
    border: none;
    padding: 14px 35px;
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.btn-about-cta:hover {
    background-color: var(--bg-luxury-cream);
    color: #9d7b4f;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Redesigned Contact Page Styles */
.contact-title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
}
.contact-info-icon-badge {
    background-color: #ffffff;
    color: var(--primary-gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.contact-social-btn {
    background-color: #ffffff;
    color: var(--primary-gold);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.contact-social-btn:hover {
    background-color: var(--primary-gold-hover);
    color: #ffffff;
    transform: translateY(-3px);
}
.contact-field-label {
    font-size: 14px;
    font-weight: 600 !important;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}
.contact-input-field {
    border-radius: 8px;
    border: 1px solid rgba(179, 142, 93, 0.25);
    padding: 12px 16px;
    font-size: 14.5px;
    background-color: #ffffff;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}
.contact-input-field:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(179, 142, 93, 0.15);
    outline: none;
    background-color: #ffffff;
}
.btn-contact-submit {
    background-color: var(--primary-gold);
    color: #ffffff;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 14px 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(179, 142, 93, 0.2);
}
.btn-contact-submit:hover {
    background-color: var(--primary-gold-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 142, 93, 0.3);
}

/* Redesigned Portfolio Page (Projects) Styles */
.project-card {
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.12);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(179, 142, 93, 0.08) !important;
    border-color: rgba(179, 142, 93, 0.3) !important;
}
.project-img-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-luxury-beige);
}
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.project-card:hover .project-img {
    transform: scale(1.06);
}
.btn-whatsapp-inquiry {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}
.btn-whatsapp-inquiry:hover {
    background-color: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}
.btn-about-cta-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    padding: 14px 35px;
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-about-cta-whatsapp:hover {
    background-color: #20ba5a;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

/* Curtains Category Redesign Styles */
.category-card-luxury {
    background: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.category-card-luxury:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(179, 142, 93, 0.15);
}
.category-card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-dark-charcoal);
}
.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card-luxury:hover .category-card-img {
    transform: scale(1.08);
}
.category-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(28, 25, 23, 0.85);
    color: var(--primary-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(179, 142, 93, 0.4);
}
.category-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}
.category-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.category-card-luxury:hover .category-card-title {
    color: var(--primary-gold);
}
.category-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.btn-category-view {
    background-color: var(--text-dark);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
}
.btn-category-view:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(179, 142, 93, 0.3);
}

/* Dedicated Category Landing Page Styles */
.category-breadcrumb-nav {
    background-color: #FAF7F2;
    border-bottom: 1px solid rgba(179, 142, 93, 0.15);
    padding: 14px 0;
}
.category-breadcrumb {
    margin: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.category-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}
.category-breadcrumb a:hover {
    color: var(--primary-gold);
}
.category-breadcrumb .active {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Category Feature Card */
.category-feature-card {
    background: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
}
.category-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(179, 142, 93, 0.12);
}
.category-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(179, 142, 93, 0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.category-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Category Application Badges */
.category-app-card {
    background: #ffffff;
    border: 1px solid rgba(179, 142, 93, 0.2);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.category-app-card:hover {
    background: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
    transform: translateY(-3px);
}
.category-app-card:hover .category-app-icon {
    color: var(--primary-gold);
}
.category-app-card:hover .category-app-name {
    color: #ffffff;
}
.category-app-icon {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.category-app-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

/* Category Gallery Styling */
.category-gallery-item {
    position: relative;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    background-color: #1c1917;
}
.category-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-gallery-item:hover .category-gallery-img {
    transform: scale(1.08);
}
.category-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.category-gallery-item:hover .category-gallery-overlay {
    opacity: 1;
}

/* Category CTA Banner */
.category-cta-section {
    background: linear-gradient(135deg, #1c1917 0%, #2e2824 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(179, 142, 93, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.category-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.category-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 30px;
}




