/* ==========================================================================
   showroom.css — Hometech Showroom Page Dedicated Styles
   ========================================================================== */

/* -----------------------------------------------------------------------
   Section 1: Hero Section
   ----------------------------------------------------------------------- */
.showroom-hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.showroom-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenburns 12s ease-in-out infinite alternate;
}

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

    100% {
        transform: scale(1.06) translate(-1%, 1%);
    }
}

.showroom-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            rgba(12, 16, 22, 0.82) 0%,
            rgba(18, 22, 30, 0.65) 55%,
            rgba(12, 16, 22, 0.30) 100%);
    z-index: 5;
}

/* Decorative animated lines */
.hero-deco-lines {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.15), transparent);
    animation: lineFloat 8s ease-in-out infinite alternate;
}

.deco-line-1 {
    left: 20%;
    animation-delay: 0s;
}

.deco-line-2 {
    left: 75%;
    animation-delay: 3s;
}

@keyframes lineFloat {
    0% {
        opacity: 0.3;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0.7;
        transform: translateY(20px);
    }
}

/* Hero label badge */
.showroom-hero-label {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.showroom-hero-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700 !important;
    color: var(--color-white) !important;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.showroom-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 560px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 180px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    animation: scrollBounce 2.4s ease-in-out infinite;
}

@keyframes scrollBounce {

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

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

.scroll-indicator .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--color-accent));
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Stats bar */
.showroom-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: rgba(18, 22, 30, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.stat-item {
    padding: 22px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.stat-item.no-border {
    border-right: none;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.stat-sup {
    font-size: 1.1rem;
    vertical-align: super;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

/* -----------------------------------------------------------------------
   Section 2: Gallery
   ----------------------------------------------------------------------- */
.section-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Gallery Grid — Balanced Asymmetric 3x3 layout (using explicit grid areas to prevent overlap) */
.showroom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px 300px;
    grid-template-areas:
        "img1 img1 img2"
        "img1 img1 img3"
        "img4 img5 img6";
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

/* Map items to explicit grid areas */
.gallery-item:nth-child(1) {
    grid-area: img1;
}

.gallery-item:nth-child(2) {
    grid-area: img2;
}

.gallery-item:nth-child(3) {
    grid-area: img3;
}

.gallery-item:nth-child(4) {
    grid-area: img4;
}

.gallery-item:nth-child(5) {
    grid-area: img5;
}

.gallery-item:nth-child(6) {
    grid-area: img6;
}


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

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 22, 30, 0.0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-white);
    opacity: 0;
    transition: all 0.35s ease;
}

.gallery-overlay span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(18, 22, 30, 0.55);
}

/* -----------------------------------------------------------------------
   Section 3: Showroom Services
   ----------------------------------------------------------------------- */
.showroom-services-section {
    position: relative;
}

.service-card {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(197, 160, 89, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-size: 20px;
    transition: var(--transition-fast);
    border-radius: 20px;
}
@media (max-width: 767px) {
    .service-card {
        padding:  20px;
        margin-bottom: 20px;
    }
  .showroom-services-section .row.g-4{
    gap:20px
  }
    .service-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
.service-card:hover .service-icon-wrap {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.service-title {
    font-size: 15px;
    font-weight: 600 !important;
    color: var(--color-white) !important;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* -----------------------------------------------------------------------
   Section 4: Booking Form
   ----------------------------------------------------------------------- */
.booking-form-section {
    background-color: var(--color-bg-light);
}

/* Location list */
.showroom-location-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.location-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-info strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.location-info span {
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Opening hours box */
.opening-hours-box {
    background-color: var(--color-white);
    border: 1px solid rgba(26, 28, 32, 0.08);
    padding: 20px 24px;
}

.oh-title {
    font-size: 13px;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    color: var(--color-primary) !important;
}

.oh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(26, 28, 32, 0.05);
    font-size: 13px;
    color: var(--color-text-muted);
}

.oh-row:last-child {
    border-bottom: none;
}

.oh-row.oh-hotline span,
.oh-row.oh-hotline a {
    font-weight: 600;
}

/* Booking form card */
.showroom-booking-form-card {
    background-color: var(--color-white);
    border: 1px solid rgba(26, 28, 32, 0.08);
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.form-card-title {
    font-size: 18px;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    letter-spacing: 0.05em;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(26, 28, 32, 0.07);
}

.form-label-luxury {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.required-star {
    color: #c0392b;
}

.form-control-luxury {
    width: 100%;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(26, 28, 32, 0.1);
    color: var(--color-text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sharp);
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-control-luxury:focus {
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

textarea.form-control-luxury {
    resize: vertical;
    min-height: 90px;
}

input[type="date"].form-control-luxury {
    cursor: pointer;
}

.form-select-luxury {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

/* Success Alert */
.showroom-success-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(39, 174, 96, 0.04));
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 18px 20px;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.showroom-success-alert i {
    font-size: 22px;
    color: #27ae60;
    flex-shrink: 0;
    margin-top: 2px;
}

.showroom-success-alert strong {
    display: block;
    font-size: 14px;
    color: #1a7a42;
    margin-bottom: 4px;
}

.showroom-success-alert p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

/* -----------------------------------------------------------------------
   Section 5: Map
   ----------------------------------------------------------------------- */
.showroom-map-section {
    position: relative;
}

.map-header-bar {
    background-color: var(--color-primary);
    padding: 24px 0;
    border-bottom: 2px solid var(--color-accent);
}

.map-section-title {
    font-size: 20px;
    color: var(--color-white) !important;
    margin-bottom: 4px;
}

.map-section-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.map-tab-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.map-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--radius-sharp);
}

.map-tab-btn:hover {
    border-color: rgba(197, 160, 89, 0.5);
    color: var(--color-accent);
}

.map-tab-btn.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.map-container {
    width: 100%;
    line-height: 0;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 991px) {

    /* Tablet: dynamic 2-column layout showing all images via explicit grid areas */
    .showroom-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 220px 220px 220px;
        grid-template-areas:
            "img1 img1"
            "img1 img1"
            "img2 img3"
            "img4 img5"
            "img6 img6";
        gap: 12px;
    }

    .gallery-item:nth-child(1) {
        grid-area: img1;
    }

    .gallery-item:nth-child(2) {
        grid-area: img2;
    }

    .gallery-item:nth-child(3) {
        grid-area: img3;
    }

    .gallery-item:nth-child(4) {
        grid-area: img4;
    }

    .gallery-item:nth-child(5) {
        grid-area: img5;
    }

    .gallery-item:nth-child(6) {
        grid-area: img6;
    }

    .showroom-booking-form-card {
        padding: 28px 22px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 767px) {
    .showroom-hero-section {
        min-height: 620px;
        height: auto;
        padding: 118px 0 260px;
        align-items: flex-end;
    }

    .showroom-hero-overlay {
        background: linear-gradient(180deg,
                rgba(12, 16, 22, 0.74) 0%,
                rgba(18, 22, 30, 0.72) 46%,
                rgba(12, 16, 22, 0.9) 100%);
    }

    .hero-deco-lines {
        display: none;
    }

    .showroom-hero-section .container {
        padding-inline: 20px;
    }

    .showroom-hero-section .row {
        padding-bottom: 0 !important;
    }

    .showroom-hero-label {
        font-size: 10px;
        letter-spacing: 0.14em;
        padding: 7px 12px;
        margin-bottom: 14px;
        border-radius: 999px;
        background: rgba(18, 22, 30, 0.42);
        backdrop-filter: blur(10px);
    }

    .showroom-hero-title {
        font-size: 1.85rem;
        line-height: 1.14;
        letter-spacing: 0.01em;
        margin-bottom: 12px;
    }

    .showroom-hero-desc {
        max-width: 100%;
        font-size: 13.5px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.78);
    }

    .showroom-hero-section .btn.btn-luxury,
    .showroom-hero-section .btn.btn-luxury-outline {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        padding: 12px 18px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .showroom-hero-section .d-flex.flex-wrap.gap-3.mt-4 {
        gap: 10px !important;
        margin-top: 18px !important;
    }

    .showroom-stats-bar {
        left: 16px;
        right: 16px;
        width: auto;
        bottom: 16px;
        border: 1px solid rgba(197, 160, 89, 0.18);
        border-radius: 18px;
        overflow: hidden;
        background: rgba(14, 18, 24, 0.94);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    }

    .showroom-stats-bar .container {
        padding-inline: 0;
    }

    .showroom-stats-bar .row.g-0 {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }

    .stat-item {
        height: 100%;
        min-height: 108px;
        padding: 18px 12px 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .showroom-stats-bar .col-6:nth-child(2n) .stat-item {
        border-right: none;
    }

    .showroom-stats-bar .col-6:nth-last-child(-n + 2) .stat-item {
        border-bottom: none;
    }

    .stat-item.no-border {
        border-right: none;
        border-bottom: none;
    }

    .stat-number {
        font-size: 1.45rem;
        line-height: 1.1;
    }

    .stat-sup {
        font-size: 0.9rem;
    }

    .stat-label {
        margin-top: 6px;
        font-size: 10px;
        line-height: 1.45;
        letter-spacing: 0.08em;
    }

    .booking-form-section {
        padding: 52px 0;
    }

    .booking-form-section .container {
        padding-inline: 20px;
    }

    .booking-form-section .row.align-items-center.g-5 {
        --bs-gutter-x: 0;
        --bs-gutter-y: 1.4rem;
    }

    .booking-form-section .section-title {
        font-size: 1.55rem;
        line-height: 1.24;
    }

    .booking-form-section .text-muted.pe-lg-4.mt-3 {
        padding-right: 0 !important;
        margin-top: 12px !important;
        font-size: 13.5px;
        line-height: 1.68;
    }

    .showroom-location-list {
        gap: 12px;
        margin-top: 18px !important;
    }

    .location-item {
        gap: 12px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.02);
    }

    .location-icon {
        width: 34px;
        height: 34px;
        margin-top: 0;
    }

    .location-info strong {
        font-size: 13px;
    }

    .location-info span {
        font-size: 12px;
        line-height: 1.55;
    }

    .opening-hours-box {
        margin-top: 18px !important;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .oh-title {
        font-size: 11px;
        letter-spacing: 0.14em;
        margin-bottom: 10px;
    }

    .oh-row {
        gap: 12px;
        align-items: flex-start;
        font-size: 12px;
        line-height: 1.5;
        padding: 10px 0;
    }

    .showroom-booking-form-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .form-card-title {
        font-size: 16px;
        padding-bottom: 12px;
    }

    .showroom-booking-form-card form.mt-4 {
        margin-top: 16px !important;
    }

    .showroom-booking-form-card .row {
        --bs-gutter-x: 0.75rem;
    }

    .showroom-booking-form-card .col-md-6.mb-4,
    .showroom-booking-form-card .col-12.mb-4,
    .showroom-booking-form-card .col-12 {
        margin-bottom: 14px !important;
    }

    .form-label-luxury {
        font-size: 10.5px;
        letter-spacing: 0.12em;
        margin-bottom: 7px;
    }

    .form-control-luxury {
        min-height: 46px;
        font-size: 13px;
        padding: 11px 14px;
    }

    textarea.form-control-luxury {
        min-height: 110px;
    }

    .showroom-booking-form-card .d-flex.flex-wrap.gap-3.mt-4 {
        gap: 10px !important;
        margin-top: 8px !important;
    }

    .showroom-booking-form-card .btn.btn-luxury,
    .showroom-booking-form-card .btn.btn-luxury-outline {
        flex: 1 1 100%;
        min-height: 46px;
        justify-content: center;
        padding-inline: 16px;
    }

    .showroom-success-alert {
        gap: 12px;
        padding: 14px 15px;
        border-radius: 14px;
    }

    .showroom-map-section {
        background: #12161E;
    }

    .map-header-bar {
        padding: 20px 0 16px;
        border-bottom-width: 1px;
    }

    .map-header-bar .container {
        padding-inline: 20px;
    }

    .map-header-bar .d-flex.align-items-center.justify-content-between.flex-wrap.gap-3 {
        align-items: stretch !important;
        gap: 14px !important;
    }

    .map-section-title {
        font-size: 18px;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .map-section-desc {
        font-size: 12.5px;
        line-height: 1.6;
        max-width: 280px;
    }

    .map-tab-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }

    .map-tab-btn {
        width: 100%;
        min-height: 42px;
        justify-content: center;
        padding: 10px 14px;
        font-size: 10.5px;
        letter-spacing: 0.1em;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .map-container iframe {
        min-height: 340px;
    }

    .showroom-map-section .contact-detail-item {
        margin-bottom: 12px;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .showroom-map-section .contact-detail-icon-box {
        width: 40px;
        height: 40px;
        margin-right: 14px;
    }

    .showroom-map-section .contact-detail-title {
        font-size: 12px;
        line-height: 1.4;
    }

    .showroom-map-section .text-secondary-light {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .showroom-map-section .btn-map-nav {
        font-size: 10.5px;
        letter-spacing: 0.06em;
    }

    /* Mobile: stack all images vertically in flex column to completely bypass grid area rules and prevent overlap */
    .showroom-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 20px !important;
    }

    .gallery-item {
        grid-area: auto !important;
        width: 100%;
        height: 250px;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   Section 6: Showroom Dark Theme Overrides
   ========================================================================== */
body.index-dark-theme .booking-form-section {
    background-color: #1F2531;
}

body.index-dark-theme .location-info strong {
    color: var(--color-white);
}

body.index-dark-theme .location-info span {
    color: rgba(255, 255, 255, 0.7);
}

body.index-dark-theme .opening-hours-box {
    background-color: #161B25;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

body.index-dark-theme .oh-title {
    color: var(--color-white) !important;
}

body.index-dark-theme .oh-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

body.index-dark-theme .showroom-booking-form-card {
    background-color: #161B25;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

body.index-dark-theme .form-card-title {
    color: var(--color-white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.index-dark-theme .form-label-luxury {
    color: rgba(255, 255, 255, 0.6);
}

body.index-dark-theme .form-control-luxury {
    background-color: #1F2531;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

body.index-dark-theme .form-control-luxury:focus {
    border-color: var(--color-accent);
    background-color: #242b39;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

body.index-dark-theme .form-select-luxury {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23C5A059' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}

body.index-dark-theme select.form-control-luxury option {
    background-color: #1F2531;
    color: var(--color-white);
}

body.index-dark-theme .showroom-success-alert {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(39, 174, 96, 0.05));
    border-color: rgba(39, 174, 96, 0.4);
}

body.index-dark-theme .showroom-success-alert strong {
    color: #2ecc71;
}

body.index-dark-theme .showroom-success-alert p {
    color: rgba(255, 255, 255, 0.7);
}

body.index-dark-theme .map-header-bar {
    background-color: #12161E;
}
