/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Color Palette - Warm Luxury */
    --primary-bg: #FAF8F6;
    --secondary-bg: #FDFBF7;
    --card-bg: #FFFFFF;
    
    --text-primary: #1A1613;
    --text-secondary: #5C554F;
    --text-muted: #8E857C;
    
    --gold: #E85B24;
    --gold-dark: #C24314;
    --gold-light: #FADFD3;
    --gold-glow: rgba(232, 91, 36, 0.25);
    
    --border-color: #EAE6E1;
    --shadow-sm: 0 2px 10px rgba(26, 22, 19, 0.04);
    --shadow-md: 0 10px 30px rgba(26, 22, 19, 0.08);
    --shadow-lg: 0 20px 50px rgba(26, 22, 19, 0.12);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for sticky header */
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--gold);
}

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

/* Helpers */
.gold-text {
    color: var(--gold) !important;
}

/* ==========================================
   TOP UTILITY BAR STYLES
   ========================================== */
.top-bar {
    background-color: var(--text-primary);
    color: #FFFFFF;
    font-size: 0.825rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.03em;
}

.top-bar-info a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.top-bar-info a:hover {
    color: var(--gold);
}

.top-bar-info span {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   STICKY MAIN HEADER
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 248, 246, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    transition: var(--transition-normal);
}

/* Scroll Active State (When page is scrolled) */
.main-header.scroll-active {
    padding: 12px 0;
    background-color: rgba(250, 248, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(232, 91, 36, 0.15);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--text-primary);
    transition: var(--transition-fast);
    padding: 2px 0;
    text-decoration: none;
}

/* Logo image from img/logo.png */
.brand-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.04);
}

.brand-logo-icon {
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.sofa-logo-svg {
    transition: transform var(--transition-normal);
}

.brand-logo:hover .sofa-logo-svg {
    transform: scale(1.08) translateY(-1px);
    color: var(--gold-dark);
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.brand-logo:hover .logo-text {
    color: var(--text-primary);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark); /* Matches the reference image link style, using luxury gold */
    letter-spacing: 0.08em;
    padding: 6px 0;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link.active {
    color: var(--text-primary) !important; /* Active link highlighted in dark charcoal */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

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

/* CUSTOM PHONE PILL BUTTON */
.custom-phone-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 5px 22px 5px 5px; /* Spaced perfectly to center the circle and text */
    border-radius: 50px;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 15px rgba(168, 139, 99, 0.2);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.phone-pill-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #FFFFFF;
    color: #1A1613; /* Black telephone icon */
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal);
}

.custom-phone-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 139, 99, 0.35);
    filter: brightness(1.08);
}

.custom-phone-pill:hover .phone-pill-icon-box {
    transform: rotate(15deg) scale(1.05);
}

.phone-pill-number {
    font-family: var(--font-body);
}

/* HAMBURGER BUTTON & RED CIRCLE MOBILE BUTTONS */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: background var(--transition-fast);
}

.mobile-toggle:hover {
    background: var(--gold);
}

/* Red phone circle button on mobile */
.mob-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold-dark);
    border-radius: 50%;
    color: #FFFFFF !important;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.mob-circle-btn:hover {
    background: var(--gold);
}

/* Legacy bar spans (kept for JS toggling compatibility) */
.mobile-toggle .bar {
    display: none;
}

/* ==========================================
   MOBILE SLIDE-IN DRAWER
   ========================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -360px; /* Hidden offscreen by default */
    width: 320px;
    height: 100vh;
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-lg);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    padding: 30px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 5px;
}

.drawer-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.drawer-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0 20px 0;
    overflow-y: auto;
}

/* Mobile Nav Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mob-link {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    position: relative;
    padding-left: 0;
    transition: var(--transition-normal);
}

.mob-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

.mob-link:hover, 
.mob-link.active {
    color: var(--gold);
    padding-left: 20px;
}

.mob-link.active::before,
.mob-link:hover::before {
    width: 12px;
}

/* Drawer Footer Info */
.drawer-icon {
    width: 40px;
    height: 40px;
    background-color: #FAF8F6;
    border: 1px solid var(--border-color);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.info-val {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 22, 19, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media Queries for Adjustments */
@media (max-width: 1199.98px) {
    .main-header {
        padding: 15px 0;
    }
}

/* ==========================================
   HERO SECTION STYLES
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    max-height: 820px;
    overflow: hidden;
}

/* Background image fills the section */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Subtle gradient only at bottom-left for text legibility */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 10, 4, 0.82) 0%,
        rgba(20, 10, 4, 0.55) 35%,
        rgba(20, 10, 4, 0.0) 65%
    );
    z-index: 2;
}

/* ==========================================
   HERO TEXT OVERLAY  —  BOTTOM LEFT
   ========================================== */
.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(140, 15, 15, 0.78); /* Solid reddish-dark — text must be clearly readable */
    padding: 24px 40px 24px 30px;
    max-width: 50%;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-band-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #FFE000; /* Bright yellow matching reference — max contrast */
    margin-bottom: 10px;
    text-transform: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-band-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ==========================================
   HERO CARD FLOAT  —  TOP RIGHT
   ========================================== */
.hero-card-float {
    position: absolute;
    top: 24%;
    right: 14%;
    z-index: 10;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   NEW HERO ENQUIRY CARD (MATCHING REFERENCE IMAGE)
   ========================================== */
.hero-enquiry-card-new {
    background-color: #FFFFFF;
    border-radius: 6px;
    width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-enquiry-header {
    background: var(--gold-dark);
    padding: 16px 24px;
    text-align: center;
}

.hero-enquiry-header h3 {
    font-family: var(--font-body);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-enquiry-body {
    padding: 20px 20px 24px;
    background: #FFFFFF;
}

/* Full-width white input rows with inline labels */
.hero-input-row {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #D1CCC8;
    border-radius: 4px;
    padding: 0 14px;
    height: 46px;
    transition: all var(--transition-fast);
}

.hero-input-row:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

.hero-input-row:focus-within .hero-input-label {
    display: none !important;
}

.hero-input-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
    margin-right: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-input-field {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 0;
}

.hero-textarea-row {
    height: 80px !important;
    align-items: flex-start !important;
    padding-top: 10px !important;
}

.hero-textarea-field {
    resize: none !important;
    height: 100% !important;
}

/* Wide Submit Action Button  */
.hero-submit-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 25px;
    padding: 12px 0;
    box-shadow: 0 4px 14px var(--gold-glow);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 91, 36, 0.45);
    filter: brightness(1.06);
}

.hero-submit-btn:active {
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE HERO SECTION
   ========================================== */

/* Large desktop - card slightly closer in */
@media (max-width: 1399.98px) {
    .hero-card-float {
        right: 10%;
    }
    .hero-enquiry-card-new {
        width: 320px;
    }
}

/* Tablet and below — card shifts below the image */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        min-height: unset;
        max-height: unset;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    /* Image block — natural height, not fixed */
    .hero-bg-wrapper {
        position: relative;
        inset: auto;
        height: 280px;
        width: 100%;
        flex-shrink: 0;
    }

    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(20, 10, 4, 0.75) 0%,
            rgba(20, 10, 4, 0.3) 45%,
            transparent 75%
        );
    }

    /* Text overlay stays inside the image block — anchors to bottom of image */
    .hero-text-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 78%;
        padding: 14px 20px;
        background: rgba(140, 15, 15, 0.78);
    }

    .hero-band-title {
        font-size: 1.35rem;
    }

    .hero-band-subtitle {
        font-size: 0.88rem;
    }

    /* Card comes directly below image — ZERO gap */
    .hero-section {
        gap: 0;
    }

    .hero-card-float {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        animation: none;
        background-color: #1A1009;
        padding: 0 0 28px 0; /* No top padding — flush against image */
    }

    .hero-enquiry-card-new {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    /* On mobile the card body also gets dark bg */
    .hero-enquiry-body {
        background: #1A1009;
        padding: 20px 16px 24px;
    }

    /* Inputs stay white with visible border */
    .hero-input-row {
        background-color: #FFFFFF;
        border: 1px solid #ccc;
    }
}

@media (max-width: 575.98px) {
    .hero-bg-wrapper {
        height: 240px;
    }

    .hero-band-title {
        font-size: 1.25rem;
    }

    .hero-band-subtitle {
        font-size: 0.85rem;
    }

    .hero-enquiry-body {
        padding: 16px 12px 20px;
    }

    .hero-input-row {
        height: 44px;
        padding: 0 12px;
    }
    
}

/* ==========================================
   SEND ENQUIRY — FIXED VERTICAL RIGHT EDGE TAB
   ========================================== */
.send-enquiry-tab {
    position: fixed;
    right: -36px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    z-index: 9999;
    background: var(--gold-dark);
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 20px;
    white-space: nowrap;
    transition: background var(--transition-fast);
    box-shadow: -2px 0 8px rgba(0,0,0,0.25);
}

.send-enquiry-tab:hover {
    background: var(--gold);
}

@media (max-width: 575.98px) {
    .send-enquiry-tab {
        font-size: 0.6rem;
        padding: 7px 14px;
        right: -30px;
    }
}


/* ==========================================
   ABOUT SECTION STYLES (White Background)
   ========================================== */
.about-section {
    background-color: #FFFFFF; /* Explicit white background as requested */
    position: relative;
    z-index: 5;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Global Section Titles */
.section-sub-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.section-title .accent-text {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

/* Left side image decoration structure */
/* ==========================================
   ABOUT SECTION COMPONENTS (MATCHING REFERENCE IMAGE)
   ========================================== */
/* Centered About Header */
.about-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50px;
}

/* About Highly Rounded Image */
.about-image-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 15px 35px rgba(26, 22, 19, 0.1);
    transition: transform var(--transition-slow);
}

.about-image-container:hover {
    transform: translateY(-5px) scale(1.01);
}

.about-img-rounded {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    transition: transform var(--transition-slow);
}

.about-image-container:hover .about-img-rounded {
    transform: scale(1.03);
}

/* Right Side Copy Paragraphs */
.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
}

.about-desc-p {
    font-family: var(--font-body);
    font-size: 1.025rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.about-desc-p strong {
    color: var(--text-primary);
}

/* ENQUIRE NOW Button */
.about-enquire-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 4px;
    padding: 13px 32px;
    margin-top: 10px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: all var(--transition-normal);
}

.about-enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 91, 36, 0.35);
    filter: brightness(1.08);
}

.about-enquire-btn:active {
    transform: translateY(0);
}

/* ==========================================
   ABOUT RESPONSIVE STYLES
   ========================================== */
@media (max-width: 991.98px) {
    .about-image-container {
        margin-bottom: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-text-block {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .about-main-title {
        margin-bottom: 15px;
    }
}

/* ==========================================
   SERVICES SECTION STYLES (Soft Off-White)
   ========================================== */
.services-section {
    background-color: var(--primary-bg); /* Soft warm off-white */
    position: relative;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Section animate title spacing */
.animate-title {
    margin-bottom: 50px;
}

/* Luxury Service Card container */
.service-card {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 91, 36, 0.35);
}

/* Image scaling window */
.service-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: var(--text-primary);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
    filter: brightness(1.02);
}

/* Service Card Body Text */
.service-card-body {
    flex-grow: 1;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--text-primary);
    line-height: 1.45;
    margin: 0;
    letter-spacing: -0.01em;
}

/* SERVICE CARD ACTION TAB (3 BUTTON SYSTEM) */
.service-action-bar {
    display: flex;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.service-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 8px;
    font-size: 0.775rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF !important;
    transition: var(--transition-fast);
}

/* Individual button color blocks */
.btn-whatsapp-card {
    background-color: #25D366;
}

.btn-whatsapp-card:hover {
    background-color: #1ebe56;
}

.btn-enquiry-card {
    background-color: var(--gold-dark);
}

.btn-enquiry-card:hover {
    background-color: var(--gold);
}

.btn-call-card {
    background-color: var(--text-primary);
}

.btn-call-card:hover {
    background-color: #2e2621;
}

/* Service responsive tweaks */
@media (max-width: 991.98px) {
    .services-section {
        padding: 80px 0;
    }
    
    .service-img-container {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-img-container {
        height: 200px;
    }
    
    .service-btn {
        padding: 11px 4px;
        font-size: 0.7rem;
    }
    
    .service-card-title {
        font-size: 0.975rem;
    }
}

/* ==========================================
   GALLERY SECTION STYLES (White Background)
   ========================================== */
.gallery-section {
    background-color: #FFFFFF; /* Pure White background as requested */
    position: relative;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
    transition: var(--transition-slow);
}

/* Filter menu button pills */
.gallery-filter-menu {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: #FFFFFF;
}

/* Gallery Item grid card */
.gallery-item {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hide animations for smooth JS category switching */
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
    pointer-events: none;
}

.gallery-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    background-color: var(--text-primary);
}

.gallery-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

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

/* Floating dark gold glassmorphic overlay on hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(26, 22, 19, 0.15) 0%, 
        rgba(26, 22, 19, 0.85) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    z-index: 2;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Plus Zoom Icon decoration */
.gallery-zoom-icon {
    align-self: flex-end;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.gallery-card:hover .gallery-zoom-icon:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--text-primary);
    transform: scale(1.1);
}

.gallery-card-info {
    display: flex;
    flex-direction: column;
}

.gallery-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 4px;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

/* ==========================================
   PREMIUM LIGHTBOX MODAL STYLES
   ========================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 22, 19, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

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

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    text-align: center;
}

.lightbox-tag {
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFFFFF;
    margin: 4px 0 0 0;
}

/* Close & Navigation arrows */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 10px;
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav-left, 
.lightbox-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 20px;
    z-index: 2005;
}

.lightbox-nav-left:hover, 
.lightbox-nav-right:hover {
    color: var(--gold);
}

.lightbox-nav-left {
    left: 30px;
}

.lightbox-nav-right {
    right: 30px;
}

/* Gallery Responsive Adjustments */
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .lightbox-nav-left, 
    .lightbox-nav-right {
        padding: 10px;
        font-size: 1.8rem;
    }
    
    .lightbox-nav-left {
        left: 10px;
    }
    
    .lightbox-nav-right {
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-title {
        font-size: 1.15rem;
    }
}

/* ==========================================
   CRAFTING PROCESS SECTION (Soft Off-White)
   ========================================== */
.process-section {
    background-color: var(--primary-bg);
    position: relative;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.process-step-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 91, 36, 0.35);
}

.step-num-box {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline-block;
    position: relative;
}

.step-num-box::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--text-primary);
}

.step-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================
   REVIEWS & TESTIMONIALS SECTION (White Bg)
   ========================================== */
.reviews-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-card {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.review-stars i {
    color: #F39C12; /* Golden Star rating */
    font-size: 0.9rem;
    margin-right: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.author-name {
    font-size: 1.025rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-loc {
    font-size: 0.725rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   CONTACT SECTION (Soft Off-White)
   ========================================== */
.contact-section {
    background-color: var(--primary-bg);
    padding: 100px 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.item-lbl {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.item-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* CLASSIC CONTACT FORM CARD */
.contact-form-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.form-control-classic {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 0.925rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-normal);
    outline: none;
}

.form-control-classic::placeholder {
    color: var(--text-muted);
}

.form-control-classic:focus {
    background-color: #FFFFFF;
    border-color: var(--gold-dark);
    box-shadow: 0 0 10px rgba(232, 91, 36, 0.12);
}

.select-classic {
    cursor: pointer;
}

.select-classic option {
    background-color: #FFFFFF;
    color: var(--text-primary);
}

.textarea-classic {
    resize: none;
}

.contact-response-msg {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 4px;
    animation: fadeInUp 0.4s ease;
}

.contact-response-msg.success {
    background-color: rgba(94, 110, 91, 0.1);
    color: #5e6e5b;
    border: 1px solid rgba(94, 110, 91, 0.2);
}

.contact-response-msg.error {
    background-color: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

/* ==========================================
   PREMIUM SITE FOOTER (NEW VISUALS)
   ========================================== */
.site-footer-new {
    background-color: #1A1009; /* Deep warm dark charcoal matching orange theme */
    color: #FFFFFF;
    padding: 80px 0 0 0; /* Flush with bottom bar */
    border-top: 2px solid var(--gold);
    font-family: var(--font-body);
    position: relative;
}

.footer-left-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer-left-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 15px 0 35px 0;
    opacity: 1;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #1A1009;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-info-icon i {
    font-size: 1.25rem;
}

.footer-info-item:hover .footer-info-icon {
    transform: scale(1.08);
    background-color: var(--gold);
    color: #FFFFFF;
}

.footer-info-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
}

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

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

/* Right Column Form Styling */
.footer-form-wrapper {
    background: transparent;
}

.footer-right-title {
    font-size: 2.1rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-right-subtitle {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.02em;
}

.footer-subtitle-divider {
    width: 45px;
    height: 2px;
    background-color: #FFFFFF;
    margin: 8px 0 25px 0;
}

/* White Input Rows */
.footer-input-row {
    background-color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 4px;
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-input-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1009;
    white-space: nowrap;
    margin-bottom: 0;
}

.footer-input-field {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    height: 100%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1009;
    font-family: var(--font-body);
}

.footer-input-row:focus-within {
    box-shadow: 0 0 12px rgba(232, 91, 36, 0.35);
    border-color: var(--gold);
}

/* Textarea supporting multi-line spacing */
.footer-textarea-row {
    height: auto;
    padding: 10px 16px;
    align-items: flex-start;
}

.footer-textarea-field {
    resize: none;
    min-height: 48px;
    padding: 0;
    line-height: 1.5;
}

/* Submit Orange Button */
.btn-submit-red {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px; /* Capsule shape */
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(232, 91, 36, 0.4);
}

.btn-submit-red:hover {
    background: #FFFFFF !important;
    color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 91, 36, 0.25);
}

.btn-submit-red:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Response Message styles inside footer */
.footer-response-msg {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 4px;
    animation: fadeInUp 0.4s ease;
}

.footer-response-msg.success {
    background-color: rgba(94, 110, 91, 0.15);
    color: #8fa08c;
    border: 1px solid rgba(94, 110, 91, 0.25);
}

.footer-response-msg.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #e57373;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Bottom Orange Copyright Bar */
.footer-bottom-red {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 24px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-red .container {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* ==========================================
   PERSISTENT FLOATING SOCIAL ACTION BUTTONS
   ========================================== */
/* ==========================================
   PERSISTENT FLOATING SOCIAL ACTION BUTTONS
   ========================================== */
/* Right Sticky Enquiry Tab */
.sticky-right-enquiry {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF !important;
    padding: 18px 12px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px 0 0 6px; /* Rounded inside, flat against the screen edge */
    box-shadow: var(--shadow-lg), 0 5px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-normal);
}

.sticky-right-enquiry:hover {
    padding-right: 18px;
    background: linear-gradient(135deg, var(--text-primary) 0%, #2E2520 100%);
    color: #FFFFFF !important;
    border-right: 3px solid var(--gold);
    transform: translateY(-50%) scale(1.03);
}

/* Bottom Left Floating Contacts */
.floating-left-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 14px;
    z-index: 1001;
}

.float-action-left {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    box-shadow: var(--shadow-md), 0 6px 20px rgba(0,0,0,0.15);
    transition: var(--transition-normal);
    text-decoration: none;
    border: none;
    outline: none;
}

.float-action-left i {
    font-size: 1.45rem;
}

/* WhatsApp Left styling */
.float-whatsapp-left {
    background-color: #25D366;
}

.float-whatsapp-left:hover {
    transform: scale(1.08) rotate(15deg);
    background-color: #20BD59;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Call Left styling */
.float-call-left {
    background-color: #2ea44f; /* Matches green telephone dialer button in reference image */
}

.float-call-left:hover {
    transform: scale(1.08) rotate(-10deg);
    background-color: #278e43;
    box-shadow: 0 8px 24px rgba(46, 164, 79, 0.4);
}

/* Bottom Right Scroll To Top */
.float-action-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%; /* Pure circle visual */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF !important;
    box-shadow: var(--shadow-md), 0 6px 20px rgba(168, 139, 99, 0.25);
    transition: var(--transition-normal);
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.float-action-right.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-action-right:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--text-primary) 0%, #2E2520 100%);
    box-shadow: 0 8px 24px rgba(26, 22, 19, 0.35);
}

.float-action-right i {
    font-size: 1.25rem;
}

/* Final Responsive tweaks */
@media (max-width: 991.98px) {
    .process-section,
    .reviews-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-details-list {
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .process-section,
    .reviews-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .process-step-card {
        padding: 30px 20px;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .floating-left-actions {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .float-action-right {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    
    .float-action-right i {
        font-size: 1.1rem;
    }
    
    .float-action-left {
        width: 46px;
        height: 46px;
    }
    
    .float-action-left i {
        font-size: 1.25rem;
    }
    
    .sticky-right-enquiry {
        padding: 14px 9px;
        font-size: 0.68rem;
    }
}

/* ==========================================
   SHOWROOM MAP CTA STYLES
   ========================================== */
.showroom-cta-section {
    background-color: #0A0908; /* Pure dark premium charcoal-black */
    padding: 90px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.showroom-icon-box {
    font-size: 2.8rem;
    color: var(--gold); /* Brand Gold accent matching pin */
    line-height: 1;
}

.showroom-title {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.showroom-address {
    font-size: 0.95rem;
    color: #8E857C; /* Muted warm grey */
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Maps action outline button matching reference */
.btn-showroom-maps {
    display: inline-block;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    background-color: transparent;
    padding: 11px 26px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-normal);
    border-radius: 4px;
    cursor: pointer;
}

.btn-showroom-maps:hover {
    background-color: #FFFFFF;
    color: #0A0908 !important;
    transform: translateY(-2px);
}

@media (max-width: 575.98px) {
    .showroom-cta-section {
        padding: 60px 0;
    }
    
    .showroom-title {
        font-size: 1.45rem;
    }
    
    .showroom-address {
        font-size: 0.85rem;
    }
    
    .btn-showroom-maps {
        padding: 9px 20px;
        font-size: 0.65rem;
    }
}

/* ==========================================
   INTERACTIVE POPUP MODAL STYLES
   ========================================== */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 22, 19, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 3000; /* Sit above sticky navbar (1000) and lightbox (2000) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.enquiry-modal.active {
    opacity: 1;
    visibility: visible;
}

.enquiry-modal .modal-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 480px;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.enquiry-modal.active .modal-card {
    transform: scale(1);
}

/* Modal top colored strip */
.enquiry-modal .modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 5px;
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-response-msg {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 4px;
    animation: fadeInUp 0.4s ease;
}

.modal-response-msg.success {
    background-color: rgba(94, 110, 91, 0.15);
    color: #8fa08c;
    border: 1px solid rgba(94, 110, 91, 0.25);
}

.modal-response-msg.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #e57373;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Modal Header Text Visibility & Contrast Fixes */
.enquiry-modal .modal-header {
    text-align: center;
    margin-bottom: 25px;
    display: block;
}

.enquiry-modal .modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.enquiry-modal .modal-header p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 0;
}

/* Modal Form Custom Inputs & Icons */
.modal-form-body .form-group {
    position: relative;
    width: 100%;
}

.modal-form-body .form-control-custom {
    display: block;
    width: 100%;
    padding: 12px 18px 12px 46px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-form-body .textarea-custom {
    resize: none;
}

.modal-form-body .form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.modal-form-body .form-control-custom:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(232, 91, 36, 0.25);
}

.modal-form-body .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-form-body .textarea-icon {
    top: 20px;
    transform: none;
}

.modal-form-body .form-group:focus-within .input-icon {
    color: var(--gold);
}

/* Premium submit button */
.btn-submit-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--text-primary) !important;
    font-weight: 750;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-submit-gold:hover {
    background: #FFFFFF !important;
    color: #0c0a0a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 91, 36, 0.25);
}


@media (max-width: 575.98px) {
    .enquiry-modal .modal-card {
        padding: 30px 20px;
    }
    
    .modal-close-btn {
        top: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
}

/* ==========================================
   TESTIMONIALS SLIDER / SWIPER STYLES
   ========================================== */
.reviews-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 20px 0;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .review-slide {
        flex: 0 0 33.3333%;
    }
}

.reviews-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.reviews-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.reviews-slider-dots .dot:hover {
    background-color: var(--gold);
    transform: scale(1.2);
}

.reviews-slider-dots .dot.active {
    background-color: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================
   WHY CHOOSE US SECTION (Deep Espresso Dark)
   ========================================== */
.why-choose-us-section {
    background-color: #0c0a0a; /* Rich very dark espresso background */
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtle ambient gold radial background glow */
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 91, 36, 0.035) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-us-section .text-light-muted {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Luxury Grid Cards */
.why-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hover glowing and sliding card border effect */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--gold);
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(232, 91, 36, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card Icons */
.why-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(232, 91, 36, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(232, 91, 36, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-icon-box i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover .why-icon-box {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

.why-card:hover .why-icon-box i {
    color: #0c0a0a;
}

/* Card Content text */
.why-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.why-card:hover .why-title {
    color: var(--gold);
}

.why-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
}

/* Mobile responsive padding adjust */
@media (max-width: 991.98px) {
    .why-choose-us-section {
        padding: 80px 0;
    }
    
    .why-card {
        padding: 35px 25px;
    }
}

@media (max-width: 575.98px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   FAQ ACCORDION SECTION (White Bg)
   ========================================== */
.faq-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    gap: 20px;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-icon-box i {
    font-size: 0.8rem;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* FAQ Item Hover / Active Styling */
.faq-item:hover {
    border-color: rgba(232, 91, 36, 0.35);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover .faq-icon-box {
    border-color: rgba(232, 91, 36, 0.3);
    color: var(--gold);
}

.faq-item.active {
    border-color: rgba(232, 91, 36, 0.4);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--gold-dark);
}

.faq-item.active .faq-icon-box {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
}

.faq-item.active .faq-icon-box i {
    transform: rotate(180deg);
}

/* FAQ Smooth Body Collapse */
.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.faq-body-content {
    padding: 0 30px 28px 30px;
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 991.98px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        padding: 20px 24px;
    }
    
    .faq-body-content {
        padding: 0 24px 22px 24px;
    }
}

@media (max-width: 575.98px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        padding: 18px 20px;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-body-content {
        padding: 0 20px 18px 20px;
        font-size: 0.875rem;
    }
}



