/* ==========================================================================
   DESIGN SYSTEM - LUXURY AUTO SHOWROOM STYLE
   ========================================================================== */

:root {
    --bg-darker: #060606;
    --bg-dark: #0b0b0b;
    --bg-light: #141414;
    --gold: #C9A227;
    --gold-light: #E6C254;
    --gold-dark: #9E7D17;
    --silver: #E5E4E2;
    --silver-dark: #8a8a8a;
    --gold-glow: rgba(201, 162, 39, 0.3);
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --text-dark: #1e1e1e;
    --glass-bg: rgba(12, 12, 12, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.7);
    --font-header: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at top right, rgba(201, 162, 39, 0.05), transparent 600px),
                      radial-gradient(circle at bottom left, rgba(20, 20, 20, 0.9), transparent);
    background-attachment: fixed;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    letter-spacing: 1px;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--text-white);
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.section-title span {
    color: var(--gold);
}

/* 3. Common Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* 4. Luxury Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

/* 5. Custom Luxury Alert */
.luxury-alert {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    padding: 15px 25px;
    border-radius: 8px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px var(--gold-glow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.alert-text {
    font-size: 0.9rem;
    color: var(--text-white);
}

.alert-close {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 20px;
    line-height: 1;
}

.alert-success {
    border-color: #28a745;
}
.alert-success .alert-close {
    color: #28a745;
}

.alert-danger {
    border-color: #dc3545;
}
.alert-danger .alert-close {
    color: #dc3545;
}

/* 6. MEGA NAVIGATION SYSTEM
   ========================================================================== */

/* -- Header Shell -- */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

header.main-header.scrolled {
    padding: 10px 0;
    background: rgba(4, 4, 4, 0.96);
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-spacer {
    height: 80px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* -- Logo -- */
.mega-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mega-logo .logo-wordmark {
    font-family: var(--font-header);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(201, 162, 39, 0.25);
    white-space: nowrap;
}

.mega-logo .logo-img {
    max-height: 44px;
    width: auto;
}

/* -- Nav List (Desktop) -- */
.mega-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

/* -- Parent Nav Item -- */
.nav-item {
    position: static;
}

.nav-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: var(--font-body);
}

.nav-parent-link:hover,
.nav-item.is-active > .nav-parent-link,
.nav-parent-link.active {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.06);
}

.nav-caret {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
    opacity: 0.65;
}

.nav-item.dropdown-open > .nav-parent-link .nav-caret,
.nav-item.has-dropdown:hover > .nav-parent-link .nav-caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* -- Mega Dropdown Panel -- */
.mega-dropdown {
    position: fixed;
    top: 78px; /* Updated by JS on scroll */
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
                transform 0.3s cubic-bezier(0.16,1,0.3,1),
                visibility 0.3s;
    pointer-events: none;
}

.nav-item.has-dropdown:hover > .mega-dropdown,
.nav-item.dropdown-open > .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-dropdown-inner {
    background: rgba(5, 5, 5, 0.97);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(201,162,39,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 20px 36px;
}

/* -- Dropdown Eyebrow -- */
.mega-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.mega-eyebrow-title {
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.mega-eyebrow-sep {
    color: rgba(201, 162, 39, 0.3);
    font-size: 0.8rem;
}

.mega-eyebrow-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    font-style: italic;
}

/* -- Columns Grid -- */
.mega-columns {
    display: grid;
    grid-template-columns: repeat(var(--col-count, 1), 1fr) 240px;
    gap: 0 30px;
    align-items: start;
}

.is-slim .mega-columns {
    grid-template-columns: 1fr;
    max-width: 360px;
}

/* -- Column -- */
.mega-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
    font-family: var(--font-body);
}

.col-title-line {
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* -- Mega Links -- */
.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.mega-link:hover,
.mega-link.active {
    background: rgba(201, 162, 39, 0.07);
    border-color: rgba(201, 162, 39, 0.12);
    color: var(--text-white);
    transform: translateX(3px);
}

.mega-link-icon {
    font-size: 0.9rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mega-link:hover .mega-link-icon { opacity: 1; }

.mega-link-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.mega-link-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-link-desc {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.mega-link:hover .mega-link-desc { color: rgba(201,162,39,0.55); }

.mega-link-arrow {
    font-size: 1rem;
    color: rgba(201, 162, 39, 0.3);
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.mega-link:hover .mega-link-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

.mega-link.active .mega-link-name { color: var(--gold); }

/* -- CTA Panel (rightmost column) -- */
.mega-cta-col {
    border-left: 1px solid rgba(201, 162, 39, 0.1);
    padding-left: 28px;
}

.is-slim .mega-cta-col { display: none; }

.mega-cta-panel {
    background: linear-gradient(145deg, rgba(201,162,39,0.07) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 10px;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-cta-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.mega-cta-title {
    font-family: var(--font-header);
    font-size: 1.05rem;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.3;
}

.mega-cta-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    flex: 1;
}

.mega-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
    margin-top: 6px;
}

.mega-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-darker);
    box-shadow: 0 6px 20px rgba(201,162,39,0.3);
    transform: translateY(-1px);
}

/* -- Auth Buttons (right side) -- */
.mega-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-nav-sm {
    padding: 8px 16px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* -- Buttons System (retained + enhanced) -- */
.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-luxury:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 9px 24px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25);
    transform: translateY(-2px);
}

/* -- Mobile Hamburger -- */
.mega-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.mega-hamburger:hover { border-color: var(--gold); }

.ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.mega-hamburger.is-open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mega-hamburger.is-open .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.mega-hamburger.is-open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Mobile Overlay -- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1100;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-overlay.is-open { opacity: 1; }

/* -- Mobile Drawer -- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: rgba(6, 6, 6, 0.99);
    border-left: 1px solid rgba(201, 162, 39, 0.15);
    z-index: 1200;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

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

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    flex-shrink: 0;
}

.mobile-logo-text {
    font-family: var(--font-header);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
}

.mobile-drawer-close {
    background: none;
    border: 1px solid rgba(201,162,39,0.2);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.mobile-drawer-close:hover { border-color: var(--gold); color: var(--gold); }

.mobile-nav { padding: 16px 0; flex: 1; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }

.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-nav-item.mobile-auth-row { border-bottom: none; padding: 6px 20px; }

.mobile-nav-link,
.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 24px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-toggle:hover,
.mobile-nav-link.active,
.mobile-nav-toggle.active { color: var(--gold); background: rgba(201,162,39,0.05); }

.mobile-toggle-caret {
    display: inline-flex;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

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

.mobile-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0,0,0,0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}

.mobile-nav-item.sub-open .mobile-sub-list { max-height: 600px; }

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px 11px 36px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mobile-sub-link:hover { color: var(--gold); background: rgba(201,162,39,0.04); }

.mobile-sub-icon {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.7;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Legacy nav classes kept for backward compat */
.nav-menu { display: none; }
.menu-toggle { display: none; }

/* 7. Homepage Slider Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.08);
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
    animation: kenburns 12s linear infinite alternate;
}

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 6, 6, 0.3), rgba(11, 11, 11, 0.95));
    display: flex;
    align-items: center;
    z-index: 3;
}

.slide-content {
    max-width: 800px;
    padding: 0 40px;
}

.slide-content h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.slide.active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

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

.slide-content .btn-luxury {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.slide.active .slide-content .btn-luxury {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 18, 0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    background: var(--gold);
    color: var(--bg-darker);
    box-shadow: 0 0 15px var(--gold-glow);
}

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

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* 8. Search & Advanced Filter Section */
.search-filter-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.filter-wrapper {
    padding: 30px 40px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.filter-control {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.filter-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

/* 9. Premium Stock Cards Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.car-card {
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
}

.car-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.car-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-card:hover .car-image-container img {
    transform: scale(1.08);
}

.car-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--bg-darker);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.car-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.car-wishlist-btn:hover, .car-wishlist-btn.active {
    background: var(--gold);
    color: var(--bg-darker);
}

.car-info {
    padding: 25px;
}

.car-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.car-title-row h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

.car-price {
    font-family: var(--font-header);
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
}

.car-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.spec-item span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 2px;
}

.spec-item span:last-child {
    color: var(--text-white);
    font-weight: 500;
}

/* 10. Brands Show Section */
.brands-slider-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.85;
}

.brand-logo-card {
    flex: 1;
    min-width: 150px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.3);
    transition: var(--transition-smooth);
}

.brand-logo-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-5px);
}

.brand-logo-card h4 {
    font-family: var(--font-header);
    color: var(--text-muted);
    font-size: 1.4rem;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.brand-logo-card:hover h4 {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* 11. Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: var(--font-header);
    color: rgba(201, 162, 39, 0.08);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--gold);
}

/* 12. Dynamic Page - About & Terms */
.about-banner {
    height: 40vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.85);
}

.page-banner-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.page-banner-content h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.page-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.dynamic-page-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 60px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.dynamic-page-content h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-header);
}

.dynamic-page-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* 13. Contact Form & Maps Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-card {
    padding: 45px;
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.info-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 3px;
}

.info-text h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 14. Luxury Login/Register Forms */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 0;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 50px;
}

.auth-card h2 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.auth-card p.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 35px;
}

.auth-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-footer-text a {
    color: var(--gold);
    font-weight: 600;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

/* 15. Car Specifications Gallery (Details page) */
.car-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.details-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-detail-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 480px;
}

.main-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumb-img {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid transparent;
    height: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.thumb-img.active, .thumb-img:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-spec-card {
    padding: 40px;
}

.spec-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.details-price-badge {
    display: inline-block;
    font-family: var(--font-header);
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.spec-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.spec-list-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.spec-list-item span:first-child {
    color: var(--text-muted);
}

.spec-list-item span:last-child {
    font-weight: 600;
    color: var(--text-white);
}

/* 16. User & Customer Profile Dashboards */
.profile-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
}

.profile-sidebar {
    padding: 35px;
    text-align: center;
}

.avatar-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
}

.profile-sidebar h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.profile-sidebar p {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.profile-menu-links {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
}

.profile-menu-btn {
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
    display: block;
}

.profile-menu-btn:hover, .profile-menu-btn.active {
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold);
    border-left: 3px solid var(--gold);
}

.profile-content-pane {
    padding: 40px;
}

.pane-title {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.wishlist-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wishlist-car-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wishlist-car-img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.wishlist-car-info h4 {
    font-size: 0.95rem;
}

.wishlist-car-info p {
    font-size: 0.8rem;
    color: var(--gold);
}

.inquiry-history-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.15);
}

.inquiry-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.inquiry-status-badge {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
}

/* 17. Footer Layout */
footer.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    padding: 80px 0 30px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--gold);
    font-family: var(--font-header);
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--bg-darker);
    box-shadow: 0 0 10px var(--gold-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pagination UI */
.luxury-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    background: rgba(18, 18, 18, 0.5);
    transition: var(--transition-smooth);
}

.page-num:hover, .page-num.active {
    background: var(--gold);
    color: var(--bg-darker);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ==========================================================================
   LUXURY REDESIGN UPDATES
   ========================================================================== */

/* Spacing Adjustments */
.section-padding {
    padding: 120px 0;
}

/* Scroll Fade-In Reveal Effect */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hero Section Slider typography */
.hero-slider-section {
    height: 100vh;
}

.slide-content h2 {
    font-family: var(--font-header);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 30%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.slide-content p {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 45px;
}

/* Modernized Car Cards */
.car-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.82);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    padding: 20px;
}

.car-card:hover .car-hover-actions {
    opacity: 1;
}

.car-hover-btn {
    width: 80%;
    max-width: 180px;
    padding: 12px 15px;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.car-hover-btn.btn-quick-view {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.car-hover-btn.btn-quick-view:hover {
    background: var(--text-white);
    color: var(--bg-darker);
    border-color: var(--text-white);
}

.car-hover-btn.btn-test-drive {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    border: none;
}

.car-hover-btn.btn-test-drive:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 4px 15px var(--gold-glow);
}

.car-price-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-header);
    letter-spacing: 0.5px;
}

.car-card .car-info h3 {
    font-family: var(--font-header);
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.car-card .car-subtitle {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* Statistics Section */
.luxury-stats-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 90px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-header);
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-white);
}

/* Why Choose Us Section */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.why-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 162, 39, 0.05);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-card h3 {
    font-family: var(--font-header);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Vehicle Inspection Standards */
.inspection-section {
    background: var(--bg-darker);
    position: relative;
}

.inspection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.inspection-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.inspection-visual img {
    width: 100%;
    filter: brightness(0.75);
    transition: transform 0.8s ease;
}

.inspection-visual:hover img {
    transform: scale(1.05);
}

.inspection-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(6, 6, 6, 0.9);
    border: 1px solid var(--gold);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.inspection-badge h4 {
    font-family: var(--font-header);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.inspection-badge p {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-top: 5px;
}

.inspection-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.step-info h4 {
    font-family: var(--font-header);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Warranty Care Program */
.warranty-banner-wrapper {
    background: linear-gradient(135deg, rgba(6, 6, 6, 0.95), rgba(15, 15, 15, 0.95)), url('../images/banners/banner2.png') no-repeat center/cover;
    border: 1px solid rgba(251, 212, 109, 0.15);
    border-radius: 16px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 162, 39, 0.04);
}

.warranty-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-gold-badge {
    border: 3px double var(--gold);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.15), inset 0 0 20px rgba(201, 162, 39, 0.05);
}

.warranty-gold-badge h4 {
    font-family: var(--font-header);
    font-size: 3rem;
    color: var(--gold);
    line-height: 0.9;
    font-weight: 700;
}

.warranty-gold-badge p:nth-child(2) {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 5px 0;
}

.warranty-gold-badge p:nth-child(3) {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.warranty-content h3 {
    font-family: var(--font-header);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-transform: uppercase;
}

.warranty-content h3 span {
    color: var(--gold);
}

.warranty-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.warranty-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.warranty-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-family: var(--font-sub);
    font-weight: 500;
    color: var(--text-white);
}

.warranty-list-item span {
    color: var(--gold);
    font-weight: 700;
}

/* Awards & Recognition */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.award-item-card {
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.award-item-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    background: rgba(16, 16, 16, 0.9);
    transform: translateY(-5px);
}

.award-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.award-year {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.award-item-card h4 {
    font-family: var(--font-header);
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.award-item-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Premium Quick View Modal */
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(4, 4, 4, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.modal-container {
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: var(--bg-dark);
    border: 1px solid rgba(251, 212, 109, 0.15);
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.quick-view-modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-media {
    position: relative;
    height: 100%;
    min-height: 350px;
    background: #000;
}

.modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title-row h3 {
    font-family: var(--font-header);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.modal-brand {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.modal-price {
    font-family: var(--font-header);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
}

.modal-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.modal-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 6px;
}

.modal-spec-item span:first-child {
    color: var(--text-muted);
}

.modal-spec-item span:last-child {
    font-weight: 600;
    color: var(--text-white);
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-actions .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.75rem;
}

/* Elegant Corporate Footer Updates */
footer.main-footer {
    background-color: #030303;
    border-top: 1px solid rgba(251, 212, 109, 0.15);
    padding: 100px 0 35px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-links a {
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 35px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    color: var(--text-white);
    border-radius: 4px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
    flex: 1;
}

.newsletter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--bg-darker);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ==========================================================================
   PREMIUM CORPORATE FOOTER (2026 Redesign)
   ========================================================================== */

/* ── Top Accent Bar ── */
.footer-topbar {
    background: var(--bg-darker);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
    padding: 14px 0;
}

.footer-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-topbar-tagline {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    flex-shrink: 0;
}

.footer-topbar-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-topbar-link {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition-smooth);
}

.footer-topbar-link:hover {
    color: var(--gold);
}

/* ── Main Footer Body ── */
.footer-main {
    background: #040404;
    padding: 90px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* ── Brand Column ── */
.footer-col-brand {}

.footer-logo {
    font-family: var(--font-header);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 22px;
}

.footer-brand-desc {
    font-family: var(--font-sub);
    font-size: 0.84rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ── Social Icons ── */
.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.15);
}

/* ── Column Titles ── */
.footer-col-title {
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
}

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

/* ── Link List ── */
.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-link-list li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-link-arrow {
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

/* ── Latest News ── */
.footer-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-news-item {}

.footer-news-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.footer-news-link:hover .footer-news-title {
    color: var(--gold);
}

.footer-news-date {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-news-title {
    font-family: var(--font-sub);
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: var(--transition-smooth);
}

.footer-news-cta {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-news-cta:hover {
    letter-spacing: 2.5px;
    opacity: 0.8;
}

.footer-empty {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Contact Column ── */
.footer-contact-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-sub);
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Hours Table ── */
.footer-hours {}

.footer-hours-title {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 14px;
}

.footer-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-hours-grid span:nth-child(odd) {
    font-weight: 500;
    color: var(--silver-dark);
}

.footer-hours-grid span:nth-child(even) {
    color: var(--text-muted);
}

/* ── Bottom Bar ── */
.footer-bottom {
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 0;
}

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

.footer-copy {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-motto {
    font-family: var(--font-header);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.5);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--gold);
}

/* ── Footer Responsive ── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-topbar-tagline { display: none; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
    .footer-motto { display: none; }
}

/* ==========================================================================
   QUICK VIEW MODAL (new .qv-* system)
   ========================================================================== */

.qv-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(4, 4, 4, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.qv-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.qv-dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: var(--bg-dark);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(201, 162, 39, 0.05);
    overflow: hidden;
    transform: scale(0.95) translateY(30px);
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qv-overlay.is-open .qv-dialog {
    transform: scale(1) translateY(0);
}

.qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qv-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.qv-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 500px;
    max-height: 85vh;
    overflow-y: auto;
}

/* ── Image column ── */
.qv-image-col {
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 400px;
}

.qv-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.qv-dialog:hover .qv-main-img {
    transform: scale(1.04);
}

.qv-badge-row {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qv-badge {
    font-family: var(--font-sub);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
}

.qv-badge-vip {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
}

.qv-badge-feat {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Info column ── */
.qv-info-col {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.qv-label {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.qv-title {
    font-family: var(--font-header);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.2;
}

.qv-price-block {
    margin-bottom: 28px;
}

.qv-price {
    font-family: var(--font-header);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qv-price-note {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-top: 3px;
}

/* Specs grid */
.qv-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.qv-spec-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.qv-spec-icon {
    font-size: 1rem;
    margin-bottom: 4px;
}

.qv-spec-label {
    font-family: var(--font-sub);
    font-size: 0.66rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.qv-spec-val {
    font-family: var(--font-sub);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-white);
}

.qv-desc {
    font-family: var(--font-sub);
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Action buttons */
.qv-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.qv-btn {
    flex: 1;
    min-width: 130px;
    padding: 13px 16px;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qv-btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
}

.qv-btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 20px var(--gold-glow);
    transform: translateY(-2px);
}

.qv-btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qv-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.06);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .qv-body {
        grid-template-columns: 1fr;
    }
    .qv-image-col {
        min-height: 260px;
    }
    .qv-info-col {
        padding: 28px 24px;
    }
    .qv-title {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   SCROLL-REVEAL INTERSECTION OBSERVER CLASSES
   ========================================================================== */

.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Prevent transition flicker on page load — hide only after JS sets the class */
.reveal-hidden.transition-ready {
    visibility: visible;
}

/* ==========================================================================
   GOLD AND SUBTLE CREAM THEME (HOME PAGE OVERRIDES)
   ========================================================================== */

.home-cream-theme {
    --bg-darker: #131210;  /* Keep this dark for footer, dark panels, main header dark states */
    --bg-dark: #FAF8F5;    /* Warm cream page background */
    --bg-light: #FFFFFF;   /* Clean white panels/cards */
    --text-white: #1C1A17; /* Replaces white text with deep dark bronze/charcoal text */
    --text-muted: #625E56; /* Readable muted text */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(201, 162, 39, 0.2);
    --glass-shadow: 0 12px 40px 0 rgba(162, 142, 120, 0.12);
}

body.home-cream-theme {
    background-color: var(--bg-dark) !important;
    color: var(--text-white) !important;
    background-image: radial-gradient(circle at top right, rgba(201, 162, 39, 0.08), transparent 600px),
                      radial-gradient(circle at bottom left, rgba(247, 245, 240, 0.9), transparent) !important;
}

/* Force hero slider text to remain white over dark slide images */
.home-cream-theme .slide-content h2 {
    background: linear-gradient(135deg, #ffffff 30%, #e6c254 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8) !important;
}
.home-cream-theme .slide-content p {
    color: #e5e4e2 !important;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8) !important;
}
.home-cream-theme .slide-content .btn-luxury {
    color: #131210 !important;
}

/* Header navigation link colors (both scrolled and top-transparent) */
.home-cream-theme header.main-header .nav-parent-link {
    color: #1C1A17 !important;
}
.home-cream-theme header.main-header .nav-parent-link:hover,
.home-cream-theme header.main-header .nav-parent-link.active {
    color: var(--gold) !important;
}
.home-cream-theme header.main-header .logo-wordmark {
    color: #1C1A17 !important;
}
.home-cream-theme header.main-header .mega-hamburger .ham-bar {
    background-color: #1C1A17 !important;
}
.home-cream-theme header.main-header .btn-outline {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}
.home-cream-theme header.main-header .btn-outline:hover {
    background: var(--gold) !important;
    color: #131210 !important;
}

/* Scrolled navbar (light background) */
.home-cream-theme header.main-header.scrolled {
    background: rgba(245, 242, 235, 0.96) !important;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15) !important;
    box-shadow: 0 4px 30px rgba(162, 142, 120, 0.1) !important;
}

/* Mega Dropdown Panel Overrides */
.home-cream-theme .mega-dropdown-inner {
    background: rgba(245, 242, 235, 0.98) !important;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15) !important;
    box-shadow: 0 20px 40px rgba(162, 142, 120, 0.15) !important;
}
.home-cream-theme .mega-link-name {
    color: #1C1A17 !important;
}
.home-cream-theme .mega-link-desc {
    color: #625E56 !important;
}
.home-cream-theme .mega-link:hover .mega-link-name {
    color: var(--gold) !important;
}
.home-cream-theme .mega-col-title {
    color: #1C1A17 !important;
}
.home-cream-theme .mega-eyebrow {
    border-bottom-color: rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .mega-eyebrow-desc {
    color: #625E56 !important;
}

/* Mobile Drawer Overrides */
.home-cream-theme .mobile-drawer {
    background: #F5F2EB !important;
    border-left: 1px solid rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .mobile-drawer-header {
    border-bottom: 1px solid rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .mobile-logo-text {
    color: #1C1A17 !important;
}
.home-cream-theme .mobile-nav-link, 
.home-cream-theme .mobile-nav-toggle {
    color: #1C1A17 !important;
}
.home-cream-theme .mobile-sub-link {
    color: #625E56 !important;
}
.home-cream-theme .mobile-drawer-close {
    color: #1C1A17 !important;
}

/* Form Filter Control Overrides */
.home-cream-theme .filter-control {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(201, 162, 39, 0.25) !important;
    color: #1C1A17 !important;
}
.home-cream-theme .filter-control option {
    background: #FFFFFF !important;
    color: #1C1A17 !important;
}

/* Cards & Panel Customizations */
.home-cream-theme .why-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .why-card:hover {
    background: #FFFFFF !important;
    box-shadow: 0 15px 30px rgba(162, 142, 120, 0.15), 0 0 15px rgba(201, 162, 39, 0.1) !important;
    border-color: var(--gold) !important;
}
.home-cream-theme .award-item-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .award-item-card:hover {
    background: #FFFFFF !important;
    border-color: var(--gold) !important;
    box-shadow: 0 15px 30px rgba(162, 142, 120, 0.15) !important;
}
.home-cream-theme .brand-logo-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .brand-logo-card:hover {
    background: #FFFFFF !important;
    border-color: var(--gold) !important;
}

/* Warranty Gold Badge Customizations */
.home-cream-theme .warranty-gold-badge {
    background: #FFFFFF !important;
    box-shadow: 0 15px 30px rgba(162, 142, 120, 0.15), inset 0 0 20px rgba(201, 162, 39, 0.05) !important;
}

/* Stats Section Overrides */
.home-cream-theme .luxury-stats-section {
    background: linear-gradient(180deg, #F3EFE6 0%, #FAF8F5 100%) !important;
    border-top: 1px solid rgba(201, 162, 39, 0.15) !important;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15) !important;
}
.home-cream-theme .stat-item p {
    color: #1C1A17 !important;
}

/* Inspection Badge Overrides */
.home-cream-theme .inspection-badge {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: var(--gold) !important;
}

/* Quick View Modal Overrides */
.home-cream-theme .qv-close {
    background: #ffffff !important;
    border-color: rgba(201, 162, 39, 0.2) !important;
    color: #1C1A17 !important;
}
.home-cream-theme .qv-close:hover {
    background: var(--gold) !important;
    color: #ffffff !important;
}
.home-cream-theme .qv-specs {
    border-top-color: rgba(201, 162, 39, 0.15) !important;
    border-bottom-color: rgba(201, 162, 39, 0.15) !important;
}

/* Force Footer to remain dark themed with light text */
.home-cream-theme footer.main-footer {
    background-color: #131210 !important;
}
.home-cream-theme footer.main-footer h3 {
    color: var(--gold) !important;
}
.home-cream-theme footer.main-footer p,
.home-cream-theme footer.main-footer a {
    color: #b0b0b0 !important;
}
.home-cream-theme footer.main-footer a:hover {
    color: var(--gold) !important;
}
.home-cream-theme .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.05) !important;
    color: #888888 !important;
}

/* ── Global Cream Theme Refinements for all Frontend Pages ── */
.home-cream-theme h1,
.home-cream-theme h2,
.home-cream-theme h3,
.home-cream-theme h4,
.home-cream-theme h5,
.home-cream-theme h6,
.home-cream-theme strong,
.home-cream-theme .pane-title {
    color: var(--text-white) !important;
}

/* Override borders that are hardcoded to dark styles on public pages */
.home-cream-theme .wishlist-table-row {
    border-bottom: 1px solid rgba(162, 142, 120, 0.15) !important;
}
.home-cream-theme .pane-title {
    border-bottom: 1px solid rgba(162, 142, 120, 0.15) !important;
}
.home-cream-theme .inquiry-history-item {
    border: 1px solid rgba(162, 142, 120, 0.15) !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Forms input fields in cream theme */
.home-cream-theme .form-input {
    background: #ffffff !important;
    border: 1px solid rgba(162, 142, 120, 0.25) !important;
    color: var(--text-white) !important;
}
.home-cream-theme .form-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.2) !important;
}

/* Profile menu buttons */
.home-cream-theme .profile-menu-links a:not([style*="color"]) {
    color: var(--text-white) !important;
}
.home-cream-theme .profile-menu-links a:hover,
.home-cream-theme .profile-menu-links a.active {
    color: var(--gold) !important;
}

/* Light background alerts */
.home-cream-theme .luxury-alert {
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(162, 142, 120, 0.15), 0 0 10px rgba(201, 162, 39, 0.1) !important;
}
.home-cream-theme .alert-text {
    color: var(--text-white) !important;
}

/* ==========================================================================
   PREMIUM ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */

/* ── 1. Luxury Page Preloader ── */
.luxury-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0c0b0a;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.luxury-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.preloader-logo .logo-text {
    font-family: var(--font-header), 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.preloader-logo .logo-sub {
    font-family: var(--font-sub), 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
}
.preloader-spinner-wrap {
    position: relative;
    width: 60px;
    height: 60px;
}
.preloader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.03);
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: preloader-spin 1s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}
@keyframes preloader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.preloader-progress-bar {
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.preloader-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: absolute;
    left: -100%;
    animation: preloader-progress-loading 1.8s infinite ease-in-out;
}
@keyframes preloader-progress-loading {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ── 2. Advanced Scroll Reveal entry styles ── */
.reveal-zoom-in {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-zoom-in.reveal-visible {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-slide-left.reveal-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-slide-right.reveal-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.reveal-skew-in {
    opacity: 0;
    transform: translateY(30px) skewY(2deg);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-skew-in.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) skewY(0) !important;
}

/* ── 3. Premium Button Shimmer & Hover effects ── */
.btn-luxury {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
}
.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--gold-glow);
}
.btn-luxury:hover::after {
    animation: button-shimmer 1.5s infinite;
}
@keyframes button-shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* ── 4. Navigation Link underline animations ── */
.nav-parent-link {
    position: relative;
}
.nav-parent-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-parent-link:hover::after,
.nav-item.dropdown-open .nav-parent-link::after,
.nav-parent-link.active::after {
    width: 100%;
    left: 0;
}

/* ── 5. Staggered mega dropdown child links ── */
.mega-links li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-item.dropdown-open .mega-links li {
    opacity: 1;
    transform: translateY(0);
}
.nav-item.dropdown-open .mega-links li:nth-child(1) { transition-delay: 30ms; }
.nav-item.dropdown-open .mega-links li:nth-child(2) { transition-delay: 60ms; }
.nav-item.dropdown-open .mega-links li:nth-child(3) { transition-delay: 90ms; }
.nav-item.dropdown-open .mega-links li:nth-child(4) { transition-delay: 120ms; }
.nav-item.dropdown-open .mega-links li:nth-child(5) { transition-delay: 150ms; }
.nav-item.dropdown-open .mega-links li:nth-child(6) { transition-delay: 180ms; }

/* ── 6. Car Card Interactive Upgrades ── */
.car-card {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.car-hover-actions {
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.car-card:hover .car-hover-actions {
    transform: translateY(0);
}
.car-image-container img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.car-card:hover .car-image-container img {
    transform: scale(1.05);
}


