/* ==========================================================================
   AUTO ELITE — ULTRA LUXURY AUTOMOTIVE LANDING PAGE STYLESHEET
   ========================================================================== */

:root {
    --bg-dark: #090d16;
    --bg-card: #0f172a;
    --bg-glass: rgba(15, 23, 42, 0.75);
    --bg-glass-hover: rgba(26, 38, 64, 0.85);
    
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.35);
    --emerald-green: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.35);
    --royal-gold: #ffb700;
    --gold-glow: rgba(255, 183, 0, 0.35);
    --supercar-red: #ff3366;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow-cyan: rgba(0, 240, 255, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.auto-elite-body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Glowing Background Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    animation: orbFloat 18s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--emerald-green) 0%, transparent 70%);
    top: 40%;
    left: -150px;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--royal-gold) 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Glassmorphism Panel Class */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

/* Container */
.elite-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 60%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--neon-cyan); }
.text-gold { color: var(--royal-gold); }

.section-tag-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.max-w-600 { max-width: 600px; }
.margin-top-row { margin-top: 48px; }
.margin-top-card { margin-top: 24px; }
.w-100 { width: 100%; }

/* Buttons */
button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-fast);
}

.btn-cyan {
    background: linear-gradient(135deg, #00f0ff 0%, #0284c7 100%);
    color: #040914;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 8px 24px var(--neon-cyan-glow);
    white-space: nowrap;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 240, 255, 0.55);
    background: linear-gradient(135deg, #38bdf8 0%, #00f0ff 100%);
}

.btn-glow-cyan {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.btn-glow-cyan:hover {
    background: var(--neon-cyan);
    color: #040914;
    box-shadow: 0 0 25px var(--neon-cyan-glow);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #ffb700 0%, #d97706 100%);
    color: #000000;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 8px 24px var(--gold-glow);
    white-space: nowrap;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 183, 0, 0.55);
}

.btn-glow-gold {
    background: rgba(255, 183, 0, 0.12);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-glow-gold:hover {
    background: var(--royal-gold);
    color: #000;
    box-shadow: 0 0 25px var(--gold-glow);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* 3D Tilt Effect Base */
.card-3d-tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.elite-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition-fast);
    background: rgba(9, 13, 22, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.elite-header.scrolled {
    padding: 12px 0;
    background: rgba(9, 13, 22, 0.92);
    border-bottom-color: rgba(0, 240, 255, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #0284c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.25rem;
    box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.brand-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--neon-cyan);
    letter-spacing: 0.25em;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-cyan);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Center Button & Hamburger Toggle */
.header-center-mobile {
    display: none;
}

.mobile-toggle-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-toggle-btn:hover {
    background: var(--neon-cyan);
    color: #000;
}

/* Mobile Dropdown Menu Drawer */
.mobile-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
}

/* Disabled button state */
.btn-disabled,
button[disabled] {
    opacity: 0.45;
    cursor: not-allowed !important;
    pointer-events: none;
    filter: grayscale(0.4);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.neon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: var(--neon-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--neon-cyan); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Search & Filter Bar Widget */
.hero-search-card {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 240, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-select {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
}

.search-select option {
    background: #0f172a;
    color: #ffffff;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.search-btn {
    white-space: nowrap;
    padding: 14px 24px;
}

/* Hero Right 3D Visual */
.hero-visual-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.visual-glow-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-cyan-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.hero-car-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

/* Floating Glass Badges */
.floating-glass-badge {
    position: absolute;
    z-index: 3;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-top-right {
    top: 20px;
    right: -10px;
}

.badge-bottom-left {
    bottom: 20px;
    left: -10px;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-val {
    font-weight: 800;
    font-size: 0.95rem;
    color: #ffffff;
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-anim {
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-anim-delayed {
    animation: floatBadge 4s ease-in-out 2s infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* Hero Quick Features Bar */
.hero-features-bar {
    margin-top: 60px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-bar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-bar-text {
    display: flex;
    flex-direction: column;
}

.f-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.f-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US & 3D CONFIGURATOR PREVIEW
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.why-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-benefits-list {
    list-style: none;
    margin: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    color: var(--emerald-green);
    font-size: 1.35rem;
    margin-top: 2px;
}

.benefit-title {
    font-size: 1.05rem;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

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

/* Overlaid Client Quote Card */
.client-quote-card {
    padding: 20px 24px;
    border-color: rgba(255, 183, 0, 0.3);
    position: relative;
    margin-top: 20px;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(255, 183, 0, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-style: italic;
    color: #f1f5f9;
    font-size: 0.95rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.quote-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-gold) 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
}

.quote-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.quote-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.quote-rating {
    margin-left: auto;
    font-size: 0.8rem;
}

/* Configurator Visualizer Preview Card */
.visualizer-card {
    padding: 24px;
    border-color: rgba(0, 240, 255, 0.3);
}

.visualizer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.visualizer-title {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
}

.visualizer-screen {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.config-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.screen-overlay-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, rgba(9, 13, 22, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.color-picker-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.picker-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.color-swatches {
    display: flex;
    gap: 8px;
}

.swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.swatch.active, .swatch:hover {
    transform: scale(1.25);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.swatch-obsidian { background: #0b0f17; }
.swatch-emerald { background: #059669; }
.swatch-gold { background: #d97706; }
.swatch-sapphire { background: #0284c7; }
.swatch-white { background: #f8fafc; }

.visualizer-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vis-stat {
    display: flex;
    flex-direction: column;
}

.v-label { font-size: 0.75rem; color: var(--text-muted); }
.v-val { font-size: 0.85rem; color: #fff; font-weight: 700; }

/* ==========================================================================
   POPULAR MODELS (CAR CARDS GRID)
   ========================================================================== */
.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.model-filter-tabs {
    display: flex;
    gap: 10px;
    background: rgba(15, 23, 42, 0.6);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid var(--border-glass);
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 100px;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--neon-cyan);
    color: #040914;
    font-weight: 700;
    box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Car Card */
.car-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.car-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 240, 255, 0.15);
    transform: translateY(-8px);
}

.car-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.car-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.08em;
}

.luxury-badge { background: rgba(255, 183, 0, 0.15); border: 1px solid var(--royal-gold); color: var(--royal-gold); }
.suv-badge { background: rgba(16, 185, 129, 0.15); border: 1px solid var(--emerald-green); color: var(--emerald-green); }
.gt-badge { background: rgba(0, 240, 255, 0.15); border: 1px solid var(--neon-cyan); color: var(--neon-cyan); }
.supercar-badge { background: rgba(255, 51, 102, 0.15); border: 1px solid var(--supercar-red); color: var(--supercar-red); }
.ev-badge { background: rgba(56, 189, 248, 0.15); border: 1px solid #38bdf8; color: #38bdf8; }

.fav-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.fav-btn:hover, .fav-btn.active {
    color: var(--supercar-red);
}

.car-image-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-bottom: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.car-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 13, 22, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.car-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.car-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.spec-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item i { color: var(--neon-cyan); }

.car-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.car-price-box {
    display: flex;
    flex-direction: column;
}

.price-label { font-size: 0.75rem; color: var(--text-muted); }

.car-price {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    font-weight: 800;
}

.car-price small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ==========================================================================
   OBJECTIONS & FAQ & SALES FUNNEL CARD
   ========================================================================== */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.col-left, .col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.objection-pills-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
}

.objection-pill {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: var(--transition-fast);
}

.pill-q {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.pill-a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.objection-pill.active, .objection-pill:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.objection-pill.active .pill-a {
    color: var(--neon-cyan);
    font-weight: 700;
}

.objection-detail-card {
    padding: 28px;
    border-color: rgba(0, 240, 255, 0.3);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-title {
    font-size: 1.1rem;
    font-weight: 800;
}

.detail-sub {
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.detail-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-header-btn {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
}

.faq-icon {
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

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

.faq-item.active {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(15, 23, 42, 0.85);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Sales Funnel Card (Full Width Banner) */
.funnel-cta-card {
    padding: 32px;
    border: 1px solid var(--neon-cyan);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(2, 132, 199, 0.15) 100%);
    box-shadow: 0 0 35px var(--neon-cyan-glow);
}

.funnel-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.funnel-left-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.funnel-shield-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.funnel-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.funnel-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.funnel-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.f-stat-num {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    display: block;
    font-weight: 800;
}

.f-stat-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   REVIEWS & BEFORE/AFTER CASES
   ========================================================================== */
.section-header-center {
    text-align: center;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

.cases-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card-full {
    padding: 32px;
}

.case-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.case-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--royal-gold);
    background: rgba(255, 183, 0, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
}

.case-card-title {
    font-size: 1.25rem;
    font-weight: 800;
}

.case-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.before-after-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
}

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

.ba-overlay-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
}

.bespoke-case-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-bottom: 16px;
}

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

.bespoke-rating-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(9, 13, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-verified {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    font-weight: 700;
}

.client-mini-review {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Reviews Grid 3-Col */
.reviews-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rev-date {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.rev-text {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.rev-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
}

.rev-name { font-weight: 700; font-size: 0.9rem; }
.rev-title { font-size: 0.75rem; color: var(--text-muted); }

/* ==========================================================================
   INTERACTIVE MODALS
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 20, 0.85);
    backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    width: 100%;
    max-width: 680px;
    padding: 40px;
    position: relative;
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 240, 255, 0.2);
}

.modal-lg { max-width: 900px; }
.modal-md { max-width: 600px; }

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--neon-cyan);
}

/* Sales Funnel Quiz Modal Styles */
.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 28px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--emerald-green) 100%);
    transition: width 0.4s ease;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--neon-cyan);
    letter-spacing: 0.1em;
}

.quiz-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 8px 0 24px 0;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quiz-opt-btn {
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-glass);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    transition: var(--transition-fast);
}

.quiz-opt-btn i {
    font-size: 1.75rem;
    color: var(--neon-cyan);
}

.quiz-opt-btn span {
    font-weight: 700;
    font-size: 0.95rem;
}

.quiz-opt-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px var(--neon-cyan-glow);
    transform: translateY(-2px);
}

/* Quiz Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.form-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.quiz-success-view {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.quiz-success-view.active { display: block; }

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.success-title { font-size: 1.75rem; margin-bottom: 12px; }
.success-desc { color: var(--text-muted); margin-bottom: 24px; }

/* 3D Studio Modal */
.studio-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    margin-top: 20px;
}

.studio-canvas-box {
    position: relative;
    height: 400px;
    background: radial-gradient(circle, #1e293b 0%, #090d16 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
}

#studio-3d-canvas {
    width: 100%;
    height: 100%;
}

.studio-hint {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.studio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.studio-option-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.studio-swatches {
    display: flex;
    gap: 8px;
}

.st-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.st-swatch.active { border-color: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }

.studio-select {
    width: 100%;
    padding: 10px;
    background: #0f172a;
    border: 1px solid var(--border-glass);
    color: #fff;
    border-radius: var(--radius-sm);
}

.studio-price-box {
    margin-top: auto;
    padding: 16px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
}

.st-price {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.elite-footer {
    padding-top: 80px;
    padding-bottom: 40px;
    background: #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
}

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

.footer-col-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-col a, .footer-col p {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--neon-cyan);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .elite-header {
        padding: 10px 0;
    }

    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
    }

    .brand-logo {
        gap: 8px;
        flex-shrink: 0;
        z-index: 2;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-sub {
        font-size: 0.55rem;
    }

    .nav-menu, .header-actions {
        display: none !important;
    }

    /* Perfectly centered mobile Test Drive button */
    .header-center-mobile {
        display: inline-flex !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 7px 14px;
        font-size: 0.76rem;
        white-space: nowrap;
        z-index: 2;
    }

    .mobile-toggle-btn {
        display: flex !important;
        position: relative;
        z-index: 2;
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .mobile-dropdown-menu {
        display: block;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-grid, .why-grid, .two-col-layout, .studio-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .two-col-layout > * {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .col-left, .col-right {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-search-card {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        box-sizing: border-box;
    }

    .search-divider {
        display: none;
    }

    .hero-features-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 16px;
    }

    /* Popular Models Header & Filter Tabs Fix */
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .model-filter-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 14px;
        padding: 4px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex: 1 1 auto;
        text-align: center;
    }

    .models-grid, .reviews-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Objection Pills Mobile Stack */
    .objection-pills-grid {
        width: 100%;
        box-sizing: border-box;
    }

    .objection-pill {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 18px;
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }

    .pill-q {
        font-size: 0.9rem;
    }

    .pill-a {
        font-size: 0.8rem;
    }

    .funnel-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .funnel-left-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .funnel-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .elite-container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .brand-logo {
        gap: 6px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-sub {
        display: none;
    }

    .header-center-mobile {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .header-center-mobile i {
        font-size: 0.75rem;
    }

    .mobile-toggle-btn {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-features-bar {
        grid-template-columns: 1fr;
    }

    .models-grid, .reviews-grid-three, .cases-grid-two, .quiz-options-grid {
        grid-template-columns: 1fr;
    }

    .funnel-stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .quiz-modal-content, .studio-modal-content, .car-modal-content {
        padding: 20px 16px;
        width: 95%;
        max-height: 85vh;
        overflow-y: auto;
    }
}
