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

:root {
    --primary: hsl(35, 45%, 50%); /* Premium Gold #b88746 */
    --primary-hover: hsl(35, 50%, 42%); /* Premium Dark Gold #9e7135 */
    --primary-light: hsl(35, 45%, 96%); /* Premium Light Gold */
    --dark: hsl(220, 25%, 9%);
    --dark-surface: hsl(220, 20%, 14%);
    --dark-surface-muted: hsl(220, 15%, 20%);
    --light: hsl(210, 20%, 98%);
    --light-surface: hsl(0, 0%, 100%);
    --text-dark: hsl(220, 25%, 15%);
    --text-muted: hsl(220, 10%, 45%);
    --text-light: hsl(210, 15%, 95%);
    --text-light-muted: hsl(210, 10%, 75%);
    --border-color: hsl(220, 15%, 90%);
    --border-color-dark: hsl(220, 15%, 20%);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

.font-serif {
    font-family: var(--font-serif) !important;
}

.font-sans {
    font-family: var(--font-sans) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-hover);
}

/* Custom Buttons */
.btn-premium {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    padding: 12px 30px;
    border-radius: 4px;
    border: 1px solid var(--primary);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-premium:hover, .btn-premium:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 127, 26, 0.3);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    padding: 12px 30px;
    border-radius: 4px;
    border: 2px solid var(--primary);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-premium-outline:hover, .btn-premium-outline:focus {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 127, 26, 0.2);
}

/* Glassmorphism Header */
/* Glassmorphism Light Header Wrapper */
.header-premium-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
}

.top-bar-premium {
    background-color: #11151D !important; /* Specific dark background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem !important; /* Increased font size */
    color: #ffffff !important; /* White text */
    padding: 8px 0 !important;
    transition: var(--transition-smooth);
    height: 42px; /* Define baseline height for transition */
    overflow: hidden;
}
.header-premium-wrapper.scrolled .top-bar-premium {
    height: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    opacity: 0;
    border-bottom: none !important;
}
.top-bar-premium a,
.top-bar-premium span,
.top-bar-premium div {
    font-size: 1rem !important;
    color: #ffffff !important;
}
.top-bar-premium a {
    transition: var(--transition-smooth);
}
.top-bar-premium a:hover {
    color: #c5a880 !important;
}
.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.6;
}
.top-bar-premium i {
    color: #b88746 !important;
    font-size: 0.95rem !important;
}

.top-bar-premium .top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-premium .top-bar-right a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-premium .top-bar-right a:hover {
    background-color: #b88746;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.top-bar-premium .top-bar-right a i {
    color: inherit !important;
    font-size: 0.85rem !important;
}

/* Main Navbar */
.navbar-premium-dark {
    transition: var(--transition-smooth);
}

/* Brand Monogram Logo (AV Overlapped Monogram) */
.brand-monogram {
    width: 48px;
    height: 48px;
    border: 1.5px solid #b88746;
    position: relative;
    border-radius: 2px;
    background: transparent;
    margin-right: 12px;
}
.brand-monogram .monogram-a {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 300;
    color: #b88746;
    top: -3px;
    left: 5px;
    line-height: 1;
}
.brand-monogram .monogram-v {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 300;
    color: #b88746;
    bottom: -7px;
    right: 5px;
    line-height: 1;
}

.brand-text {
    display: none !important;
    /* Hidden branding text per request */
}
.brand-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}
.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: #b88746;
    opacity: 0.9;
    letter-spacing: 4px;
}

/* Navbar Nav Links */
.navbar-premium-dark .nav-link {
    color: #2b2b2b !important;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 4px 14px !important;
    position: relative;
    transition: var(--transition-smooth);
}
/* Unified dropdown styling */
.navbar-premium-dark .dropdown-menu {
    min-width: 250px;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    background: var(--dark-surface);
    border: 1px solid var(--border-color-dark);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

/* Dropdown item styling */
.navbar-premium-dark .dropdown-menu .dropdown-item {
    font-size: 1.2rem !important;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    background: transparent;
    transition: var(--transition-smooth);
}

.navbar-premium-dark .dropdown-menu .dropdown-item:hover,
.navbar-premium-dark .dropdown-menu .dropdown-item:focus {
    background: var(--primary);
    color: var(--light);
}

/* Refine dropdown items */
.navbar-premium-dark .dropdown-item {
    color: var(--text-light);
    background: transparent;
    transition: var(--transition-smooth);
}

.navbar-premium-dark .dropdown-item:hover,
.navbar-premium-dark .dropdown-item:focus {
    background: var(--primary);
    color: var(--light);
}

@media (max-width: 768px) {
    /* Adjust navbar links for mobile */
    .navbar-premium-dark .nav-link {
        font-size: 1rem;
        padding: 8px 12px !important;
    }
    /* Full-width dropdown menu on mobile */
    .navbar-premium-dark .dropdown-menu {
        width: 100% !important;
        min-width: unset;
        border-radius: 0;
    }
    .navbar-premium-dark .dropdown-menu .dropdown-item {
        padding: 0.75rem 1rem;
        text-align: left;
    }
    /* Adjust toggle button spacing */
    .navbar-toggler {
        margin-right: 1rem;
    }
}

.navbar-premium-dark .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 14px;
    background-color: #b88746;
    transition: var(--transition-smooth);
}

.navbar-premium-dark .nav-link:hover::after,
.navbar-premium-dark .nav-link.active::after {
    width: calc(100% - 28px);
}

.navbar-premium-dark .nav-link:hover,
.navbar-premium-dark .nav-link.active {
    color: #b88746 !important;
}

/* Golden CTA Button */
.btn-premium-gold {
    background: linear-gradient(135deg, #b88746 0%, #9e7135 100%);
    border: none;
    color: #ffffff !important;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(184, 135, 70, 0.35);
}
.btn-premium-gold i {
    color: #ffffff !important;
}
.btn-premium-gold:hover, .btn-premium-gold:focus {
    background: linear-gradient(135deg, #9e7135 0%, #855d2b 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 135, 70, 0.5);
}

/* Dropdown Menu Professional Styles */
@media (min-width: 992px) {
    .navbar-premium-dark .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    .navbar-premium-dark .nav-item.dropdown:hover .dropdown-arrow-icon {
        transform: rotate(180deg);
    }
    .navbar-premium-dark .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 0px !important;
    }
}

.navbar-premium-dark .dropdown-menu {
    background-color: #0c101b !important;
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    padding: 10px 0 !important;
    min-width: 210px !important;
}

.navbar-premium-dark .dropdown-item {
    color: #e2e8f0 !important;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem !important;
    padding: 8px 20px !important;
    transition: var(--transition-smooth);
}

.navbar-premium-dark .dropdown-item:hover {
    background-color: rgba(197, 168, 128, 0.08) !important;
    color: #c5a880 !important;
    padding-left: 24px !important; /* Elegant shift right on hover */
}

/* Golden CTA Button */
.btn-premium-gold {
    background-color: #544129;
    border: 1px solid #c5a880;
    color: #ffffff !important;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 10px 22px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-premium-gold i {
    color: #c5a880 !important;
}
.btn-premium-gold:hover, .btn-premium-gold:focus {
    background-color: #614d33;
    border-color: #c5a880;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.25);
}

/* Page Layout Main Element Padding Offset */
main {
    padding-top: 80px !important;
}
@media (min-width: 992px) {
    main {
        padding-top: 112px !important;
    }
}

/* Hero Section Slider */
.hero-slider-container {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 15, 26, 0.85) 30%, rgba(10, 15, 26, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-light);
    max-width: 650px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.4s ease-out;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light-muted);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.6s ease-out;
}

.hero-content .hero-btns {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.8s ease-out;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content p,
.hero-slide.active .hero-content .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-control.prev { left: 30px; }
.slider-control.next { right: 30px; }

/* Premium Section Styling */
.section-padding {
    padding: 100px 0;
}

.bg-dark-premium {
    background-color: var(--dark);
    color: var(--text-light);
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

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

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Shared About-section Typography */
.about-design-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.about-design-title {
    font-size: 2.6rem;
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

/* Premium Card Zoom effect */
.premium-card {
    background: var(--light-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 127, 26, 0.2);
}

.premium-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66.6%; /* 3:2 Aspect Ratio */
}

.premium-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.premium-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.premium-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
/* Before After Compare Slider */
.ba-description {
    font-size: 1.05rem;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    z-index: 2;
    width: 50%;
    left: auto;
    right: 0;
    overflow: hidden;
}

.ba-after-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    color: var(--primary);
    font-size: 14px;
    transition: transform 0.2s;
}

.ba-slider:hover .ba-slider-handle {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-label {
    position: absolute;
    bottom: 20px;
    background: rgba(10, 15, 26, 0.8);
    color: white;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 5;
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

/* Cost Calculator Style */
.calculator-card {
    background: var(--light-surface);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.calc-range-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
}

.calc-range-slider {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: transform 0.1s;
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-option-btn {
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: white;
    height: 100%;
}

.calc-option-btn.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(212, 127, 26, 0.1);
}

.calc-result-box {
    background: var(--dark);
    color: white;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-result-price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 15px 0;
}

/* Floating Elements */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-4px);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.appointment-trigger-btn {
    background-color: var(--primary);
}

/* Photo Gallery Grid & Lightbox */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

@media(max-width: 991px) {
    .gallery-grid { column-count: 2; }
}

@media(max-width: 575px) {
    .gallery-grid { column-count: 1; }
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.6s;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: white;
}

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

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.95);
    z-index: 1050;
    align-items: center;
    justify-content: center;
}

.lightbox-modal-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
}

.lightbox-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Footer Section */
.footer-premium {
    margin-top: 80px;
    background-color: #11151D !important;
    color: var(--text-light-muted);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary);
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Counters section styling */
.counter-box {
    text-align: center;
    padding: 35px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}
.counter-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(184, 135, 70, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.counter-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #b88746; /* Gold accent color */
    margin-bottom: 8px;
}
.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments for 2-column mobile grid */
@media (max-width: 576px) {
    .premium-card-body {
        padding: 15px !important;
    }
    .premium-card-title {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    .premium-card-text {
        font-size: 0.78rem !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }
    .premium-card-body .btn-premium {
        padding: 8px 12px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.2px !important;
    }
    .premium-card-body a {
        font-size: 0.8rem !important;
    }
}

/* Why Choose Us & How It Works Sections Styling */
.why-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(184, 135, 70, 0.12) !important;
    border-color: #b88746 !important;
}
.why-icon-box {
    transition: all 0.4s ease;
}
.why-card:hover .why-icon-box {
    background-color: #b88746 !important;
    color: white !important;
    transform: rotate(360deg);
}

/* Glassmorphic Process Section with Background Image */
.process-luxury-section {
    position: relative;
    background-image: url('../uploads/about_premium.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}
.process-luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 21, 29, 0.88); /* Deep brand dark overlay #11151D with opacity */
    z-index: 1;
}
.process-luxury-content {
    position: relative;
    z-index: 2;
}
.process-glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.process-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 135, 70, 0.5);
    transform: translateY(-5px);
}
.process-circle-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #b88746; /* Gold brand border */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #11151D;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.process-glass-card:hover .process-circle-wrap {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(184, 135, 70, 0.3);
}
.process-step-num {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #b88746;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.process-step-title {
    font-family: var(--font-sans) !important;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.4;
}
.process-step-col {
    position: relative;
}
@media (min-width: 1200px) {
    .process-step-col:not(:last-child)::after {
        content: '→';
        font-family: var(--font-sans);
        position: absolute;
        top: 75px;
        right: -30%;
        width: 60%;
        text-align: center;
        color: rgba(255, 255, 255, 0.4);
        font-size: 1.1rem;
        border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
        padding-bottom: 5px;
        z-index: 10;
        pointer-events: none;
    }
}

/* Glassmorphic Process Slider Carousel Styles */
.process-slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 15px 0;
}
.process-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.process-slider-track {
    display: flex;
    gap: 24px;
}
.process-slide-item {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    box-sizing: border-box;
}
@media (max-width: 1199px) {
    .process-slide-item {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}
@media (max-width: 991px) {
    .process-slide-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}
@media (max-width: 575px) {
    .process-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.process-slider-arrows {
    display: flex;
    gap: 12px;
}
.process-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.process-arrow-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 15px rgba(184, 135, 70, 0.25);
}

/* Overlapping Footer CTA Card styling */
.footer-cta-card {
    position: relative;
    z-index: 10;
}
.bg-dark-surface {
    background-color: #232323 !important;
    border: none !important;
}
.cta-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 75% 100%);
    z-index: 2;
}
.cta-gold-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0a430; /* Orange Gold */
    clip-path: polygon(25% 0, 32% 0, 75% 100%, 0% 100%);
    z-index: 1;
}
.btn-premium-cta {
    background-color: #f0a430;
    color: #232323 !important;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 24px;
    border: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    font-family: var(--font-sans);
}
.btn-premium-cta:hover {
    background-color: #d68910;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 164, 48, 0.3);
}

/* Spacing for last section before footer */
body > main > section:last-of-type,
main > section:last-child {
    padding-bottom: 90px !important;
}

/* Custom Hero Layout & Elements */
.hero-slider-container {
    height: 70vh !important;
    min-height: 480px !important;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.15) 100%) !important;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #b88746;
    border-radius: 4px;
    padding: 6px 14px;
    color: #b88746;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    background-color: rgba(184, 135, 70, 0.05);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4.2rem !important;
    font-weight: 600;
    line-height: 1.15 !important;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-content h1 span.gold-serif {
    color: #b88746;
    font-family: var(--font-serif);
}

.btn-hero-explore {
    background: linear-gradient(135deg, #b88746 0%, #9e7135 100%);
    border: none;
    color: #ffffff;
    padding: 15px 34px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.btn-hero-explore:hover {
    background: linear-gradient(135deg, #9e7135 0%, #855d2b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 135, 70, 0.4);
    color: #ffffff;
}

.btn-hero-play {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 15px 34px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    margin-left: 15px;
}
.btn-hero-play i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #b88746;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b88746;
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}
.btn-hero-play:hover {
    border-color: #ffffff;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}
.btn-hero-play:hover i {
    background-color: #b88746;
    color: #ffffff;
}

.slider-control {
    width: 54px !important;
    height: 54px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition-smooth) !important;
    font-size: 1.1rem !important;
}
.slider-control:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
}

/* Indicators (dots) */
.hero-slider-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 25;
}
.hero-indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.6;
}
.hero-indicator-dot.active {
    background-color: #b88746;
    opacity: 1;
    transform: scale(1.2);
}

/* Overlapping Features Bar */
.floating-features-bar {
    position: relative;
    z-index: 30;
    margin-top: -75px; /* Overlap slider */
    margin-bottom: 30px;
}
.features-bar-inner {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 30px 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    height: 100%;
}
.feature-item-divider {
    border-right: 1px solid #eeeeee;
}
.feature-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #1e1b18; /* Very dark/black background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon-circle i {
    color: #c5a880;
    font-size: 1.5rem;
}
.feature-text-box {
    display: flex;
    flex-direction: column;
}
.feature-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.feature-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: #777777;
    line-height: 1.3;
}

/* Floating Actions Redesign */
.floating-container {
    bottom: 30px !important;
    right: 30px !important;
    gap: 12px !important;
}
.floating-btn {
    width: 52px !important;
    height: 52px !important;
    font-size: 22px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}
.appointment-trigger-btn {
    background: linear-gradient(135deg, #b88746 0%, #9e7135 100%) !important;
}

/* Mobile Responsiveness for features bar */
@media (max-width: 991px) {
    .hero-slider-container {
        height: 55vh !important;
        min-height: 380px !important;
    }
    .floating-features-bar {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .feature-item-divider {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .feature-item {
        padding: 5px 10px;
    }
    .hero-slider-indicators {
        bottom: 40px;
    }
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    .btn-hero-play {
        margin-left: 0;
        margin-top: 10px;
        display: flex;
    }
}

/* About Section Design - Clean Layout & Typography */
.about-image-single img {
    border-radius: 10px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.about-design-content {
    padding-left: 10px;
}
.about-design-subtitle {
    font-family: var(--font-sans);
    color: #b88746;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}
.about-design-title {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-design-divider {
    width: 60px;
    height: 3px;
    background-color: #b88746;
    margin-bottom: 25px;
}
.about-design-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 20px;
}
.btn-about-solid {
    background-color: #a87c43 !important;
    border: 1px solid #a87c43 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 12px 28px !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-about-solid:hover {
    background-color: #916632 !important;
    border-color: #916632 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 124, 67, 0.25);
}
.btn-about-outline {
    background-color: transparent !important;
    border: 1px solid #a87c43 !important;
    color: #a87c43 !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 12px 28px !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-about-outline:hover {
    background-color: #a87c43 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 124, 67, 0.25);
}

@media (max-width: 991px) {
    .about-design-title {
        font-size: 2.2rem !important;
    }
    .about-design-content {
        padding-left: 0;
    }
}

/* Premium Gold Utilities & Refinements */
.text-gold-premium {
    color: #b88746 !important;
    transition: all 0.3s ease;
}
.text-gold-premium:hover {
    color: #9e7135 !important;
}
.bg-gold-premium {
    background-color: #b88746 !important;
}
.icon-gold-badge {
    background-color: rgba(184, 135, 70, 0.08) !important;
    color: #b88746 !important;
    transition: all 0.3s ease;
}
.why-card:hover .icon-gold-badge {
    background-color: #b88746 !important;
    color: #ffffff !important;
}
.hover-gold {
    transition: all 0.3s ease;
}
.hover-gold:hover {
    color: #b88746 !important;
}
/* Premium FAQ Section Accordion styling */
.premium-faq .accordion-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 8px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01) !important;
    transition: all 0.3s ease;
}
.premium-faq .accordion-item:hover {
    border-color: rgba(184, 135, 70, 0.25) !important;
    box-shadow: 0 10px 25px rgba(184, 135, 70, 0.05) !important;
}
.premium-faq .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff !important;
    padding: 22px 28px;
    background-color: #11151D !important;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
}
.premium-faq .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #11151D !important;
}
.premium-faq .accordion-button::after {
    filter: brightness(0) invert(1); /* White arrow/tint or similar to match white text */
}
.premium-faq .accordion-body {
    padding: 24px 28px;
    font-size: 0.95rem;
    line-height: 1.75;
    background-color: #ffffff;
    border-top: 1px solid rgba(184, 135, 70, 0.08);
}

/* Responsive About Section Image Heights */
.about-responsive-img {
    object-fit: cover;
    transition: var(--transition-smooth);
}
@media (max-width: 991px) {
    .about-responsive-img {
        min-height: 280px !important;
        max-height: 340px !important;
    }
}
@media (min-width: 992px) {
    .about-responsive-img {
        min-height: 520px !important;
    }
}

/* Premium Portfolio Slider Carousel Styles */
.portfolio-slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 15px 0;
}
.portfolio-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.portfolio-slider-track {
    display: flex;
    gap: 24px;
}
.portfolio-slide-item {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .portfolio-slide-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}
@media (max-width: 575px) {
    .portfolio-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.portfolio-slider-arrows {
    position: absolute;
    right: 0;
    bottom: 12px;
    display: flex;
    gap: 12px;
}
@media (max-width: 767px) {
    .portfolio-slider-arrows {
        position: relative;
        justify-content: center;
        margin-top: 15px;
        bottom: 0;
    }
}
.portfolio-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.portfolio-arrow-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 15px rgba(184, 135, 70, 0.25);
}

/* Luxury Testimonials Styling */
.testimonial-luxury-section {
    position: relative;
    overflow: hidden;
    background-color: #faf8f5 !important; /* Elegant light cream background */
}
.giant-quote-mark {
    position: absolute;
    top: -40px;
    left: 40px;
    font-size: 15rem;
    font-family: var(--font-serif);
    color: rgba(184, 135, 70, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.text-dark-blue {
    color: #0f172a !important; /* Deep blue/gray */
}
.testimonial-slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 60px; /* Space for overlapping avatar */
    padding-bottom: 20px;
}
.testimonial-slider-container::-webkit-scrollbar {
    display: none;
}
.testimonial-slider-track {
    display: flex;
    gap: 30px;
}
.testimonial-slide-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .testimonial-slide-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media (max-width: 575px) {
    .testimonial-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Card Design */
.testimonial-luxury-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 55px 30px 35px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.testimonial-luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(184, 135, 70, 0.08);
    border-color: rgba(184, 135, 70, 0.15);
}

/* Overlapping Avatar */
.testimonial-avatar-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    outline: 2px solid #b88746; /* Gold ring border */
    background: white;
}
.testimonial-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Inner Elements */
.testimonial-quote-icon {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: #b88746;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.8;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: var(--font-sans);
    flex-grow: 1;
}
.testimonial-client-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.testimonial-stars {
    color: #b88746;
    font-size: 0.9rem;
}

/* Custom Dots styling to match the screenshot */
.testimonial-slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #cbd5e1;
    transition: var(--transition-smooth);
    cursor: pointer;
    padding: 0;
}
.testimonial-dot.active {
    width: 28px;
    height: 10px;
    border-radius: 5px;
    background-color: #b88746;
}

/* Before After Slider Button Tabs */
.btn-outline-premium {
    background-color: transparent;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 700 !important; /* Bold text */
    padding: 10px 24px;
    border-radius: 4px !important;
    transition: all 0.3s ease;
    white-space: nowrap !important; /* Prevent text wrapping inside buttons */
}
.btn-outline-premium:hover, .btn-outline-premium.active {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Hide scrollbars for the tabs container */
.ba-tabs-wrapper::-webkit-scrollbar {
    display: none !important;
}
.ba-tabs-wrapper {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
/* Mobile Slide-in Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

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

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: #ffffff;
    z-index: 2001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333333;
    padding: 5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: #b88746;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-link {
    display: block;
    padding: 15px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.mobile-nav-link.active {
    color: #b88746 !important;
    border-left: 4px solid #b88746;
    padding-left: 20px; /* offset the border */
    background-color: rgba(184, 135, 70, 0.05);
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    padding: 15px 24px;
    color: #666666;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-nav-item.open .mobile-dropdown-toggle {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    display: none;
    background-color: #fcfbfa;
}

.mobile-dropdown-item {
    display: block;
    padding: 10px 40px;
    font-size: 0.95rem;
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-dropdown-item:hover {
    color: #b88746;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.btn-mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #b88746 0%, #9e7135 100%);
    color: #ffffff !important;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(184, 135, 70, 0.3);
}


.btn-mobile-cta:hover {
    background: linear-gradient(135deg, #9e7135 0%, #855d2b 100%);
    transform: translateY(-1px);
}

/* Global Typography Unification (matching Home About section sizes) */
.about-design-title,
.section-title,
.col-lg-8 > h2,
.col-lg-7 > h2,
.seo-content-block h2,
main h2.font-serif,
.col-lg-5 > h2 {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.col-lg-8 > h3,
.col-lg-7 > h3,
.seo-content-block h3,
main h3.font-serif,
.col-lg-5 > h3 {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

@media (max-width: 991px) {
    .about-design-title,
    .section-title,
    .col-lg-8 > h2,
    .col-lg-7 > h2,
    .seo-content-block h2,
    main h2.font-serif,
    .col-lg-5 > h2 {
        font-size: 2.2rem !important;
    }
    .col-lg-8 > h3,
    .col-lg-7 > h3,
    .seo-content-block h3,
    main h3.font-serif,
    .col-lg-5 > h3 {
        font-size: 1.8rem !important;
    }
}

.about-design-text,
.seo-content-block,
.seo-content-block p,
.ba-description,
.col-lg-8 > p,
.col-lg-7 > p,
.col-lg-5 > p,
.testimonial-text,
main section .lead {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: #555555 !important;
}

/* Fix for text-white/dark background headings getting overridden by global dark color rules */
.text-white,
.section-title.text-white,
.text-white.section-title,
.bg-dark-premium h2,
.process-luxury-section h2 {
    color: #ffffff !important;
}



