/* ============================
   Luxury Beige Color Palette
============================ */

/* hero.css */

/* ==========================================================================
   1. Root Variables & Base Styles
   ========================================================================== */
:root {
    --body-bg: #F8F5EF;
    --section-bg: #F2ECE2;
    --card-bg: #FFFFFF;
    --primary: #B89C80;
    --primary-dark: #9C7757;
    --secondary: #D2C0AB;
    --accent: #C7A16A;
    --heading: #775841;
    --text: #544233;
    --text-light: #8F7B69;
    --border: #E9E0D6;
    --white: #FFFFFF;
    --black: #2E241D;
    --shadow-sm: 0 4px 12px rgba(84, 66, 51, .06);
    --shadow: 0 12px 35px rgba(84, 66, 51, .10);
    --shadow-lg: 0 20px 50px rgba(84, 66, 51, .15);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --gradient: linear-gradient(135deg, #F8F5EF 0%, #F2ECE2 50%, #E4D6C6 100%);
}

body {
    background: var(--body-bg);
    font-family: "Montserrat", sans-serif;
    color: var(--text);
}

h1,
h2,
h3,
h4 {
    color: #17120E;
}

/* ==========================================================================
   2. Navbar & Dropdown Component
   ========================================================================== */
.lux-navbar {
    padding: 0 0 25px;
}

.lux-logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: .3s ease;
}

.lux-logo-img:hover {
    transform: scale(1.03);
}

.lux-navbar .nav-link {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    margin: 0 7px;
    transition: .3s ease;
}

.lux-navbar .nav-link:hover {
    color: var(--primary-dark);
}

.lux-contact-btn {
    background: var(--primary-dark);
    color: var(--white) !important;
    padding: 7px 18px !important;
    border-radius: 30px;
}

.lux-contact-btn:hover {
    background: var(--heading);
}

.lux-toggler {
    border: 1px solid var(--border);
    box-shadow: none;
}

.lux-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 10px;
}

.lux-dropdown .dropdown-item {
    color: var(--text);
    font-size: 14px;
    border-radius: 8px;
    padding: 8px 12px;
}

.lux-dropdown .dropdown-item:hover {
    background: var(--section-bg);
    color: var(--primary-dark);
}

/* Desktop Dropdown Hover State */
@media (min-width: 992px) {
    .lux-navbar .dropdown {
        position: relative;
    }

    .lux-navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: .3s ease;
        pointer-events: none;
        margin-top: 0;
        top: 100%;
    }

    .lux-navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* ==========================================================================
   3. Hero Section Components
   ========================================================================== */
.lux-hero {
    background: var(--gradient);
    padding: 40px 0;
}

.lux-hero-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 18px 28px 36px;
}

.lux-hero-content .lux-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(20px, 3vw, 42px);
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
    margin-bottom: 12px;
}

.lux-subtitle {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-shadow:
        0 0 8px rgba(199, 161, 106, .65),
        0 0 18px rgba(199, 161, 106, .45),
        0 0 28px rgba(199, 161, 106, .25);
}

.pulse-badge {
    padding: 6px 16px;
    background: var(--section-bg);
    border-radius: 20px;
    animation: luxuryPulse 2.5s infinite ease-in-out;
}

@keyframes luxuryPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 119, 87, .4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 12px 6px rgba(199, 161, 106, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 119, 87, 0);
    }
}

.lux-hero-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

.lux-hero-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ==========================================================================
   4. Hero Phone Action Button
   ========================================================================== */
.lux-hero-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15px;
    margin-bottom: 40px;
}

.lux-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    padding: 10px 24px;

    color: #fff;

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    border: 1px solid rgba(199, 161, 106, .18);
    border-radius: 50px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(199, 161, 106, .08) inset,
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.lux-hero-phone::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 55%);

    filter: blur(18px);
}


.lux-hero-phone:hover {
    transform: translateY(-3px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        0 0 0 1px rgba(199, 161, 106, .18) inset;
}

.lux-hero-phone .phone-icon-span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--section-bg);
    color: var(--primary-dark);
    border-radius: 50%;
    transition: .4s ease;
}

.lux-hero-phone .phone-number-text {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1.5px;
    transition: .4s ease;
}

.lux-hero-phone:hover {
    border-color: var(--accent);
    background: var(--heading);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(119, 88, 65, .15),
        0 0 15px rgba(199, 161, 106, .2);
}

.lux-hero-phone:hover .phone-icon-span {
    background: var(--accent);
    color: var(--heading);
}

/* ==========================================================================
   5. Responsive Media Queries
   ========================================================================== */

/* Laptop / Large Screens */
@media (max-width: 1199px) {
    .lux-hero-image img {
        height: 520px;
    }

    .lux-navbar .nav-link {
        font-size: 13px;
        margin: 0 4px;
    }
}

/* Tablets / Mobile Menu Breakpoint */
@media (max-width: 991.98px) {
    .lux-hero {
        padding: 25px 0;
    }

    .lux-hero-card {
        padding: 16px;
        border-radius: 22px;
    }

    .lux-navbar {
        padding-bottom: 18px;
    }

    .lux-logo-img {
        height: 56px;
    }

    .navbar-collapse {
        background: var(--section-bg);
        margin-top: 15px;
        padding: 16px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
    }

    .lux-navbar .nav-link {
        margin: 5px 0;
        font-size: 14px;
    }

    .lux-contact-btn {
        display: inline-block;
        margin-top: 8px;
    }

    .lux-navbar .dropdown-menu {
        display: none;
        position: static;
        float: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 8px 0 0;
        padding: 8px;
        background: var(--body-bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: none;
        pointer-events: auto;
    }

    .lux-navbar .dropdown-menu.show {
        display: block;
    }

    .lux-dropdown .dropdown-item {
        padding: 10px 14px;
    }

    .lux-hero-content .lux-title {
        font-size: clamp(24px, 5vw, 38px);
        line-height: 1.12;
    }

    .lux-subtitle {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 26px;
    }

    .lux-hero-phone-wrapper {
        margin-top: -8px;
        margin-bottom: 28px;
    }

    .lux-hero-image img {
        height: 430px;
    }
}

/* Mobile Devices */
@media (max-width: 575px) {
    .lux-hero {
        padding: 14px 0;
    }

    .lux-hero .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .lux-hero-card {
        padding: 14px;
        border-radius: 18px;
    }

    .lux-logo-img {
        height: 46px;
    }

    .lux-hero-content .lux-title {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.15;
        letter-spacing: .5px;
        margin-bottom: 10px;
    }

    .lux-subtitle {
        font-size: 11px;
        letter-spacing: .7px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .lux-hero-phone {
        padding: 8px 16px;
        gap: 8px;
    }

    .lux-hero-phone .phone-number-text {
        font-size: 14px;
        letter-spacing: .5px;
    }

    .lux-hero-phone .phone-icon-span {
        width: 26px;
        height: 26px;
    }

    .lux-hero-phone .phone-icon-span svg {
        width: 15px;
        height: 15px;
    }

    .lux-hero-image {
        border-radius: 16px;
    }

    .lux-hero-image img {
        height: 300px;
    }
}

/* ============================
end  Hero Section
============================ */


/* ----------------------------------------------------------------------------------------------------------------- */

/* start service section */

/* ==========================================================================
   1. Section Structure & Layout Infrastructure
   ========================================================================== */
.services-section {
    background-color: var(--body-bg, #F8F5EF);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    color: var(--heading, #775841);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 12px 0 8px;
}

/* Dividers */
.header-divider,
.card-divider {
    color: var(--accent, #C7A16A);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-divider::before,
.header-divider::after,
.card-divider::before,
.card-divider::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--border, #E9E0D6);
}

/* Slider Track Mechanics */
.services-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.services-viewport {
    overflow: hidden;
    width: 100%;
    padding: 20px 5px;
}

.services-viewport::-webkit-scrollbar {
    display: none;
}

.services-grid {
    display: flex;
    gap: 25px;
    transition: transform 0.45s ease;
}

/* ==========================================================================
   2. Individual Service Cards
   ========================================================================== */
.service-card {
    background-color: var(--card-bg, #FFFFFF);
    border: 1px solid var(--border, #E9E0D6);
    border-radius: var(--radius-lg, 28px);
    padding: 45px 30px;
    min-width: 300px;
    flex: 0 0 calc(33.333% - 17px);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm, 0 4px 12px rgba(84, 66, 51, .06));
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active State Design Alterations */
.service-card.active-card {
    background-color: var(--section-bg, #F2ECE2) !important;
    border-color: var(--accent, #C7A16A);
    transform: translateY(-8px);
    box-shadow: var(--shadow, 0 12px 35px rgba(84, 66, 51, .10));
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--border, #E9E0D6);
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-dark, #9C7757);
}

.card-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--heading, #775841);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 15px;
    text-align: center;
}

/* Spacer Mechanics */
.service-card-spacer {
    flex: 0 0 calc(66.666% - 17px);
    min-width: 0;
}

/* ==========================================================================
   3. Buttons & Interactive Controls
   ========================================================================== */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding: 10px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-dark, #9C7757);
    background-color: transparent;
    border: 1px solid var(--border, #E9E0D6);
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.see-more-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover {
    background-color: var(--primary-dark, #9C7757);
    border-color: var(--primary-dark, #9C7757);
    color: #FFFFFF !important;
}

.see-more-btn:hover svg {
    transform: translateX(4px);
}

/* Active Context Modifications */
.active-card .see-more-btn {
    background-color: var(--white, #FFFFFF);
    border-color: var(--accent, #C7A16A);
}

.active-card .see-more-btn:hover {
    background-color: var(--border, #E9E0D6) !important;
    border-color: var(--primary-dark, #9C7757) !important;
    color: #544233 !important;
}

/* Navigation Arrow Elements */
.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border, #E9E0D6);
    background-color: var(--white, #FFFFFF);
    color: var(--heading, #775841);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.nav-arrow:hover {
    background-color: var(--primary-dark, #9C7757);
    border-color: var(--primary-dark, #9C7757);
    color: #FFFFFF;
}

.nav-arrow svg {
    width: 18px;
    height: 18px;
}

/* Pagination Dots */
.services-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.services-pagination .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #D6C8B8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-pagination .dot.active {
    background-color: var(--primary-dark, #9C7757);
    transform: scale(1.3);
}

/* ==========================================================================
   4. Responsive Media Queries
   ========================================================================== */

/* Medium Devices (Tablets/Landscape) */
@media (max-width: 991px) {
    .services-grid::after {
        flex: 0 0 calc(50% - 13px);
    }

    .service-card {
        flex: 0 0 calc(50% - 13px);
    }

    .service-card-spacer {
        flex: 0 0 calc(50% - 13px);
    }
}

/* Small Devices (Mobile Viewports) */
@media (max-width: 767px) {
    .services-grid::after {
        flex: 0 0 0;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .service-card-spacer {
        display: none;
    }

    .nav-arrow {
        display: none;
    }
}


/* end services section */

/* --------------------------------------------------------------------------------------------------------------- */

/* start about section */

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

/* ==========================================================================
   1. Luxury Canvas Backdrop & Animated Silk Orbs
   ========================================================================== */
.lux-gallery-section {
    background-color: #16110D;
    /* Pure Deep Luxury Obsidian/Espresso Base */
    position: relative;
    overflow: hidden;
    color: #F7F5F0;
    font-family: "Montserrat", sans-serif;
}

.lux-ambient-blur-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Organic Shifting Fluid Lights */
.lux-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.16;
    mix-blend-mode: screen;
    will-change: transform;
}

.lux-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #C7A16A 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: luxuryOrbMove1 25s ease-in-out infinite alternate;
}

.lux-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #9C7757 0%, transparent 70%);
    bottom: -5%;
    right: 5%;
    animation: luxuryOrbMove2 30s ease-in-out infinite alternate;
}

/* ==========================================================================
   2. HIGH-ELEVATION GOLD OUTLINED GEOMETRIC SHAPES (Bold & Glow Engine)
   ========================================================================== */
.lux-geo-shape {
    position: absolute;
    border: 2px solid #C7A16A;
    /* Increased block thickness to 2px */
    pointer-events: none;
    opacity: 0.35;
    /* Elevated opacity from 0.12 to 0.35 for sharp contrast */
    box-shadow: 0 0 20px rgba(199, 161, 106, 0.25), inset 0 0 15px rgba(199, 161, 106, 0.15);
    /* Dual luxury neon gold radiance */
    will-change: transform, opacity;
}

/* Intersecting Rotated Diamond Shape Behind Text Column */
.shape-diamond {
    width: 220px;
    height: 220px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation: luxuryRotateShape 30s linear infinite;
    /* Slightly accelerated rotational speed */
}



/* Linear Rectangular Nested Frame Over Right Panel Margin */
.shape-frame-rect {
    width: 340px;
    height: 500px;
    right: 3%;
    top: 8%;
    border-color: #C7A16A;
    border-width: 2px;
    border-radius: 8px;
    animation: luxuryFloatShape 20s ease-in-out infinite alternate-reverse;
}

/* ==========================================================================
   3. Typography System
   ========================================================================== */
.lux-meta-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.lux-badge-num {
    font-size: 13px;
    font-weight: 700;
    color: #C7A16A;
    letter-spacing: 1px;
}

.lux-badge-line {
    width: 35px;
    height: 1px;
    background: rgba(199, 161, 106, 0.4);
}

.lux-badge-txt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #A39B94;
}

.lux-display-title {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.lux-serif-accent {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C7A16A;
}

.lux-lead-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #D2C0AB;
}

.lux-section-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.lux-body-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #A39B94;
}

/* ==========================================================================
   4. Interactive Card Componentry
   ========================================================================== */
.lux-contact-pill-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(199, 161, 106, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.lux-contact-pill-box:hover {
    border-color: rgba(199, 161, 106, 0.6);
    transform: translateY(-2px);
}

.lux-phone-icon-frame {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(199, 161, 106, 0.15);
    color: #C7A16A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-phone-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #A39B94;
    margin-bottom: 2px;
}

.lux-phone-number {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.lux-phone-number:hover {
    color: #C7A16A;
}

/* Premium Action Trigger Arrow Button */
.lux-action-trigger {
    display: inline-block;
    text-decoration: none;
    width: 100%;
}

.lux-btn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    background: #C7A16A;
    color: #16110D;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.35s ease;
}

.lux-action-trigger:hover .lux-btn-inner {
    transform: translateY(-3px);
    background-color: #E2B980;
}

/* ==========================================================================
   5. Asymmetric Image Gallery Grid Stack
   ========================================================================== */
.lux-split-gallery-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.lux-gallery-card {
    position: relative;
    width: 80%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-offset-left {
    align-self: flex-start;
}

.card-offset-right {
    align-self: flex-end;
    margin-top: -80px;
}

.lux-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lux-img-inner img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.lux-tag-indicator {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(22, 17, 13, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-tag-indicator.premium-gold {
    color: #C7A16A;
    border-color: rgba(199, 161, 106, 0.3);
}

/* Framing Line Overlays */
.lux-frame-accent-line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(199, 161, 106, 0.25), transparent);
    z-index: 2;
    pointer-events: none;
}

.lux-frame-accent-line.line-v {
    top: -10%;
    bottom: -10%;
    left: 45%;
    width: 1px;
}

.lux-frame-accent-line.line-h {
    left: -5%;
    right: -5%;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(199, 161, 106, 0.25), transparent);
}

/* ==========================================================================
   6. Keyframe Animation Engines
   ========================================================================== */
@keyframes luxuryOrbMove1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
    }
}

@keyframes luxuryOrbMove2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, -60px) scale(1.1);
    }
}

@keyframes luxuryRotateShape {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

@keyframes luxuryFloatShape {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.35;
    }

    100% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.6;
    }
}

/* ==========================================================================
   7. Responsive Viewport Adaptations
   ========================================================================== */
@media (max-width: 991.98px) {
    .card-offset-right {
        margin-top: 0;
    }

    .lux-gallery-card {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .lux-frame-accent-line,
    .lux-geo-shape {
        display: none;
        /* Hide background details on mobile to ensure perfect legibility */
    }
}

.lux-gallery-sparkles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.lux-gallery-sparkles span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C7A16A;
    box-shadow:
        0 0 8px rgba(199, 161, 106, .9),
        0 0 18px rgba(199, 161, 106, .6),
        0 0 34px rgba(199, 161, 106, .35);
    animation: galleryGoldSparkle 5s ease-in-out infinite;
}

.lux-gallery-sparkles span::before,
.lux-gallery-sparkles span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #C7A16A;
    transform: translate(-50%, -50%);
}

.lux-gallery-sparkles span::before {
    width: 18px;
    height: 1px;
}

.lux-gallery-sparkles span::after {
    width: 1px;
    height: 18px;
}

.lux-gallery-sparkles span:nth-child(1) {
    top: 14%;
    left: 12%;
    animation-delay: 0s;
}

.lux-gallery-sparkles span:nth-child(2) {
    top: 24%;
    right: 18%;
    animation-delay: .7s;
}

.lux-gallery-sparkles span:nth-child(3) {
    top: 58%;
    left: 8%;
    animation-delay: 1.4s;
}

.lux-gallery-sparkles span:nth-child(4) {
    top: 72%;
    right: 12%;
    animation-delay: 2.1s;
}

.lux-gallery-sparkles span:nth-child(5) {
    top: 42%;
    left: 46%;
    animation-delay: 2.8s;
}

.lux-gallery-sparkles span:nth-child(6) {
    top: 16%;
    left: 62%;
    animation-delay: 3.5s;
}

.lux-gallery-sparkles span:nth-child(7) {
    bottom: 16%;
    left: 34%;
    animation-delay: 4.2s;
}

.lux-gallery-sparkles span:nth-child(8) {
    bottom: 30%;
    right: 34%;
    animation-delay: 4.9s;
}

@keyframes galleryGoldSparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(.2) rotate(0deg);
    }

    45% {
        opacity: 1;
        transform: scale(1.35) rotate(180deg);
    }

    70% {
        opacity: .55;
        transform: scale(.75) rotate(270deg);
    }
}

/* end about section */

/* ---------------------------------------------------------------------------------------------------------------- */

/* start offers sections */

/* Core Section Styles with Coupon Adjustments */
/* ==========================================================================
   1. Root Variables & Theme Configurations
   ========================================================================== */
:root {
    --lux-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B89C80 50%, #9C7757 100%);
    --lux-heavy-shadow: 0 30px 70px rgba(46, 36, 29, 0.18), 0 15px 35px rgba(46, 36, 29, 0.12);
    --lux-text-shadow: 0 2px 4px rgba(84, 66, 51, 0.08);
    --lux-img-shadow: 0 25px 55px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   2. Main Structural Layout Frame
   ========================================================================== */
.lux-feature-section {
    background: var(--body-bg);
    padding: 120px 0;
}

.lux-feature-box.lux-coupon-variant {
    position: relative;
    min-height: 660px;
    background: linear-gradient(145deg, var(--secondary) 0%, #E9DFD3 100%);
    border-radius: 120px 0 120px 0;
    overflow: visible;
    padding: 80px;
    border: 1px solid rgba(184, 156, 128, 0.4);
    box-shadow: var(--lux-heavy-shadow);
}

/* Ambient inner glow ring inside the coupon block */
.lux-card-glow-overlay {
    position: absolute;
    inset: 12px;
    border-radius: 108px 0 108px 0;
    border: 1px dashed rgba(184, 156, 128, 0.25);
    pointer-events: none;
    z-index: 2;
}

.lux-feature-content {
    position: relative;
    z-index: 3;
    max-width: 540px;
}

.lux-feature-content-top {
    margin-left: 90px;
}

.lux-feature-content-bottom {
    margin-left: auto;
    margin-top: 40px;
    text-align: right;
}

/* ==========================================================================
   3. Typography & Content Presentation
   ========================================================================== */
.lux-offer-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.lux-special-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 4.5vw, 44px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--heading);
    text-shadow: var(--lux-text-shadow);
    margin: 0 0 5px 0;
}

/* Cinematic Price Focus */
.lux-price-display {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(90px, 12vw, 135px);
    font-weight: 700;
    color: var(--heading);
    line-height: 0.85;
    margin-bottom: 15px;
    letter-spacing: -2px;
    display: flex;
    align-items: flex-start;
    text-shadow: 2px 4px 15px rgba(84, 66, 51, 0.12);
}

.price-currency {
    font-size: 0.45em;
    font-weight: 300;
    position: relative;
    top: 10px;
    margin-right: 4px;
}

.price-off {
    font-size: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 15px;
    align-self: center;
    color: var(--primary-dark);
    text-shadow: none;
}

.lux-service-target {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--black);
    margin-bottom: 20px;
}

.lux-feature-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 25px;
}

.lux-coupon-terms {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

/* ==========================================================================
   4. Action Modules & Contact Triggers
   ========================================================================== */
.lux-action-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.lux-small-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;

    text-decoration: none !important;
    color: var(--white);

    padding: 18px 44px;
    border-radius: 40px;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    border: 1px solid rgba(199, 161, 106, .18);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(199, 161, 106, .08) inset,
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Soft glow */
.lux-small-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.lux-small-btn:hover {
    color: var(--white);
    transform: translateY(-3px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        0 0 0 1px rgba(199, 161, 106, .18) inset;
}

/* Click */
.lux-small-btn:active {
    transform: translateY(-1px) scale(.98);
}

.lux-small-btn:hover {
    background: var(--heading);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(119, 88, 65, 0.45);
    transform: translateY(-3px);
}

.lux-phone-callout {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-weight: 600;
}

.phone-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--heading);
    text-shadow: var(--lux-text-shadow);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   5. Interactive Graphic Clusters
   ========================================================================== */
.lux-feature-img {
    position: absolute;
    z-index: 4;
    overflow: hidden;
    border-radius: 36px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--lux-img-shadow);
}

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

.lux-feature-img-top {
    width: 320px;
    height: 250px;
    top: -50px;
    right: 80px;
}

.lux-feature-img-bottom {
    width: 350px;
    height: 280px;
    left: -45px;
    bottom: -45px;
}

.lux-image-premium-shimmer {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

/* ==========================================================================
   6. Hardware Accelerated Animations
   ========================================================================== */
.lux-animate-box {
    opacity: 0;
    transform: translateY(30px);
    animation: luxBoxReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lux-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: luxSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.float-slow {
    animation: luxFloat 7s ease-in-out infinite;
}

.float-delayed {
    animation: luxFloat 7s ease-in-out infinite;
    animation-delay: 3.5s;
}

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

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

@keyframes luxFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

/* ==========================================================================
   7. Responsive Design System Breakpoints
   ========================================================================== */

/* Tablet & Smaller Devices */
@media(max-width: 991px) {
    .lux-feature-box.lux-coupon-variant {
        min-height: auto;
        padding: 60px 40px;
        border-radius: 60px 0 60px 0;
    }

    .lux-feature-content-top,
    .lux-feature-content-bottom {
        margin-left: 0;
        margin-top: 35px;
        text-align: left;
        max-width: 100%;
    }

    .lux-action-wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .lux-small-btn {
        width: 100%;
        text-align: center;
    }

    .lux-feature-img {
        position: relative;
        width: 100%;
        height: 300px;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 40px;
    }

    .lux-feature-img-bottom {
        display: none;
    }
}

/* Mobile Viewports */
@media(max-width: 575px) {
    .lux-feature-section {
        padding: 60px 0;
    }

    .lux-feature-box.lux-coupon-variant {
        padding: 40px 24px;
        border-radius: 40px 0 40px 0;
    }

    .lux-special-title {
        font-size: 26px;
    }

    .lux-price-display {
        font-size: 85px;
    }

    .lux-service-target {
        font-size: 18px;
    }

    .lux-feature-img {
        height: 220px;
    }
}

/* end offer */

/* ---------------------------------------------------------------- */
/* start testimnoials */
/* ==========================================================================
   Luxury Beige Color Palette Variables
   ========================================================================== */
/* ==========================================================================
   1. Root Variables
   ========================================================================== */
:root {
    --body-bg: #F8F5EF;
    --section-bg: #F2ECE2;
    --card-bg: #FFFFFF;
    --primary: #B89C80;
    --primary-dark: #9C7757;
    --secondary: #D2C0AB;
    --accent: #C7A16A;
    --heading: #775841;
    --text: #544233;
    --text-light: #8F7B69;
    --border: #E9E0D6;
    --white: #FFFFFF;
    --black: #2E241D;

    --shadow-sm: 0 4px 12px rgba(84, 66, 51, .06);
    --shadow: 0 12px 35px rgba(84, 66, 51, .10);
    --shadow-lg: 0 20px 50px rgba(84, 66, 51, .15);

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
}

/* ==========================================================================
   2. Section Structural Base & Headers
   ========================================================================== */
.lux-testimonials-section {
    background-color: var(--body-bg);
    font-family: "Montserrat", sans-serif;
    color: var(--text);
}

.lux-section-title {
    color: var(--heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 8px;
}

.lux-title-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin: 0 auto;
}

/* ==========================================================================
   3. Grid Layout Infrastructure
   ========================================================================== */
.lux-testimonials-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    margin-top: 60px;
    padding-top: 30px;
}

/* ==========================================================================
   4. Component Card Styling
   ========================================================================== */
.lux-test-card {
    background-color: var(--section-bg);
    border-radius: var(--radius-lg);
    padding: 60px 30px 35px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    flex: 1;
    max-width: 380px;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.lux-test-card.lux-featured-card {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    z-index: 5;
}

/* ==========================================================================
   5. Inner Card Elements
   ========================================================================== */
.lux-test-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    overflow: hidden;
}

.lux-test-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-test-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.lux-test-stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.lux-test-quote {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.lux-test-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================================================
   6. Action Triggers & Buttons
   ========================================================================== */
.lux-btn-outline {
    display: inline-block;
    position: relative;
    overflow: hidden;

    padding: 12px 35px;

    color: #FAF8F5;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;

    border: 1px solid rgba(199, 161, 106, .25);
    border-radius: 30px;

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 30px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Soft luxury glow */
.lux-btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.lux-btn-outline:hover {
    color: #FFFFFF;
    border-color: rgba(199, 161, 106, .45);

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

/* Click */
.lux-btn-outline:active {
    transform: translateY(-1px) scale(.98);
}

.lux-btn-outline:hover {
    background-color: var(--heading);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   7. Responsive Design System Breakpoints
   ========================================================================== */
@media (min-width: 992px) {
    .lux-testimonials-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        margin-top: 80px;
    }

    .lux-test-card.lux-featured-card {
        transform: translateY(-35px);
        box-shadow: var(--shadow-lg);
    }

    /* Interactive Desktop Hovers */
    .lux-test-card.lux-featured-card:hover {
        transform: translateY(-42px) scale(1.02);
    }

    .lux-test-card:not(.lux-featured-card):hover {
        transform: translateY(-8px);
    }
}

/* end testimnoials */

/* start first section */

/* ==========================================================================
   EDITORIAL GALLERY LAYOUT ARCHITECTURE WITH SOLID BACKGROUND SQUARE
   ========================================================================== */
/* ==========================================================================
   1. Section Structural Layout
   ========================================================================== */
.lux-air-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 15% 20%, rgba(184, 156, 128, .12), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(210, 192, 171, .18), transparent 35%),
        var(--gradient);
}

.lux-air-section .container {
    position: relative;
    z-index: 3;
}

/* Animated Background */
.lux-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 12%;
    border: 1px solid rgba(184, 156, 128, .25);
    box-shadow: inset 0 0 60px rgba(184, 156, 128, .08);
    animation: luxFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: 8%;
    background: radial-gradient(circle, rgba(199, 161, 106, .22), transparent 70%);
    animation: luxPulseOrb 8s ease-in-out infinite;
}

.lux-gold-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .75;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, transparent, rgba(184, 156, 128, .35), transparent),
        linear-gradient(90deg, transparent, rgba(199, 161, 106, .18), transparent);
    background-size: 420px 1px, 620px 1px;
    background-position: 0 18%, 0 82%;
    background-repeat: repeat-x;
    animation: luxLineMove 16s linear infinite;
}

.lux-wave-line {
    position: absolute;
    left: -10%;
    bottom: 6%;
    width: 120%;
    height: 180px;
    z-index: 1;
    opacity: .35;
    pointer-events: none;
    background: repeating-radial-gradient(ellipse at center,
            transparent 0 12px,
            rgba(184, 156, 128, .22) 13px,
            transparent 14px);
    transform: rotate(-5deg);
    animation: luxWaveDrift 14s ease-in-out infinite;
}

/* Image Area */
.lux-image-stage {
    position: relative;
    width: min(100%, 520px);
    min-height: 520px;
    margin: 0 auto;
}

.lux-dark-panel {
    position: absolute;
    width: 64%;
    height: 78%;
    left: 3%;
    bottom: 5%;
    background: linear-gradient(145deg, var(--heading), var(--text));
    border: 1px solid rgba(184, 156, 128, .35);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: luxPanelFloat 7s ease-in-out infinite;
}

.lux-image-frame {
    position: absolute;
    width: 82%;
    height: 78%;
    right: 2%;
    top: 7%;
    padding: 8px;
    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--accent),
            var(--secondary),
            var(--primary));
    box-shadow:
        var(--shadow-lg),
        0 0 40px rgba(184, 156, 128, .18);
    border-radius: 10px;
    animation: luxRevealImage 1.2s ease forwards;
}

.lux-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95) contrast(1.03);
    transition: transform 1.2s ease;
}

.lux-image-stage:hover img {
    transform: scale(1.06);
}

.lux-rotating-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    left: 8%;
    top: 0;
    border-radius: 50%;
    border: 1px solid rgba(184, 156, 128, .35);
    box-shadow: inset 0 0 40px rgba(184, 156, 128, .08);
    animation: luxRotate 24s linear infinite;
}

.lux-rotating-ring::before,
.lux-rotating-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(184, 156, 128, .18);
}

.lux-rotating-ring::before {
    inset: 28px;
}

.lux-rotating-ring::after {
    inset: 58px;
}

.lux-crest {
    position: absolute;
    left: 8%;
    bottom: 13%;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    background: var(--heading);
    color: var(--white);
    border: 1px solid var(--accent);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: luxCrestGlow 4s ease-in-out infinite;
}

.lux-crest span {
    font-size: 10px;
}

.lux-crest strong {
    font-size: 14px;
    font-weight: 600;
}

/* Content */
.lux-content {
    position: relative;
    animation: luxContentUp 1s ease forwards;
}

.lux-editorial-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 18px;
}

.lux-editorial-tag::before {
    content: "";
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.lux-editorial-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--heading);
    letter-spacing: -1.5px;
}

.lux-editorial-lead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    max-width: 560px;
}

.lux-inline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.stat-item {
    position: relative;
    min-width: 138px;
    padding: 22px 18px;
    text-align: center;
    border-radius: 999px 999px 18px 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, box-shadow .35s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(199, 161, 106, .18),
            transparent 70%),
        var(--white);

    border: 1px solid rgba(184, 156, 128, .45);

    box-shadow:
        0 0 0 8px rgba(184, 156, 128, .08),
        inset 0 0 15px rgba(199, 161, 106, .08);

    transition: .4s;
}

.stat-icon i {
    font-size: 24px;
    color: var(--primary-dark);
    transition: .4s;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--accent);
    box-shadow:
        0 0 0 10px rgba(199, 161, 106, .12),
        0 15px 30px rgba(84, 66, 51, .12);
}

.stat-item:hover .stat-icon i {
    color: var(--accent);
    transform: scale(1.15);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--heading);
}

/* Button */
.lux-btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 300px;
    padding: 20px 34px;

    position: relative;
    overflow: hidden;

    text-decoration: none !important;
    color: var(--white);

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;

    border: 1px solid rgba(199, 161, 106, .25);
    border-radius: 50px;

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Luxury glow */
.lux-btn-editorial::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.lux-btn-editorial:hover {
    color: #fff;
    border-color: rgba(199, 161, 106, .45);
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

/* Active */
.lux-btn-editorial:active {
    transform: translateY(-1px) scale(.98);
}

/* Arrow animation */
.lux-btn-editorial .btn-arrow {
    transition: transform .35s ease;
}

.lux-btn-editorial:hover .btn-arrow {
    transform: translateX(6px);
}

.lux-btn-editorial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .22),
            transparent);
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.lux-btn-editorial:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--heading));
}

.lux-btn-editorial:hover::before {
    transform: translateX(120%);
}

.btn-arrow {
    color: var(--accent);
    transition: transform .35s ease;
}

.lux-btn-editorial:hover .btn-arrow {
    transform: translateX(7px);
}


/* Animations */
@keyframes luxFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-24px) scale(1.04);
    }
}

@keyframes luxPulseOrb {

    0%,
    100% {
        transform: scale(1);
        opacity: .55;
    }

    50% {
        transform: scale(1.18);
        opacity: .85;
    }
}

@keyframes luxLineMove {
    from {
        background-position-x: 0, 0;
    }

    to {
        background-position-x: 420px, -620px;
    }
}

@keyframes luxWaveDrift {

    0%,
    100% {
        transform: translateX(0) rotate(-5deg);
    }

    50% {
        transform: translateX(45px) rotate(-3deg);
    }
}

@keyframes luxRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes luxPanelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }
}

@keyframes luxRevealImage {
    from {
        opacity: 0;
        transform: translateX(-40px) rotate(-2deg);
    }

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

@keyframes luxContentUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes luxCrestGlow {

    0%,
    100% {
        box-shadow: var(--shadow);
    }

    50% {
        box-shadow:
            var(--shadow),
            0 0 32px rgba(199, 161, 106, .45);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .lux-image-stage {
        min-height: 460px;
    }

    .lux-content {
        max-width: 680px;
        margin: 0 auto;
    }

    .lux-editorial-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .lux-inline-stats {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .lux-image-stage {
        min-height: 340px;
    }

    .lux-image-frame {
        width: 84%;
        height: 76%;
        right: 0;
    }

    .lux-dark-panel {
        width: 62%;
        height: 74%;
    }

    .lux-rotating-ring {
        width: 280px;
        height: 280px;
    }

    .lux-crest {
        width: 86px;
        height: 86px;
        bottom: 10%;
    }

    .lux-inline-stats {
        gap: 14px;
    }

    .stat-item {
        min-width: 120px;
        padding: 18px 12px;
    }

    .lux-btn-editorial {
        min-width: 100%;
    }
}

/* end first section */

/* ------------------------------------------------------------------------------------------------ */


/* start cta */
/* ==========================================================================
   Luxury Beige Theme Tokens Definition
   ========================================================================== */
/* ==========================================================================
   1. Root Variables & Theme Tokens
   ========================================================================== */
.lux-premium-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #F8F5EF;
    font-family: "Montserrat", sans-serif;
    color: var(--white);
}

.lux-premium-cta .container {
    position: relative;
    z-index: 2;
}

.lux-cta-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 55px 50px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(199, 161, 106, .08), transparent 45%),
        linear-gradient(135deg, #16110D 0%, #1E1813 100%);
    border: 1px solid rgba(199, 161, 106, .45);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* Animated Luxury Grid Pattern */
.lux-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(199, 161, 106, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 161, 106, .04) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle, #000 45%, transparent 100%);
    animation: gridMove 16s linear infinite;
    pointer-events: none;
}

/* Inner Border */
.lux-cta-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid rgba(199, 161, 106, .22);
    pointer-events: none;
}

/* Animated Rounded Squares */
.lux-cta-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.lux-cta-lines::before,
.lux-cta-lines::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(199, 161, 106, .16);
    border-radius: 22px;
    box-shadow:
        inset 0 0 28px rgba(199, 161, 106, .04),
        0 0 35px rgba(199, 161, 106, .05);
    animation: luxSquareFloat 16s ease-in-out infinite;
}

.lux-cta-lines::before {
    width: 220px;
    height: 220px;
    left: -70px;
    top: 50%;
    transform: translateY(-50%) rotate(18deg);
}

.lux-cta-lines::after {
    width: 180px;
    height: 180px;
    right: -50px;
    top: 40px;
    transform: rotate(-15deg);
    animation-delay: 5s;
}

/* Optional Soft Gold Orbs */
.lux-cta-orb {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 161, 106, .18), transparent 68%);
    filter: blur(6px);
    pointer-events: none;
}

.orb-left {
    width: 160px;
    height: 160px;
    left: -70px;
    bottom: -50px;
    animation: ctaOrbFloat 10s ease-in-out infinite;
}

.orb-right {
    width: 190px;
    height: 190px;
    right: -80px;
    top: -60px;
    animation: ctaOrbFloat 12s ease-in-out infinite reverse;
}

/* Content Layer */
.lux-cta-card>*:not(.lux-cta-lines):not(.lux-cta-orb) {
    position: relative;
    z-index: 3;
}

/* Emblem */
.lux-emblem {
    width: 62px;
    height: 62px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--accent);
    border: 1px solid rgba(199, 161, 106, .75);
    background: rgba(255, 255, 255, .03);
    box-shadow:
        0 0 0 10px rgba(199, 161, 106, .05),
        0 0 30px rgba(199, 161, 106, .2);
    animation: ctaEmblemPulse 3s ease-in-out infinite;
}

.lux-emblem span {
    font-size: 26px;
    line-height: 1;
}

.lux-sub-heading {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--accent);
    font-weight: 700;
}

.lux-brand-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--white);
    text-shadow: 0 0 24px rgba(255, 255, 255, .1);
}

.lux-divider-gold {
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent),
            transparent);
}

.lux-divider-gold::after {
    content: "✦";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    background: #16110D;
    padding: 0 12px;
    font-size: 12px;
}

.lux-cta-descr {
    max-width: 680px;
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
}

/* Phone Button */
.lux-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: min(100%, 430px);
    justify-content: center;
    padding: 18px 28px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--white) !important;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(199, 161, 106, .75);
    box-shadow:
        0 0 28px rgba(199, 161, 106, .14),
        inset 0 0 24px rgba(255, 255, 255, .04);
    transition: .35s ease;
}

.lux-phone-btn:hover {
    transform: translateY(-5px);
    background: rgba(199, 161, 106, .1);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .35),
        0 0 45px rgba(199, 161, 106, .3);
}

.phone-icon-circle {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #16110D;
    background: linear-gradient(135deg, #F8E5A0, var(--accent), var(--primary-dark));
    box-shadow:
        0 0 0 7px rgba(199, 161, 106, .12),
        0 0 26px rgba(199, 161, 106, .32);
    transition: .35s ease;
}

.lux-phone-btn:hover .phone-icon-circle {
    transform: rotate(-8deg) scale(1.06);
}

.phone-text {
    text-align: left;
}

.btn-small-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.btn-phone-number {
    display: block;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
}

.lux-caption-text {
    display: inline-block;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes luxSquareFloat {

    0%,
    100% {
        transform: translateY(-50%) rotate(18deg);
    }

    50% {
        transform: translateY(calc(-50% - 20px)) rotate(28deg);
    }
}

@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 70px 70px, 70px 70px;
    }
}

@keyframes ctaOrbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.08);
    }
}

@keyframes ctaEmblemPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 10px rgba(199, 161, 106, .05),
            0 0 30px rgba(199, 161, 106, .2);
    }

    50% {
        box-shadow:
            0 0 0 16px rgba(199, 161, 106, .025),
            0 0 45px rgba(199, 161, 106, .38);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lux-cta-card {
        padding: 45px 25px;
    }

    .lux-brand-title {
        font-size: clamp(32px, 9vw, 44px);
    }

    .lux-cta-lines::before {
        width: 150px;
        height: 150px;
        left: -80px;
    }

    .lux-cta-lines::after {
        width: 125px;
        height: 125px;
        right: -70px;
    }
}

@media (max-width: 575.98px) {
    .lux-cta-card {
        border-radius: 24px;
        padding: 42px 18px;
    }

    .lux-cta-card::after {
        inset: 10px;
        border-radius: 18px;
    }

    .lux-emblem {
        width: 56px;
        height: 56px;
    }

    .lux-phone-btn {
        flex-direction: column;
        padding: 24px 18px;
        gap: 15px;
        border-radius: 18px;
    }

    .phone-text {
        text-align: center;
    }

    .phone-icon-circle {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .btn-small-label {
        letter-spacing: 2px;
    }

    .lux-caption-text {
        font-size: 11px;
        line-height: 1.7;
    }
}

/*=====================================
  Gold Sparkles
======================================*/

.lux-sparkles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.lux-sparkles span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);

    box-shadow:
        0 0 8px rgba(199, 161, 106, .8),
        0 0 16px rgba(199, 161, 106, .55),
        0 0 28px rgba(199, 161, 106, .35);

    animation: luxSparkle 5s ease-in-out infinite;
}

.lux-sparkles span::before,
.lux-sparkles span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(199, 161, 106, .8);
    transform: translate(-50%, -50%);
}

.lux-sparkles span::before {
    width: 18px;
    height: 1px;
}

.lux-sparkles span::after {
    width: 1px;
    height: 18px;
}

/* Positions */

.lux-sparkles span:nth-child(1) {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.lux-sparkles span:nth-child(2) {
    top: 25%;
    right: 18%;
    animation-delay: 1s;
}

.lux-sparkles span:nth-child(3) {
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

.lux-sparkles span:nth-child(4) {
    top: 78%;
    right: 12%;
    animation-delay: 3s;
}

.lux-sparkles span:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1.5s;
}

.lux-sparkles span:nth-child(6) {
    top: 12%;
    left: 48%;
    animation-delay: 2.5s;
}

.lux-sparkles span:nth-child(7) {
    bottom: 18%;
    left: 40%;
    animation-delay: 4s;
}

.lux-sparkles span:nth-child(8) {
    bottom: 28%;
    right: 35%;
    animation-delay: 3.5s;
}

/* Animation */

@keyframes luxSparkle {

    0%,
    100% {
        transform: scale(.25) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: .25;
    }

    45% {
        transform: scale(1.4) rotate(180deg);
        opacity: 1;
    }

    70% {
        transform: scale(.75) rotate(270deg);
        opacity: .55;
    }

    100% {
        transform: scale(.2) rotate(360deg);
        opacity: 0;
    }

}

.lux-sparkles {
    position: absolute !important;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.lux-sparkles span {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #C7A16A;
    border-radius: 50%;
    box-shadow:
        0 0 8px rgba(199, 161, 106, .9),
        0 0 18px rgba(199, 161, 106, .6),
        0 0 32px rgba(199, 161, 106, .35);
    animation: luxSparkle 4s ease-in-out infinite;
}

.lux-sparkles span::before,
.lux-sparkles span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #C7A16A;
    transform: translate(-50%, -50%);
}

.lux-sparkles span::before {
    width: 18px;
    height: 1px;
}

.lux-sparkles span::after {
    width: 1px;
    height: 18px;
}

.lux-sparkles span:nth-child(1) {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.lux-sparkles span:nth-child(2) {
    top: 24%;
    right: 18%;
    animation-delay: .7s;
}

.lux-sparkles span:nth-child(3) {
    top: 68%;
    left: 16%;
    animation-delay: 1.4s;
}

.lux-sparkles span:nth-child(4) {
    top: 76%;
    right: 14%;
    animation-delay: 2.1s;
}

.lux-sparkles span:nth-child(5) {
    top: 44%;
    left: 24%;
    animation-delay: 2.8s;
}

.lux-sparkles span:nth-child(6) {
    top: 38%;
    right: 28%;
    animation-delay: 3.5s;
}

@keyframes luxSparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(.2) rotate(0deg);
    }

    45% {
        opacity: 1;
        transform: scale(1.4) rotate(180deg);
    }

    70% {
        opacity: .55;
        transform: scale(.8) rotate(270deg);
    }
}

/* end cta */

/* ------------------------------------------------------------------------------------------------ */


/* start second section */

/* ==========================================================================
   Luxury Beige Color Palette Architecture
   ========================================================================== */
/* ==========================================================================
   1. Root Variables & Theme Tokens
   ========================================================================== */
.lux-commercial-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(184, 156, 128, .16), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(199, 161, 106, .14), transparent 32%),
        var(--gradient);
}

.lux-commercial-section .container {
    position: relative;
    z-index: 3;
}

/* Background Animation */
.commercial-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.commercial-shape {
    position: absolute;
    border-radius: 28px;
    border: 1px solid rgba(184, 156, 128, .25);
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    box-shadow:
        0 20px 45px rgba(84, 66, 51, .08),
        inset 0 0 20px rgba(255, 255, 255, .2);
}

.shape-a {
    width: 150px;
    height: 150px;
    top: 12%;
    left: 4%;
    animation: commercialFloatA 9s ease-in-out infinite;
}

.shape-b {
    width: 95px;
    height: 95px;
    right: 8%;
    top: 18%;
    border-radius: 24px;
    animation: commercialFloatB 11s ease-in-out infinite;
}

.shape-c {
    width: 180px;
    height: 180px;
    right: 18%;
    bottom: -60px;
    border-radius: 36px;
    animation: commercialFloatC 13s ease-in-out infinite;
}

.commercial-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 106, .5), transparent);
    animation: commercialLineMove 8s linear infinite;
}

.line-a {
    width: 320px;
    top: 28%;
    left: -80px;
}

.line-b {
    width: 420px;
    right: -120px;
    bottom: 24%;
}

/* Content */
.lux-commercial-content {
    position: relative;
    animation: commercialContentIn 1s ease forwards;
}

.lux-top-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.lux-line-accent {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.lux-badge-text {
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--text-light);
}

.lux-service-label {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--primary-dark);
    font-weight: 600;
}

.lux-main-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--heading);
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.lux-editorial-divider {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent), transparent);
}

.lux-desc-para {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text);
    max-width: 590px;
    text-align: justify;
}

.lux-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Buttons */
.lux-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    padding: 16px 38px;

    color: var(--white) !important;
    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;

    border-radius: 999px;
    border: 1px solid rgba(199, 161, 106, .25);

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Luxury glow */
.lux-btn-solid::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.lux-btn-solid:hover {
    color: #fff !important;
    transform: translateY(-3px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

/* Active */
.lux-btn-solid:active {
    transform: translateY(-1px) scale(.98);
}

.lux-btn-solid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .24), transparent);
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.lux-btn-solid:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--heading));
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lux-btn-solid:hover::before {
    transform: translateX(120%);
}

.lux-phone-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 4px;
    transition: .35s ease;
}

.lux-phone-link:hover {
    color: var(--accent);
    letter-spacing: 1px;
}

/* Visual */
.lux-commercial-visual {
    position: relative;
    min-height: 520px;
    width: min(100%, 560px);
    margin: 0 auto;
}

.lux-visual-panel {
    position: absolute;
    width: 78%;
    height: 72%;
    right: 2%;
    top: 12%;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .5), rgba(242, 236, 226, .5));
    border: 1px solid rgba(184, 156, 128, .32);
    box-shadow: var(--shadow-lg);
    animation: commercialPanelFloat 7s ease-in-out infinite;
}

.lux-visual-ring {
    position: absolute;
    width: 390px;
    height: 390px;
    left: 2%;
    top: 3%;
    border-radius: 50%;
    border: 1px solid rgba(184, 156, 128, .28);
    box-shadow: inset 0 0 45px rgba(199, 161, 106, .08);
    animation: commercialRotate 24s linear infinite;
}

.lux-visual-ring::before,
.lux-visual-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(184, 156, 128, .16);
}

.lux-visual-ring::before {
    inset: 28px;
}

.lux-visual-ring::after {
    inset: 58px;
}

.lux-gallery-main {
    position: absolute;
    width: 86%;
    height: 360px;
    left: 0;
    top: 58px;
    padding: 7px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent), var(--secondary));
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: commercialImageIn 1.1s ease forwards;
}

.lux-gallery-main img,
.lux-gallery-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-lg) - 7px);
    transition: transform 1.2s ease;
}

.lux-gallery-main:hover img,
.lux-gallery-overlay:hover img {
    transform: scale(1.07);
}

.lux-gallery-overlay {
    position: absolute;
    width: 235px;
    height: 235px;
    right: 0;
    bottom: 26px;
    padding: 6px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    animation: commercialOverlayIn 1.2s ease .25s forwards;
    opacity: 0;
}

.lux-gallery-overlay img {
    border-radius: calc(var(--radius) - 6px);
}

.lux-floating-badge {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 6;
    width: 128px;
    height: 128px;
    border-radius: 34px;
    display: grid;
    place-content: center;
    text-align: center;
    background: linear-gradient(145deg, var(--heading), var(--text));
    color: var(--white);
    border: 1px solid var(--accent);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: commercialBadgeGlow 4s ease-in-out infinite;
}

.lux-floating-badge span {
    font-size: 11px;
    color: var(--secondary);
}

.lux-floating-badge strong {
    font-size: 15px;
    font-weight: 700;
}

/* Animations */
@keyframes commercialFloatA {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-24px) rotate(20deg);
    }
}

@keyframes commercialFloatB {

    0%,
    100% {
        transform: translate(0, 0) rotate(-16deg);
    }

    50% {
        transform: translate(-18px, 22px) rotate(-6deg);
    }
}

@keyframes commercialFloatC {

    0%,
    100% {
        transform: translateY(0) rotate(22deg);
    }

    50% {
        transform: translateY(-30px) rotate(12deg);
    }
}

@keyframes commercialLineMove {
    from {
        transform: translateX(-40px);
        opacity: .2;
    }

    50% {
        opacity: .8;
    }

    to {
        transform: translateX(80px);
        opacity: .2;
    }
}

@keyframes commercialContentIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes commercialPanelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }
}

@keyframes commercialRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes commercialImageIn {
    from {
        opacity: 0;
        transform: translateX(45px) rotate(2deg);
    }

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

@keyframes commercialOverlayIn {
    from {
        opacity: 0;
        transform: translateY(35px) scale(.92);
    }

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

@keyframes commercialBadgeGlow {

    0%,
    100% {
        box-shadow: var(--shadow-lg);
    }

    50% {
        box-shadow:
            var(--shadow-lg),
            0 0 35px rgba(199, 161, 106, .45);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .lux-top-label {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .lux-commercial-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .lux-desc-para {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .lux-actions {
        justify-content: center;
    }

    .lux-commercial-visual {
        min-height: 480px;
    }
}

@media (max-width: 575.98px) {
    .lux-commercial-visual {
        min-height: 360px;
    }

    .lux-gallery-main {
        width: 100%;
        height: 280px;
        top: 42px;
    }

    .lux-visual-panel {
        width: 88%;
        height: 72%;
        right: 0;
    }

    .lux-visual-ring {
        width: 270px;
        height: 270px;
    }

    .lux-floating-badge {
        width: 96px;
        height: 96px;
        border-radius: 24px;
        left: 18px;
        bottom: 8px;
    }

    .lux-actions {
        flex-direction: column;
        gap: 20px;
    }

    .lux-btn-solid {
        width: 100%;
    }

    .commercial-shape {
        opacity: .45;
    }

    .shape-a {
        width: 90px;
        height: 90px;
    }

    .shape-b,
    .shape-c {
        display: none;
    }
}

/* end second section */
/* ------------------------------------------------------------------------------------------ */



/* start faq */

/* ==========================================================================
   Luxury Beige Theme Tokens Integration
   ========================================================================== */
/* ==========================================================================
   1. Root Variables & Theme Tokens
   ========================================================================== */
.lux-faq-split {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 20%, rgba(184, 156, 128, .16), transparent 28%),
        radial-gradient(circle at 90% 75%, rgba(199, 161, 106, .13), transparent 35%),
        var(--gradient);
}

.lux-faq-split .container {
    position: relative;
    z-index: 3;
}

/* Background Shapes */
.faq-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.faq-shape {
    position: absolute;
    border-radius: 28px;
    border: 1px solid rgba(184, 156, 128, .26);
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 45px rgba(84, 66, 51, .08),
        inset 0 0 20px rgba(255, 255, 255, .24);
}

.faq-shape-1 {
    width: 150px;
    height: 150px;
    left: 5%;
    top: 14%;
    animation: faqFloatOne 10s ease-in-out infinite;
}

.faq-shape-2 {
    width: 95px;
    height: 95px;
    right: 8%;
    top: 18%;
    border-radius: 24px;
    animation: faqFloatTwo 12s ease-in-out infinite;
}

.faq-shape-3 {
    width: 180px;
    height: 180px;
    right: 18%;
    bottom: -70px;
    border-radius: 38px;
    animation: faqFloatThree 14s ease-in-out infinite;
}

.faq-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 106, .55), transparent);
    animation: faqLineMove 9s linear infinite;
}

.faq-line-1 {
    width: 360px;
    left: -90px;
    top: 30%;
}

.faq-line-2 {
    width: 460px;
    right: -140px;
    bottom: 20%;
}

/* Sidebar */
.lux-faq-sticky-sidebar {
    position: relative;
    width: 100%;
    padding: 42px 28px;
    border-radius: var(--radius-lg, 28px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .62), rgba(242, 236, 226, .5));
    border: 1px solid rgba(184, 156, 128, .26);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    animation: faqSidebarIn 1s ease forwards;
}

.lux-faq-sticky-sidebar::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: calc(var(--radius-lg, 28px) - 10px);
    border: 1px solid rgba(199, 161, 106, .25);
    pointer-events: none;
}

.lux-badge-pill {
    position: relative;
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 999px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.lux-badge-pill span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-dark);
}

.lux-editorial-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 300;
    color: var(--heading);
    line-height: 1.12;
    letter-spacing: -1px;
}

.lux-sidebar-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 330px;
}

.lux-sidebar-link {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding-bottom: 6px;
    transition: .35s ease;
}

.lux-sidebar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 1px;
    background: var(--accent);
    transition: width .35s ease;
}

.lux-sidebar-link:hover {
    color: var(--accent);
    gap: 14px;
}

.lux-sidebar-link:hover::after {
    width: 100%;
}

/* Accordion */
.lux-split-accordion {
    position: relative;
    animation: faqAccordionIn 1s ease forwards;
}

.lux-split-accordion .lux-split-item {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(184, 156, 128, .22) !important;
    border-radius: var(--radius, 20px) !important;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.lux-split-accordion .lux-split-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-dark), var(--accent), var(--secondary));
    opacity: .65;
}

.lux-split-accordion .lux-split-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .32), transparent);
    transform: translateX(-120%);
    transition: transform .8s ease;
    pointer-events: none;
}

.lux-split-accordion .lux-split-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(199, 161, 106, .45) !important;
}

.lux-split-accordion .lux-split-item:hover::after {
    transform: translateX(120%);
}

.lux-split-btn {
    position: relative;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    color: var(--heading) !important;
    padding: 28px 34px;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1.35;
}

.lux-split-btn:not(.collapsed) {
    color: var(--primary-dark) !important;
}

.lux-split-btn:focus {
    box-shadow: none !important;
}

.lux-split-btn::after {
    content: "+";
    font-family: Arial, sans-serif;
    background-image: none !important;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-left: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(199, 161, 106, .16), transparent 70%),
        var(--white);
    border: 1px solid rgba(184, 156, 128, .38);
    box-shadow: 0 0 0 7px rgba(184, 156, 128, .07);
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s ease, color .4s ease, border-color .4s ease;
}

.lux-split-btn:not(.collapsed)::after {
    transform: rotate(45deg);
    color: var(--accent);
    border-color: var(--accent);
}

.lux-split-body {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 0 34px 30px 34px;
}

/* Animations */
@keyframes faqFloatOne {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-24px) rotate(22deg);
    }
}

@keyframes faqFloatTwo {

    0%,
    100% {
        transform: translate(0, 0) rotate(-14deg);
    }

    50% {
        transform: translate(-18px, 20px) rotate(-4deg);
    }
}

@keyframes faqFloatThree {

    0%,
    100% {
        transform: translateY(0) rotate(18deg);
    }

    50% {
        transform: translateY(-30px) rotate(8deg);
    }
}

@keyframes faqLineMove {
    from {
        transform: translateX(-50px);
        opacity: .2;
    }

    50% {
        opacity: .75;
    }

    to {
        transform: translateX(90px);
        opacity: .2;
    }
}

@keyframes faqSidebarIn {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

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

@keyframes faqAccordionIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* Responsive */
@media (min-width: 992px) {
    .lux-faq-sticky-sidebar {
        position: sticky;
        top: 40px;
    }
}

@media (max-width: 991.98px) {
    .lux-faq-sticky-sidebar {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .lux-faq-sticky-sidebar {
        padding: 34px 20px;
    }

    .lux-split-btn {
        padding: 24px 22px;
    }

    .lux-split-btn::after {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 24px;
        margin-left: 12px;
    }

    .lux-split-body {
        padding: 0 22px 26px 22px;
    }

    .faq-shape-2,
    .faq-shape-3 {
        display: none;
    }

    .faq-shape-1 {
        width: 95px;
        height: 95px;
    }
}

/* end faq */
/* --------------------------------------------------------------------------------------------- */


/* start third */


/* ==========================================================================
   Luxury Beige Color Palette Variables
   ========================================================================== */
/* ==========================================================================
   1. Base Utilities & Section Configuration
   ========================================================================= */
.lux-appliance-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 20%, rgba(184, 156, 128, .15), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(199, 161, 106, .13), transparent 34%),
        var(--gradient);
}

.lux-appliance-section .container {
    position: relative;
    z-index: 3;
}

/* Background Shapes */
.appliance-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.appliance-shape {
    position: absolute;
    border-radius: 30px;
    border: 1px solid rgba(184, 156, 128, .26);
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 45px rgba(84, 66, 51, .08),
        inset 0 0 20px rgba(255, 255, 255, .25);
}

.appliance-shape-1 {
    width: 150px;
    height: 150px;
    left: 5%;
    top: 12%;
    animation: applianceFloatOne 10s ease-in-out infinite;
}

.appliance-shape-2 {
    width: 95px;
    height: 95px;
    right: 8%;
    top: 18%;
    border-radius: 24px;
    animation: applianceFloatTwo 12s ease-in-out infinite;
}

.appliance-shape-3 {
    width: 180px;
    height: 180px;
    right: 17%;
    bottom: -70px;
    border-radius: 38px;
    animation: applianceFloatThree 14s ease-in-out infinite;
}

.appliance-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 106, .55), transparent);
    animation: applianceLineMove 9s linear infinite;
}

.appliance-line-1 {
    width: 360px;
    left: -90px;
    top: 30%;
}

.appliance-line-2 {
    width: 460px;
    right: -140px;
    bottom: 22%;
}

/* Image Visual */
.lux-appliance-visual {
    position: relative;
    width: min(100%, 530px);
    min-height: 520px;
    margin: 0 auto;
}

.lux-appliance-panel {
    position: absolute;
    width: 78%;
    height: 78%;
    right: 0;
    bottom: 4%;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg,
            rgba(119, 88, 65, 0.92) 0%,
            rgba(119, 88, 65, 0.78) 50%,
            rgba(119, 88, 65, 0.60) 100%);
    border: 1px solid rgba(184, 156, 128, .34);
    box-shadow: var(--shadow-lg);
    animation: appliancePanelFloat 7s ease-in-out infinite;
}

.lux-appliance-ring {
    position: absolute;
    width: 405px;
    height: 405px;
    left: 4%;
    top: 2%;
    border-radius: 50%;
    border: 1px solid rgba(184, 156, 128, .28);
    box-shadow: inset 0 0 45px rgba(199, 161, 106, .08);
    animation: applianceRotate 24s linear infinite;
}

.lux-appliance-ring::before,
.lux-appliance-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(184, 156, 128, .16);
}

.lux-appliance-ring::before {
    inset: 28px;
}

.lux-appliance-ring::after {
    inset: 58px;
}

.lux-main-image-box {
    position: absolute;
    width: 84%;
    height: 78%;
    left: 0;
    top: 48px;
    padding: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent), var(--secondary), var(--primary));
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: applianceImageIn 1.15s ease forwards;
}

.lux-main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-lg) - 8px);
    transition: transform 1.2s ease;
}

.lux-main-image-box:hover img {
    transform: scale(1.07);
}

.lux-floating-status-card {
    position: absolute;
    right: 0;
    bottom: 32px;
    max-width: 255px;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(184, 156, 128, .28);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    z-index: 5;
    animation: applianceCardIn 1.15s ease .25s forwards, applianceCardFloat 5s ease-in-out infinite 1.3s;
    opacity: 0;
}

.lux-floating-status-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: calc(var(--radius) - 8px);
    border: 1px solid rgba(199, 161, 106, .22);
    pointer-events: none;
}

.lux-floating-status-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}

.lux-floating-status-card p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-light);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-bottom: 8px;
    box-shadow: 0 0 0 8px rgba(199, 161, 106, .14);
    animation: applianceDotPulse 2s ease-in-out infinite;
}

/* Content */
.lux-appliance-content {
    position: relative;
    animation: applianceContentIn 1s ease forwards;
}

.lux-pre-title {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--primary-dark);
    font-weight: 700;
}

.lux-editorial-heading {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--heading);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.lux-line-decor {
    width: 88px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent), transparent);
}

.lux-body-script {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    max-width: 590px;
}

/* Benefits */
.lux-inline-benefit {
    height: 90%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(184, 156, 128, .24);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.lux-inline-benefit:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(199, 161, 106, .48);
}

.lux-inline-benefit h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.lux-inline-benefit p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-light);
    font-weight: 300;
}

.benefit-num {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background:
        radial-gradient(circle, rgba(199, 161, 106, .17), transparent 70%),
        var(--white);
    border: 1px solid rgba(184, 156, 128, .42);
    box-shadow: 0 0 0 8px rgba(184, 156, 128, .08);
    font-size: 13px;
    font-weight: 700;
}

/* Animations */
@keyframes applianceFloatOne {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-24px) rotate(22deg);
    }
}

@keyframes applianceFloatTwo {

    0%,
    100% {
        transform: translate(0, 0) rotate(-14deg);
    }

    50% {
        transform: translate(-18px, 20px) rotate(-4deg);
    }
}

@keyframes applianceFloatThree {

    0%,
    100% {
        transform: translateY(0) rotate(18deg);
    }

    50% {
        transform: translateY(-30px) rotate(8deg);
    }
}

@keyframes applianceLineMove {
    from {
        transform: translateX(-50px);
        opacity: .2;
    }

    50% {
        opacity: .75;
    }

    to {
        transform: translateX(90px);
        opacity: .2;
    }
}

@keyframes appliancePanelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }
}

@keyframes applianceRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes applianceImageIn {
    from {
        opacity: 0;
        transform: translateX(-45px) rotate(-2deg);
    }

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

@keyframes applianceCardIn {
    from {
        opacity: 0;
        transform: translateY(34px) scale(.94);
    }

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

@keyframes applianceCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes applianceDotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(199, 161, 106, .14);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(199, 161, 106, .04);
    }
}

@keyframes applianceContentIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* Responsive */
@media (max-width: 991.98px) {
    .lux-appliance-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .lux-body-script {
        margin-left: auto;
        margin-right: auto;
    }

    .lux-appliance-visual {
        min-height: 470px;
    }
}

@media (max-width: 575.98px) {
    .lux-appliance-visual {
        min-height: 350px;
    }

    .lux-main-image-box {
        width: 100%;
        height: 280px;
        top: 42px;
    }

    .lux-appliance-panel {
        width: 88%;
        height: 72%;
        right: 0;
    }

    .lux-appliance-ring {
        width: 270px;
        height: 270px;
    }

    .lux-inline-benefit {
        padding: 22px 18px;
    }

    .appliance-shape-2,
    .appliance-shape-3 {
        display: none;
    }

    .appliance-shape-1 {
        width: 95px;
        height: 95px;
    }
}

/* end third section*/
/* ----------------------------------------------------------------------------------------- */


/* start forth section */

/* ==========================================================================
   Luxury Beige Theme Tokens Integration
   ====================================================================shadow);
/* ==========================================================================
   1. Root Variables & Theme Tokens
   ========================================================================== */
.lux-hvac-text-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(184, 156, 128, .15), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(199, 161, 106, .13), transparent 35%),
        var(--gradient);
}

.lux-hvac-text-section .container {
    position: relative;
    z-index: 3;
}

/* Background Shapes */
.hvac-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hvac-shape {
    position: absolute;
    border-radius: 30px;
    border: 1px solid rgba(184, 156, 128, .26);
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 45px rgba(84, 66, 51, .08),
        inset 0 0 20px rgba(255, 255, 255, .24);
}

.hvac-shape-1 {
    width: 150px;
    height: 150px;
    left: 5%;
    top: 14%;
    animation: hvacFloatOne 10s ease-in-out infinite;
}

.hvac-shape-2 {
    width: 95px;
    height: 95px;
    right: 8%;
    top: 20%;
    border-radius: 24px;
    animation: hvacFloatTwo 12s ease-in-out infinite;
}

.hvac-shape-3 {
    width: 190px;
    height: 190px;
    right: 17%;
    bottom: -75px;
    border-radius: 40px;
    animation: hvacFloatThree 14s ease-in-out infinite;
}

.hvac-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 106, .55), transparent);
    animation: hvacLineMove 9s linear infinite;
}

.hvac-line-1 {
    width: 380px;
    left: -100px;
    top: 31%;
}

.hvac-line-2 {
    width: 460px;
    right: -140px;
    bottom: 22%;
}

/* Heading */
.lux-hvac-heading {
    animation: hvacContentIn 1s ease forwards;
}

.lux-category-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.lux-gold-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(199, 161, 106, .14);
    animation: hvacDotPulse 2.4s ease-in-out infinite;
}

.lux-category-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-weight: 700;
}

.lux-hvac-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--heading);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.lux-decorative-bar {
    width: 95px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-dark), var(--accent), transparent);
}

/* Editorial Card */
.lux-hvac-editorial-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 64px) 24px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .68), rgba(242, 236, 226, .58));
    border: 1px solid rgba(184, 156, 128, .26);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    animation: hvacCardIn 1s ease forwards;
}

.lux-hvac-editorial-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: calc(var(--radius-lg) - 12px);
    border: 1px solid rgba(199, 161, 106, .2);
    pointer-events: none;
}

.lux-hvac-editorial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: translateX(-120%);
    animation: hvacCardShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

.lux-hvac-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    border: 1px solid rgba(184, 156, 128, .24);
    box-shadow: inset 0 0 50px rgba(199, 161, 106, .08);
    animation: hvacRotate 26s linear infinite;
}

.lux-hvac-ring::before,
.lux-hvac-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(184, 156, 128, .14);
}

.lux-hvac-ring::before {
    inset: 28px;
}

.lux-hvac-ring::after {
    inset: 58px;
}

.lux-hvac-editorial-body {
    position: relative;
    z-index: 2;
}

.lux-hvac-para-lead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 400;
}

.lux-hvac-para-secondary {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-light);
}

/* Feature Cards */
.lux-text-feature-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(184, 156, 128, .24);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    animation: hvacFeatureIn 1s ease forwards;
}

.lux-text-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent), var(--secondary));
    opacity: .75;
}

.lux-text-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .34), transparent);
    transform: translateX(-120%);
    transition: transform .8s ease;
    pointer-events: none;
}

.lux-text-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(199, 161, 106, .48);
}

.lux-text-feature-card:hover::after {
    transform: translateX(120%);
}

.feature-index {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    background:
        radial-gradient(circle, rgba(199, 161, 106, .18), transparent 70%),
        var(--white);
    border: 1px solid rgba(184, 156, 128, .42);
    box-shadow: 0 0 0 8px rgba(184, 156, 128, .08);
    font-size: 20px;
    font-weight: 700;
}

.lux-text-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 12px;
}

.lux-text-feature-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Button */
.lux-btn-gold-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    padding: 16px 38px;

    color: var(--white) !important;
    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    border-radius: 999px;
    border: 1px solid rgba(199, 161, 106, .25);

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Soft luxury glow */
.lux-btn-gold-action::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.lux-btn-gold-action:hover {
    color: #FFFFFF !important;
    text-decoration: none;

    transform: translateY(-3px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

/* Active */
.lux-btn-gold-action:active {
    transform: translateY(-1px) scale(.98);
}

/* Animations */
@keyframes hvacFloatOne {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-24px) rotate(22deg);
    }
}

@keyframes hvacFloatTwo {

    0%,
    100% {
        transform: translate(0, 0) rotate(-14deg);
    }

    50% {
        transform: translate(-18px, 20px) rotate(-4deg);
    }
}

@keyframes hvacFloatThree {

    0%,
    100% {
        transform: translateY(0) rotate(18deg);
    }

    50% {
        transform: translateY(-30px) rotate(8deg);
    }
}

@keyframes hvacLineMove {
    from {
        transform: translateX(-50px);
        opacity: .2;
    }

    50% {
        opacity: .75;
    }

    to {
        transform: translateX(90px);
        opacity: .2;
    }
}

@keyframes hvacDotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(199, 161, 106, .14);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(199, 161, 106, .04);
    }
}

@keyframes hvacContentIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes hvacCardIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes hvacFeatureIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@keyframes hvacCardShimmer {

    0%,
    55% {
        transform: translateX(-120%);
    }

    75%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes hvacRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 767.98px) {
    .lux-hvac-editorial-card {
        padding: 36px 22px;
    }

    .lux-btn-gold-action {
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    .hvac-shape-2,
    .hvac-shape-3 {
        display: none;
    }

    .hvac-shape-1 {
        width: 95px;
        height: 95px;
    }

    .lux-hvac-title {
        font-size: clamp(32px, 10vw, 42px);
    }
}

/* end forth section */
/* --------------------------------------------------------------------------------------- */



/* start contact */

/* ==========================================================================
   Luxury Beige Theme Framework Integration
   ========================================================================== */
/* ==========================================================================
   1. Structural Layout & Section Base
   ========================================================================== */
.lux-contact-section {
    background-color: var(--section-bg, #F2ECE2);
    padding: 90px 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text, #544233);
    width: 100%;
}

.lux-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lux-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: var(--card-bg, #FFFFFF);
    border-radius: var(--radius-lg, 28px);
    box-shadow: var(--shadow, 0 12px 35px rgba(84, 66, 51, .06));
    overflow: hidden;
}

/* ==========================================================================
   2. Left Side Detail Layout Panel & Typography
   ========================================================================== */
.lux-info-panel {
    flex: 1;
    min-width: 320px;
    padding: 60px;
    background-color: #FAF8F5;
    border-right: 1px solid var(--border, #E9E0D6);
}

.lux-panel-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--primary-dark, #9C7757);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.lux-panel-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--heading, #775841);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px;
}

.lux-panel-divider {
    color: var(--accent, #C7A16A);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.lux-panel-divider::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--border, #E9E0D6);
}

.lux-panel-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-light, #8F7B69);
    margin-bottom: 40px;
}

/* Metadata Rows & Business Hours */
.lux-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.lux-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lux-meta-row h4 {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
}

.lux-meta-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.lux-meta-row a {
    color: var(--text);
    text-decoration: none;
    transition: .3s;
    word-break: break-word;
}

.lux-meta-row a:hover {
    color: var(--accent);
}

/* Contact List Architecture */
.lux-info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lux-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lux-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--body-bg, #F8F5EF);
    border: 1px solid var(--border, #E9E0D6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark, #9C7757);
    flex-shrink: 0;
}

.lux-item-icon svg {
    width: 20px;
    height: 20px;
}

.lux-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading, #775841);
    margin: 0 0 4px;
}

.lux-info-item p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text, #544233);
    margin: 0;
}

.lux-info-item a {
    color: var(--text, #544233);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lux-info-item a:hover {
    color: var(--accent, #C7A16A);
}

/* ==========================================================================
   3. Right Side Form Field Component Elements
   ========================================================================== */
.lux-form-panel {
    flex: 1.3;
    min-width: 320px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lux-form-header {
    margin-bottom: 35px;
}

.lux-form-tag {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.lux-form-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;
    color: var(--heading);
}

.lux-form-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 18px 0;
    color: var(--accent);
    font-size: 14px;
}

.lux-form-divider::after {
    content: "";
    width: 70px;
    height: 1px;
    background: var(--border);
}

.lux-form-desc {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Form Node Matrix Elements */
.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .input-group {
    flex: 1;
    min-width: 200px;
}

.input-group {
    position: relative;
    width: 100%;
}

/* Base Form Inputs Schema */
.estimate-form input[type="text"],
.estimate-form input[type="tel"],
.estimate-form input[type="number"],
.estimate-form select,
.estimate-form textarea {
    width: 100%;
    background-color: #FDFDFD;
    border: 1px solid var(--border, #E9E0D6);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text, #544233);
    transition: all 0.3s ease;
    font-family: inherit;
}

.estimate-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* Interactivity Input States */
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
    outline: none;
    border-color: var(--primary, #B89C80);
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(184, 156, 128, 0.08);
}

/* Custom dropdown triggers */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "↓";
    font-size: 11px;
    color: var(--text-light, #8F7B69);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.estimate-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

/* Primary Form Action Button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    color: #FFFFFF;
    text-decoration: none;

    border: 1px solid rgba(199, 161, 106, .25);
    border-radius: 30px;

    padding: 16px 40px;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    cursor: pointer;
    position: relative;
    overflow: hidden;

    margin-top: 10px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Soft glow */
.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.submit-btn:hover {
    color: #FFFFFF;

    transform: translateY(-3px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

/* Active */
.submit-btn:active {
    transform: translateY(-1px) scale(.98);
}

/* ==========================================================================
   4. Responsive Micro-Adaptations
   ========================================================================== */
@media (max-width: 991px) {
    .lux-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border, #E9E0D6);
    }
}

@media (max-width: 767px) {

    .lux-info-panel,
    .lux-form-panel {
        padding: 35px 24px;
    }

    .form-row {
        gap: 15px;
    }
}

/* end contact */
/* ------------------------------------------------------------------------------------------ */


/* start footer */
/* ==========================================================================
   Luxury Minimalist Footer Framework (Single-Column Symmetric Architecture)
   ========================================================================== */
/* ==========================================================================
   1. Structural Layout & Section Base
   ========================================================================== */
.lux-footer.single-col-footer {
    position: relative;
    overflow: hidden;

    color: #FAF8F5;
    padding: 80px 0 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    width: 100%;
    background: #16110D;
}

.lux-footer.single-col-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(circle at center,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .08) 30%,
            transparent 70%);

    filter: blur(80px);
    transform: scale(1.2);
}

.lux-footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Central Alignment Column Stack */
.lux-footer-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    margin-bottom: 50px;
}

/* ==========================================================================
   2. Branding & Typography elements
   ========================================================================== */
.footer-brand-title {
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.2;
    font-weight: 600;
    color: var(--body-bg, #F8F5EF);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand-title span {
    font-weight: 300;
    color: var(--accent, #C7A16A);
}

.footer-tagline {
    color: #D6C8B8;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* ==========================================================================
   3. Regional Coverage & ZIP Block
   ========================================================================== */
.footer-coverage-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.coverage-desc {
    max-width: 700px;
    margin: 0;
    color: #D6C8B8;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

.coverage-desc strong {
    color: #FAF8F5;
    font-weight: 600;
}

.zip-tags-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.zip-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(214, 200, 184, 0.2);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #FAF8F5;
    transition: all 0.2s ease;
}

.zip-tag:hover {
    border-color: rgba(214, 200, 184, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   4. Interactive Social Media Nodes
   ========================================================================== */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(214, 200, 184, 0.15);
    color: #D6C8B8;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: var(--accent, #C7A16A);
    border-color: var(--accent, #C7A16A);
    color: var(--heading, #775841);
    transform: translateY(-3px);
}

/* ==========================================================================
   5. Embedded Geospatial Frame Map
   ========================================================================== */
.footer-map {
    width: 100%;
    max-width: 500px;
    height: 260px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(214, 200, 184, .2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================================================
   6. Footer Foundation & Closing Utility Flex
   ========================================================================== */
.footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(214, 200, 184, 0.15);
    margin-bottom: 25px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    color: #BBAEA0;
    margin: 0;
    font-size: 13px;
}

.domain-text {
    margin: 0;
    font-size: 13px;
}

.domain-text a {
    color: var(--accent, #C7A16A);
    text-decoration: none;
    transition: color 0.2s ease;
}

.domain-text a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   7. Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
    .footer-map {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .lux-footer.single-col-footer {
        padding: 60px 0 30px;
    }

    .lux-footer-stack {
        gap: 30px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* end footer */
/* -------------------------------------------------------------------------------- */


/* start why choose us */

/* ==========================================================================
   Luxury Color Palette Tokens Mapping
   ========================================================================== */
/* ==========================================================================
   1. Root Variables & Theme Tokens
   ========================================================================== */
.py-6 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.lux-why-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(184, 156, 128, .16), transparent 28%),
        radial-gradient(circle at 88% 80%, rgba(199, 161, 106, .14), transparent 35%),
        var(--gradient);
}

.lux-why-section .container {
    position: relative;
    z-index: 3;
}

/* Background */
.why-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.why-shape {
    position: absolute;
    border-radius: 30px;
    border: 1px solid rgba(184, 156, 128, .26);
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 45px rgba(84, 66, 51, .08),
        inset 0 0 20px rgba(255, 255, 255, .24);
}

.why-shape-1 {
    width: 160px;
    height: 160px;
    left: 4%;
    top: 12%;
    animation: whyFloatOne 10s ease-in-out infinite;
}

.why-shape-2 {
    width: 95px;
    height: 95px;
    right: 8%;
    top: 16%;
    border-radius: 24px;
    animation: whyFloatTwo 12s ease-in-out infinite;
}

.why-shape-3 {
    width: 190px;
    height: 190px;
    right: 16%;
    bottom: -70px;
    border-radius: 40px;
    animation: whyFloatThree 14s ease-in-out infinite;
}

.why-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 106, .55), transparent);
    animation: whyLineMove 9s linear infinite;
}

.why-line-1 {
    width: 380px;
    left: -100px;
    top: 30%;
}

.why-line-2 {
    width: 460px;
    right: -140px;
    bottom: 22%;
}

/* Left Content */
.lux-why-content {
    animation: whyContentIn 1s ease forwards;
}

.lux-why-tag-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.lux-dot-accent {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(199, 161, 106, .14);
    animation: whyDotPulse 2.4s ease-in-out infinite;
}

.lux-tag-text {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-dark);
    font-weight: 700;
}

.lux-section-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--heading);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.lux-title-divider {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent), transparent);
}

.lux-desc-text {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    max-width: 560px;
}

.lux-why-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lux-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    padding: 16px 38px;

    color: var(--white) !important;
    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    border-radius: 999px;
    border: 1px solid rgba(199, 161, 106, .25);

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 35px rgba(184, 156, 128, .10);

    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Soft luxury glow */
.lux-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(18px);
}

/* Hover */
.lux-btn-primary:hover {
    color: #FFFFFF !important;
    text-decoration: none;

    transform: translateY(-3px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 40px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

/* Active */
.lux-btn-primary:active {
    transform: translateY(-1px) scale(.98);
}

.lux-badge-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid rgba(184, 156, 128, .42);
    background: rgba(255, 255, 255, .52);
    color: var(--heading);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

/* Bento Grid */
.lux-bento-grid-wrapper {
    position: relative;
    padding: 28px;
}

.lux-bento-backdrop-pulse {
    position: absolute;
    inset: 55px 0 35px 42px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .52), rgba(242, 236, 226, .55));
    border: 1px solid rgba(184, 156, 128, .32);
    box-shadow: var(--shadow-lg);
    animation: whyBackdropPulse 7s ease-in-out infinite;
    z-index: 1;
}

.lux-bento-ring {
    position: absolute;
    width: 430px;
    height: 430px;
    right: 10%;
    top: 0;
    border-radius: 50%;
    border: 1px solid rgba(184, 156, 128, .26);
    box-shadow: inset 0 0 50px rgba(199, 161, 106, .08);
    animation: whyRotate 28s linear infinite;
    z-index: 1;
}

.lux-bento-ring::before,
.lux-bento-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(184, 156, 128, .16);
}

.lux-bento-ring::before {
    inset: 30px;
}

.lux-bento-ring::after {
    inset: 64px;
}

.lux-bento-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(184, 156, 128, .24);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    animation: whyCardIn .9s ease forwards;
}

.lux-bento-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-dark), var(--accent), var(--secondary));
    opacity: .7;
}

.lux-bento-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: translateX(-120%);
    transition: transform .8s ease;
    pointer-events: none;
}

.lux-bento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(199, 161, 106, .5);
}

.lux-bento-card:hover::after {
    transform: translateX(120%);
}

.lux-card-offset {
    transform: translateY(32px);
}

.lux-card-offset:hover {
    transform: translateY(22px);
}

.lux-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.lux-card-index {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
}

.lux-icon-frame {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    background:
        radial-gradient(circle, rgba(199, 161, 106, .18), transparent 70%),
        var(--white);
    border: 1px solid rgba(184, 156, 128, .42);
    box-shadow: 0 0 0 8px rgba(184, 156, 128, .08);
    transition: .35s ease;
}

.lux-bento-card:hover .lux-icon-frame {
    color: var(--accent);
    transform: rotate(8deg) scale(1.08);
}

.lux-bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 12px;
}

.lux-bento-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

/* Animations */
@keyframes whyFloatOne {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-24px) rotate(22deg);
    }
}

@keyframes whyFloatTwo {

    0%,
    100% {
        transform: translate(0, 0) rotate(-14deg);
    }

    50% {
        transform: translate(-18px, 20px) rotate(-4deg);
    }
}

@keyframes whyFloatThree {

    0%,
    100% {
        transform: translateY(0) rotate(18deg);
    }

    50% {
        transform: translateY(-30px) rotate(8deg);
    }
}

@keyframes whyLineMove {
    from {
        transform: translateX(-50px);
        opacity: .2;
    }

    50% {
        opacity: .75;
    }

    to {
        transform: translateX(90px);
        opacity: .2;
    }
}

@keyframes whyDotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(199, 161, 106, .14);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(199, 161, 106, .04);
    }
}

@keyframes whyContentIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes whyCardIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes whyBackdropPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }

    50% {
        transform: scale(1.025);
        box-shadow:
            var(--shadow-lg),
            0 0 45px rgba(199, 161, 106, .18);
    }
}

@keyframes whyRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .lux-why-tag-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .py-6 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .lux-why-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .lux-desc-text {
        margin-left: auto;
        margin-right: auto;
    }

    .lux-why-actions {
        justify-content: center;
    }

    .lux-card-offset {
        transform: translateY(0);
    }

    .lux-card-offset:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 575.98px) {
    .lux-bento-grid-wrapper {
        padding: 0;
    }

    .lux-bento-backdrop-pulse,
    .lux-bento-ring {
        display: none;
    }

    .lux-bento-card {
        padding: 26px 22px;
    }

    .lux-why-actions {
        flex-direction: column;
    }

    .lux-btn-primary,
    .lux-badge-outline {
        width: 100%;
    }

    .why-shape-2,
    .why-shape-3 {
        display: none;
    }

    .why-shape-1 {
        width: 95px;
        height: 95px;
    }
}

/* end why choose us */

/* ------------------------------------------------------------------------------------------------- */
/* start our process section */

/* ==========================================================================
   1. Section Structural Foundations
   ========================================================================== */
.lux-process-section {
    background: var(--body-bg, #F8F5EF);
    padding: 90px 0;
    overflow: hidden;
}

.lux-process-line {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 26px;
}

.lux-process-step {
    position: relative;
    flex: 1;
    text-align: center;
}

/* ==========================================================================
   2. Header Elements & Typographic Hierarchy
   ========================================================================== */
.lux-process-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.lux-process-header span {
    display: inline-block;
    position: relative;
    overflow: hidden;

    padding: 8px 22px;

    color: #FFFFFF;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;

    border-radius: 30px;
    margin-bottom: 18px;

    border: 1px solid rgba(199, 161, 106, .25);

    background:
        radial-gradient(circle at top,
            rgba(184, 156, 128, .18) 0%,
            rgba(184, 156, 128, .06) 35%,
            transparent 70%),
        linear-gradient(180deg,
            #221914 0%,
            #16110D 55%,
            #0F0B08 100%);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(199, 161, 106, .08),
        0 0 25px rgba(184, 156, 128, .10);

    transition: all .35s ease;
}

/* Luxury glow */
.lux-process-header span::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(199, 161, 106, .18),
            transparent 60%);

    filter: blur(14px);
}

/* Hover */
.lux-process-header span:hover {
    transform: translateY(-2px);

    border-color: rgba(199, 161, 106, .45);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .45),
        0 0 30px rgba(199, 161, 106, .22),
        inset 0 0 0 1px rgba(199, 161, 106, .18);
}

.lux-process-header h2 {
    font-size: clamp(34px, 4vw, 56px);
    color: var(--heading, #775841);
    margin-bottom: 18px;
}

.lux-process-header p {
    color: var(--text, #544233);
    font-size: 16px;
    line-height: 1.8;
}

/* ==========================================================================
   3. Process Card Structural Text Elements
   ========================================================================== */
.lux-process-text {
    position: relative;
}

.lux-process-text span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent, #C7A16A);
    margin-bottom: 10px;
}

.lux-process-text h3 {
    font-size: 25px;
    color: var(--heading, #775841);
    margin-bottom: 10px;
}

.lux-process-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text, #544233);
    margin: 0;
}

/* ==========================================================================
   4. Icon Frames & Asset Visual Formats
   ========================================================================== */
.lux-process-icon {
    width: 124px;
    height: 124px;
    margin: 0 auto 26px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    background:
        radial-gradient(circle, #ffffff 0 56%, transparent 57%),
        conic-gradient(from 180deg, var(--primary-dark), var(--accent), var(--primary), var(--accent), var(--primary-dark));
    box-shadow: 0 15px 35px rgba(84, 66, 51, .10), 0 4px 12px rgba(84, 66, 51, .05);
    animation: circleFlash 5s linear infinite;
}

.lux-process-icon::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--white);
    z-index: 1;
}

.lux-process-icon::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    border: 1px solid rgba(184, 156, 128, .22);
    z-index: 2;
}

.lux-process-icon svg {
    width: 42px;
    height: 42px;
    stroke: var(--primary-dark, #9C7757);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 2;
}

.process-icon-img {
    position: relative;
    z-index: 3;
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    transition: transform .35s ease;
}

.lux-process-step:hover .process-icon-img {
    transform: scale(1.08);
}

/* ==========================================================================
   5. Step Connecting Channels & Linear Arrows
   ========================================================================== */
.lux-process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 62px;
    right: -55px;
    width: 70px;
    height: 18px;
    transform: translateY(-50%);
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 18' fill='none'%3E%3Cpath d='M1 9H64' stroke='%23C7A16A' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M60 5L68 9L60 13' stroke='%23C7A16A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Line Dynamic Travelling Fluid Particle Glow */
.lux-process-line::after {
    content: "";
    position: absolute;
    top: 62px;
    left: 0;
    width: 160px;
    height: 26px;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(199, 161, 106, .95) 0%, rgba(199, 161, 106, .55) 35%, rgba(199, 161, 106, .15) 70%, transparent 100%);
    filter: blur(10px);
    animation: travelGlow 5s linear infinite;
}

/* ==========================================================================
   6. Sequential Stagger Delay Mapping Metrics
   ========================================================================== */
.lux-process-step:nth-child(1) .lux-process-icon {
    animation-delay: 0s;
}

.lux-process-step:nth-child(2) .lux-process-icon {
    animation-delay: 1s;
}

.lux-process-step:nth-child(3) .lux-process-icon {
    animation-delay: 2s;
}

.lux-process-step:nth-child(4) .lux-process-icon {
    animation-delay: 3s;
}

.lux-process-step:nth-child(5) .lux-process-icon {
    animation-delay: 4s;
}

/* ==========================================================================
   7. Hardware-Accelerated Keyframe Engines
   ========================================================================== */
@keyframes travelGlow {
    0% {
        left: 8%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 92%;
        opacity: 0;
    }
}

@keyframes circleFlash {

    0%,
    15%,
    100% {
        box-shadow: 0 15px 35px rgba(84, 66, 51, .10);
        transform: scale(1);
    }

    8% {
        box-shadow: 0 0 0 8px rgba(199, 161, 106, .18), 0 0 40px rgba(199, 161, 106, .55), 0 15px 35px rgba(84, 66, 51, .12);
        transform: scale(1.08);
    }
}

/* ==========================================================================
   8. Responsive Viewport Adaptations
   ========================================================================== */
@media (max-width: 991px) {
    .lux-process-line {
        flex-direction: column;
        gap: 40px;
        max-width: 620px;
    }

    .lux-process-step {
        display: flex;
        align-items: center;
        gap: 28px;
        text-align: left;
    }

    .lux-process-icon {
        margin: 0;
        flex: 0 0 124px;
    }

    .lux-process-step:not(:last-child)::after {
        top: auto;
        bottom: -38px;
        left: 50%;
        right: auto;
        width: 18px;
        height: 70px;
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (max-width: 575px) {
    .lux-process-section {
        padding: 60px 0;
    }

    .lux-process-step {
        flex-direction: column;
        text-align: center;
    }

    .lux-process-icon {
        width: 108px;
        height: 108px;
        flex-basis: 108px;
    }

    .lux-process-icon svg {
        width: 36px;
        height: 36px;
    }

    .process-icon-img {
        width: 48px;
        height: 48px;
    }
}

/* end our process section */


/* FAQ horizontal scroll fix */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.lux-faq-split,
.lux-faq-split .container,
.lux-split-accordion,
.lux-split-item,
.lux-split-btn {
    max-width: 100%;
    overflow-x: hidden;
}

.lux-split-btn {
    white-space: normal !important;
    word-break: break-word;
}

.lux-split-btn::after {
    margin-left: 12px;
    flex-shrink: 0;
}

@media(max-width:575.98px) {
    .lux-split-btn {
        padding: 16px 14px;
        font-size: 15px;
    }

    .lux-split-body {
        padding: 0 14px 20px;
    }

    .row {
        --bs-gutter-x: 0;
    }
}


/* start faq */




:root {
    --body-bg: #F8F5EF;
    --section-bg: #F2ECE2;
    --card-bg: #FFFFFF;
    --primary: #B89C80;
    --primary-dark: #9C7757;
    --secondary: #D2C0AB;
    --accent: #C7A16A;
    --heading: #775841;
    --text: #544233;
    --text-light: #8F7B69;
    --border: #E9E0D6;
    --white: #FFFFFF;
    --black: #2E241D;
    --shadow-sm: 0 4px 12px rgba(84, 66, 51, .06);
    --shadow: 0 12px 35px rgba(84, 66, 51, .10);
    --shadow-lg: 0 20px 50px rgba(84, 66, 51, .15);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --gradient: linear-gradient(135deg, #F8F5EF 0%, #F2ECE2 50%, #E4D6C6 100%);
}



.faq-section {
    background: white;
}

.faq-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.faq-title {
    color: var(--heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.faq-subtitle {
    color: var(--text-light);
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    background: var(--card-bg);
    color: var(--heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 22px 26px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--section-bg);
    color: var(--primary-dark);
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(184, 156, 128, .25);
}

.faq-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    background-color: var(--secondary);
    border-radius: 50%;
    background-position: center;
    background-size: 16px;
}

.faq-accordion .accordion-body {
    color: var(--text);
    padding: 0 26px 24px;
    line-height: 1.75;
    font-size: 1rem;
}

.faq-title {
    color: #19130F;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.faq-title span {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.02em;
    line-height: .95;
    color: var(--accent);
    letter-spacing: -.02em;
}

@media (max-width: 575px) {
    .faq-accordion .accordion-button {
        padding: 18px;
        font-size: .98rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 18px 20px;
        font-size: .95rem;
    }
}


/* end faq */


/* start locations */
:root {
    --body-bg: #F8F5EF;
    --section-bg: #F2ECE2;
    --card-bg: #FFFFFF;
    --primary: #B89C80;
    --primary-dark: #9C7757;
    --secondary: #D2C0AB;
    --accent: #C7A16A;
    --heading: #775841;
    --text: #544233;
    --text-light: #8F7B69;
    --border: #E9E0D6;
    --white: #FFFFFF;
    --black: #2E241D;
    --shadow-sm: 0 4px 12px rgba(84, 66, 51, .06);
    --shadow: 0 12px 35px rgba(84, 66, 51, .10);
    --shadow-lg: 0 20px 50px rgba(84, 66, 51, .15);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --gradient: linear-gradient(135deg, #F8F5EF 0%, #F2ECE2 50%, #E4D6C6 100%);
}

.service-locations-section {
    background: var(--gradient);
}

.service-locations-badge {
    display: inline-block;
    padding: 8px 18px;
    color: var(--primary-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.service-locations-title {
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.service-locations-text {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.service-location-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all .35s ease;
}

.service-location-card::after {
    content: "→";
    margin-left: 10px;
    color: var(--accent);
    transition: all .35s ease;
}

.service-location-card:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: var(--black);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-location-card:hover::after {
    color: var(--black);
    transform: translateX(5px);
}

.service-location-card:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-location-card:hover::before {
    opacity: 1;
}

.service-location-card:hover::after {
    color: var(--white);
    transform: translateX(4px);
}

.service-title {
    color: #C7A16A;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

.service-title span {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.05em;
    line-height: .95;

    letter-spacing: -.02em;
    color: #16110D;
}


@media (max-width: 1199px) {
    .service-locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .service-locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .service-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-location-card {
        min-height: 74px;
    }
}

@media (max-width: 420px) {
    .service-locations-grid {
        grid-template-columns: 1fr;
    }
}




/* end locations */