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

:root {
    --orange: #f97316;
    --orange-dark: #ea6c0a;
    --red: #dc2626;
    --red-dark: #c41f1f;
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-700: #3f3f46;
    --zinc-600: #52525b;
    --zinc-500: #71717a;
    --zinc-400: #a1a1aa;
    --zinc-300: #d4d4d8;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--zinc-950);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Top Bar ────────────────────────────────────────────────────────────────── */
.top-bar {
    background: linear-gradient(to right, #ea580c, #dc2626);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-link { display: none; }
@media (min-width: 640px) { .top-bar-link { display: flex; align-items: center; gap: 0.5rem; } }

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: color 0.2s;
}
.top-bar-phone:hover { color: #fed7aa; }

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--zinc-800);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Override just for the footer badge logo */
.logo-icon--badge {
    width: 3.5rem !important;
    height: 3.5rem !important;
    background: var(--zinc-950) !important; 
    border: 1px solid var(--zinc-800) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
   /* margin-bottom: 0.5rem !important;/*
    border-radius: 14px !important; /* Slightly smoother than 1rem */
    transition: all 0.3s ease !important;
    position: relative !important;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5) !important; /* Adds depth */
}
.logo-icon--badge svg {
    /* Set this to about 70-80% of the container size so it has 'breathing room' */
    width: 3.5rem !important; 
    height: 3.5rem !important;
    fill: linear-gradient(135deg, var(--orange), var(--red)) !important;
    /* Using a filter to apply brand color without changing the SVG path itself */
    filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.4));
}
/*.logo-icon--badge svg {
    width: 100px !important;
    height: 100px !important;
    fill: white !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}*/

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    flex-shrink: 0;
}

.logo-icon svg { width: 1.75rem; height: 1.75rem; color: white; }

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.5rem; font-weight: 800; color: white; line-height: 1; }
.logo-sub { font-size: 0.65rem; color: var(--orange); font-weight: 600; letter-spacing: 0.15em; margin-top: -2px; }

.navbar-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
@media (min-width: 768px) { .navbar-links { display: flex; } }

.nav-link {
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-400);
    transition: all 0.2s;
}
.nav-link:hover { color: white; background: var(--zinc-800); }
.nav-link.active {
    background: linear-gradient(to right, var(--orange), var(--red));
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.navbar-cta { display: none; }
@media (min-width: 768px) { .navbar-cta { display: flex; align-items: center; } }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--orange), var(--red));
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(to right, var(--orange-dark), var(--red-dark));
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--zinc-300);
    border: 1px solid var(--zinc-700);
}
.btn-outline:hover { background: var(--zinc-800); color: white; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 0.75rem; }

/* ─── Hamburger ──────────────────────────────────────────────────────────────── */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--zinc-800); }
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zinc-400);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── Mobile Menu ────────────────────────────────────────────────────────────── */
.mobile-menu {
    display: none;
    background: var(--zinc-900);
    border-top: 1px solid var(--zinc-800);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.mobile-menu.open { display: block; max-height: 400px; }

.mobile-menu-inner { padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--zinc-400);
    transition: all 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: linear-gradient(to right, var(--orange), var(--red));
    color: white;
}

.mobile-menu-phone {
    padding-top: 1rem;
    border-top: 1px solid var(--zinc-800);
    margin-top: 0.5rem;
}
.mobile-menu-phone a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--orange);
    font-weight: 600;
}

/* ─── Main Content ───────────────────────────────────────────────────────────── */
.main-content { min-height: 100vh; }

/* ─── WhatsApp Button ────────────────────────────────────────────────────────── */
/* ─── Floating Action Buttons (left side) ─────────────────────────────────── */
.floating-btns {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.floating-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.floating-btn-inner {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
	border: 1px solid var(--zinc-800) !important;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.floating-btn:hover .floating-btn-inner { transform: scale(1.1); }

.floating-btn--phone .floating-btn-inner {
    background: var(--orange);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}
.floating-btn--phone:hover .floating-btn-inner {
    box-shadow: 0 4px 25px rgba(249, 115, 22, 0.6);
}

.floating-btn--whatsapp .floating-btn-inner {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.floating-btn--whatsapp:hover .floating-btn-inner {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
}

.floating-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: floatingPulse 2s infinite;
    opacity: 0.3;
}
.floating-pulse--phone    { background: var(--orange); animation-delay: 0s; }
.floating-pulse--whatsapp { background: #25D366; animation-delay: 1s; }

@keyframes floatingPulse {
    0%   { transform: scale(1);   opacity: 0.3; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1);   opacity: 0; }
}

.floating-tooltip {
    position: absolute;
    left: 4.25rem;
    background: var(--zinc-900);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--zinc-700);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.floating-btn:hover .floating-tooltip { opacity: 1; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--zinc-900);
    border-top: 1px solid var(--zinc-800);
    margin-top: 5rem;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--zinc-400);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 1rem;
}

.footer-address { color: var(--zinc-500); font-size: 0.875rem; }

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-500);
    margin-bottom: 1rem;
}

.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { color: var(--zinc-400); transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zinc-400);
}
.footer-contact svg { color: var(--orange); flex-shrink: 0; }
.footer-contact a { color: var(--zinc-400); transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }

/* ─── Footer Social ──────────────────────────────────────────────────────────── */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zinc-400);
    transition: all 0.2s;
    text-decoration: none;
}
.footer-social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    transform: translateY(-2px);
}
.footer-social-link svg { width: 1.125rem; height: 1.125rem; }

/* ─── Top Bar Social ─────────────────────────────────────────────────────────── */
.top-bar-social {
    display: none;
}
@media (min-width: 768px) {
    .top-bar-social {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}
.top-bar-social-link {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    text-decoration: none;
}
.top-bar-social-link:hover { color: white; }
.top-bar-social-link svg { width: 0.875rem; height: 0.875rem; }

.footer-bottom {
    border-top: 1px solid var(--zinc-800);
    padding: 2rem 0;
    text-align: center;
    color: var(--zinc-600);
    font-size: 0.875rem;
}

.text-orange { color: var(--orange); }
.text-red { color: var(--red); }

/* ─── Utilities ──────────────────────────────────────────────────────────────── */
.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(to right, rgba(249,115,22,0.2), rgba(220,38,38,0.2));
    color: var(--orange);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid rgba(249,115,22,0.3);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}
@media (min-width: 640px) { .section-title { font-size: 3rem; } }

.gradient-text {
    background: linear-gradient(to right, #fb923c, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Hero Section ───────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--zinc-950);
    padding: 5rem 0;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(154,52,18,0.2), transparent 60%);
}
.hero-bg-accent {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to left, rgba(127,29,29,0.1), transparent);
}
.hero-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249,115,22,0.4), rgba(220,38,38,0.2), transparent);
}
.hero-line-1 { right: 25%; transform: rotate(12deg); transform-origin: top; }
.hero-line-2 { right: 33%; transform: rotate(-12deg); transform-origin: top; }

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-logo-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.hero-logo-badge .logo-icon { width: 3.5rem; height: 3.5rem; }
.hero-logo-badge .logo-name { font-size: 1.875rem; }
.hero-logo-badge .logo-sub { font-size: 0.75rem; }

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    word-break: normal;
    overflow-wrap: normal;
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-title-orange {
    display: block;
    background: linear-gradient(to right, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-normal { display: block; }
.hero-title-red {
    display: block;
    background: linear-gradient(to right, #f87171, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    font-size: clamp(1.75rem, 8vw, 4.5rem);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--zinc-400);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

.hero-cta .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
@media (min-width: 640px) {
    .hero-cta .btn {
        width: auto;
    }
}

.hero-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(24,24,27,0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    border: 1px solid var(--zinc-800);
}

.hero-hours-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}
.hero-hours-icon span {
    color: white;
    font-weight: 800;
    font-size: 0.65rem;
    transform: rotate(-45deg);
}
.hero-hours-time { color: white; font-weight: 700; font-size: 1.125rem; }
.hero-hours-days { color: var(--zinc-500); font-size: 0.875rem; }

.hero-image-wrap {
    display: none;
    position: relative;
}
@media (min-width: 1024px) { .hero-image-wrap { display: block; } }

.hero-image-inner { position: relative; }
.hero-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--zinc-950), transparent);
    border-radius: 1rem;
}

.hero-float-badge {
    position: absolute;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-float-badge--bottom-left { bottom: -1.5rem; left: -1.5rem; }
.hero-float-badge--top-right { top: -1rem; right: -1rem; }

.hero-float-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-float-icon--green { background: rgba(34,197,94,0.2); color: #22c55e; }
.hero-float-icon--orange { background: rgba(0,0,0,0.7); color: var(--orange); }
.hero-float-icon--tbi { background: #000; color: var(--orange); }

.hero-float-title-tbi { 
    color: white !important; 
    font-weight: 600;
    font-size: 1.25rem;
}

.hero-float-desc { color: var(--zinc-500); font-size: 0.75rem; }

/* Trust Badges */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--zinc-800);
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) { .hero-trust-badges { grid-template-columns: repeat(3, 1fr); } }

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(24,24,27,0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(63,63,70,0.5);
}
.trust-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(220,38,38,0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}
.trust-badge-title { color: white; font-weight: 600; font-size: 0.875rem; }
.trust-badge-desc { color: var(--zinc-500); font-size: 0.75rem; }

/* Bank badges — logo instead of icon */
.trust-badge--bank { gap: 0.75rem; }
.trust-badge-logo {
    width: 3rem !important;
    height: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border-radius: 0.375rem;
    padding: 0.25rem;
    overflow: hidden;
}
.trust-badge-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* UniCredit SVG has hardcoded 184px width — force it to fit */
.trust-badge-logo--unicredit {
    width: 3.5rem !important;
    height: 2rem !important;
}
.trust-badge-logo--unicredit svg {
    width: 3.5rem !important;
    height: 2rem !important;
}

/* ─── Featured Section ───────────────────────────────────────────────────────── */
.featured-section { padding: 6rem 0; background: var(--zinc-950); }

.featured-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .featured-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}
.featured-view-all:hover { color: #fb923c; }
.featured-view-all svg { transition: transform 0.2s; }
.featured-view-all:hover svg { transform: translateX(4px); }

/* ─── Cars Grid ──────────────────────────────────────────────────────────────── */
.cars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .cars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .cars-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Car Card ───────────────────────────────────────────────────────────────── */
/* Clickable card link wrapper */
.car-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.car-card-link:hover .car-card {
    border-color: rgba(249,115,22,0.5);
    transform: translateY(-4px);
    transition: border-color 0.3s, transform 0.3s;
}

.car-card {
    background: var(--zinc-900);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--zinc-800);
    transition: border-color 0.3s, transform 0.3s;
}
.car-card:hover { border-color: rgba(249,115,22,0.5); }

.car-card-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
    background: var(--zinc-800);
}
.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.car-card:hover .car-card-image img { transform: scale(1.05); }

.car-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--zinc-900), transparent);
}

.car-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.car-card-badge--status {
    background: rgba(9,9,11,0.9);
    color: white;
    border: 1px solid var(--zinc-700);
}
.car-card-badge--featured {
    background: linear-gradient(to right, var(--orange), var(--red));
    color: white;
}

.car-card-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(9,9,11,0.9);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    border: 1px solid var(--zinc-700);
}

.car-card-content { padding: 1.5rem; }
.car-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.car-card-specs {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid var(--zinc-800);
    border-bottom: 1px solid var(--zinc-800);
    font-size: 0.875rem;
    color: var(--zinc-400);
}
.car-card-spec {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.car-card-spec svg { color: var(--orange); }

.car-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}
.car-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fb923c, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}
.car-card-footer .btn { flex-shrink: 0; }

/* ─── No Results ─────────────────────────────────────────────────────────────── */
.no-results-box {
    text-align: center;
    padding: 4rem;
    background: var(--zinc-900);
    border-radius: 1rem;
    border: 1px solid var(--zinc-800);
    color: var(--zinc-500);
}

/* ─── Why Choose Us ──────────────────────────────────────────────────────────── */
.why-section { padding: 6rem 0; background: var(--zinc-900); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-content { display: flex; flex-direction: column; gap: 1.5rem; }

.why-subtitle {
    color: var(--zinc-400);
    font-size: 1.125rem;
    line-height: 1.7;
}

.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.why-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--zinc-300);
}
.why-checklist svg { color: var(--orange); flex-shrink: 0; }

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .why-features-grid { grid-template-columns: repeat(2, 1fr); } }

.why-feature-card {
    padding: 1.5rem;
    background: rgba(39,39,42,0.5);
    border-radius: 1rem;
    border: 1px solid rgba(63,63,70,0.5);
    transition: border-color 0.2s;
}
.why-feature-card:hover { border-color: rgba(249,115,22,0.3); }

.why-feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}
.why-feature-card h3 { color: white; font-weight: 700; margin-bottom: 0.5rem; }
.why-feature-card p { color: var(--zinc-400); font-size: 0.875rem; line-height: 1.6; }

/* ─── Page Header ────────────────────────────────────────────────────────────── */
.page-header {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--zinc-900), var(--zinc-900), var(--zinc-800));
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(154,52,18,0.2), transparent 60%);
}
.page-header-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}
@media (min-width: 640px) { .page-header-title { font-size: 3.75rem; } }
.page-header-subtitle {
    color: var(--zinc-400);
    font-size: 1.125rem;
    position: relative;
}

/* ─── Inventory Layout ───────────────────────────────────────────────────────── */
.inventory-page { min-height: 100vh; background: var(--zinc-950); }

.inventory-layout { padding: 3rem 0; }

.inventory-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .inventory-toolbar { flex-direction: row; } }

.search-wrap {
    position: relative;
    flex: 1;
}
.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zinc-500);
    pointer-events: none;
}
.search-input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem 0 3rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}
.search-input::placeholder { color: var(--zinc-500); }
.search-input:focus { border-color: var(--orange); }

.sort-select {
    height: 3rem;
    padding: 0 1rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    cursor: pointer;
    min-width: 12rem;
}
.sort-select:focus { border-color: var(--orange); }

.inventory-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* ─── Filters Sidebar ────────────────────────────────────────────────────────── */
.filters-sidebar {
    display: none;
    width: 18rem;
    flex-shrink: 0;
}
@media (min-width: 1024px) { .filters-sidebar { display: block; } }

.filters-box {
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 7rem;
}

.filters-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.filter-group { margin-bottom: 1.5rem; }

.filter-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-300);
    margin-bottom: 0.5rem;
}

.filter-select {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-700);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    cursor: pointer;
}
.filter-select:focus { border-color: var(--orange); }

.filter-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.filter-input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-700);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
}
.filter-input::placeholder { color: var(--zinc-500); }
.filter-input:focus { border-color: var(--orange); }

/* ─── Inventory Results ──────────────────────────────────────────────────────── */
.inventory-results { flex: 1; min-width: 0; }

.results-count {
    color: var(--zinc-400);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}
.results-count span { color: white; font-weight: 600; font-size: 1rem; }

/* ─── Vehicle Details Page ───────────────────────────────────────────────────── */
.vehicle-details-page {
    min-height: 100vh;
    background: var(--zinc-950);
    padding: 2rem 0 4rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zinc-400);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.back-link:hover { color: var(--orange); }

.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 1024px) { .vehicle-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* Gallery */
.vehicle-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--zinc-800);
    cursor: zoom-in;
}
.vehicle-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s;
    background: var(--zinc-800);
}
.vehicle-main-image:hover .vehicle-main-img { transform: scale(1.03); }

/* Mobile image fix */
@media (max-width: 639px) {
    .vehicle-main-image {
        aspect-ratio: 16/9;
        border-radius: 0.5rem;
    }
    .vehicle-thumbnails {
        gap: 0.375rem;
    }
    .vehicle-thumb {
        width: 4rem;
        height: 2.75rem;
    }
}
.vehicle-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,9,11,0.3), transparent);
}
.vehicle-status-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(9,9,11,0.9);
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 1px solid var(--zinc-700);
}
.vehicle-verified-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.vehicle-verified-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(34,197,94,0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}
.vehicle-verified-title { color: white; font-weight: 600; font-size: 0.875rem; }
.vehicle-verified-desc { color: var(--zinc-500); font-size: 0.75rem; }

.vehicle-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.vehicle-thumb {
    flex-shrink: 0;
    width: 5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    padding: 0;
}
.vehicle-thumb:hover { opacity: 1; }
.vehicle-thumb.active { border-color: var(--orange); opacity: 1; }
.vehicle-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info Panel */
.vehicle-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid;
}
.vehicle-status-badge--available {
    background: rgba(249,115,22,0.2);
    color: var(--orange);
    border-color: rgba(249,115,22,0.3);
}
.vehicle-status-badge--sold {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
    border-color: rgba(239,68,68,0.3);
}
.vehicle-status-badge--reserved {
    background: rgba(234,179,8,0.2);
    color: #eab308;
    border-color: rgba(234,179,8,0.3);
}

.vehicle-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .vehicle-title { font-size: 2.5rem; } }

.vehicle-subtitle {
    color: var(--zinc-400);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.vehicle-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fb923c, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .vehicle-specs-grid { grid-template-columns: repeat(3, 1fr); } }

.vehicle-spec-card {
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 0.75rem;
    padding: 1rem;
}
.vehicle-spec-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zinc-500);
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}
.vehicle-spec-label svg { color: var(--orange); }
.vehicle-spec-value { color: white; font-weight: 600; }

.vehicle-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 0.75rem;
}
.vehicle-description h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.vehicle-description p { color: var(--zinc-400); line-height: 1.7; }

.vehicle-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) { .vehicle-ctas { flex-direction: row; } }

/* Features */
.vehicle-features-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--zinc-800);
}
.vehicle-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}
.vehicle-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) { .vehicle-features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .vehicle-features-grid { grid-template-columns: repeat(4, 1fr); } }

.vehicle-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zinc-300);
    font-size: 0.875rem;
    padding: 0.5rem;
    background: var(--zinc-900);
    border-radius: 0.5rem;
    border: 1px solid var(--zinc-800);
}
.vehicle-feature-item svg { color: var(--orange); flex-shrink: 0; }

/* ─── Lightbox ───────────────────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
    max-height: 80vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 0.5rem;
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

.lightbox-counter {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* ─── Contact Page (New) ─────────────────────────────────────────────────────── */
.contact-page { min-height: 100vh; background: var(--zinc-950); }

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 4rem 0 2rem;
}
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-info-card {
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s;
}
.contact-info-card:hover { border-color: rgba(249,115,22,0.3); }

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(220,38,38,0.2));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}
.contact-info-card h3 {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}
.contact-info-card p,
.contact-info-card a {
    color: var(--zinc-400);
    font-size: 0.875rem;
    display: block;
    line-height: 1.6;
    transition: color 0.2s;
}
.contact-info-card a:hover { color: var(--orange); }

/* WhatsApp Section */
.contact-whatsapp-section {
    margin: 3rem 0;
}
.contact-whatsapp-inner {
    background: linear-gradient(135deg, #1a3a2a, #1a2a1a);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .contact-whatsapp-inner {
        flex-direction: row;
        text-align: left;
    }
}

.contact-whatsapp-icon {
    width: 5rem;
    height: 5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(37,211,102,0.3);
}

.contact-whatsapp-content h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-whatsapp-content p {
    color: var(--zinc-400);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-whatsapp-btn {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.contact-whatsapp-btn:hover {
    background: #20b858;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transform: translateY(-1px);
}

/* Map Section */
.contact-map-section { margin: 3rem 0 4rem; }

.contact-map-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-map-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--zinc-800);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ─── Reviews Page ───────────────────────────────────────────────────────────── */
.reviews-page { min-height: 100vh; background: var(--zinc-950); }

/* Summary */
.reviews-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 3rem 0;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .reviews-summary {
        flex-direction: row;
        text-align: left;
    }
}

.reviews-summary-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.reviews-summary-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, #fb923c, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.reviews-summary-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.reviews-summary-count { color: var(--zinc-500); font-size: 0.875rem; }

.reviews-summary-divider {
    width: 1px;
    height: 80px;
    background: var(--zinc-800);
    display: none;
}
@media (min-width: 768px) { .reviews-summary-divider { display: block; } }

.reviews-summary-text h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.reviews-summary-text p { color: var(--zinc-400); margin-bottom: 1rem; }

.reviews-summary-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.reviews-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 9999px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Reviews Grid */
/* ── Reviews Carousel ─────────────────────────────────────────────────────── */
.reviews-carousel-section {
    margin-bottom: 4rem;
}

/* Viewport: positioning context for the overlaid arrows */
.reviews-carousel-viewport {
    position: relative;
    padding: 0 3rem; /* space so arrows don't overlap cards */
}
@media (max-width: 767px) {
    .reviews-carousel-viewport { padding: 0 2.5rem; }
}

/* Card grid — always 3 cols on desktop, 1 on mobile */
.reviews-carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .reviews-carousel-track { grid-template-columns: repeat(3, 1fr); }
}

/* Ghost cards — invisible but keep grid height fixed */
.review-card--ghost {
    visibility: hidden;
    pointer-events: none;
    /* Must match .review-card exactly so ghost occupies identical space */
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
}

/* Arrows — same pattern as vehicle gallery, centered vertically on the track */
.reviews-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(9,9,11,0.7);
    border: 1px solid var(--zinc-700);
    color: white;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    -webkit-tap-highlight-color: transparent;
}
.reviews-carousel-arrow:hover {
    background: rgba(249,115,22,0.8);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.1);
}
/* Prevent focus outline on arrows */
.reviews-carousel-arrow:focus { outline: none; }
.reviews-carousel-arrow--prev { left: 0; }
.reviews-carousel-arrow--next { right: 0; }
@media (max-width: 767px) {
    .reviews-carousel-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }
}

/* Dots */
.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.reviews-carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--zinc-700);
    border: none;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
}
.reviews-carousel-dot.active {
    background: var(--orange);
    width: 1.5rem;
}

/* Review Card */
.review-card {
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(249,115,22,0.3); }

.review-stars { display: flex; gap: 0.25rem; }

.review-text {
    color: var(--zinc-300);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.review-car {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 9999px;
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--zinc-800);
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-name { color: white; font-weight: 600; font-size: 0.875rem; }
.review-date { color: var(--zinc-500); font-size: 0.75rem; }

/* Review Form */
.review-form-section { margin-top: 3rem; margin-bottom: 3rem; }

.review-form-card {
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.review-form-card .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-300);
    margin-bottom: 0.5rem;
}
.review-form-card .form-input,
.review-form-card .form-textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-700);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
}
.review-form-card .form-input:focus,
.review-form-card .form-textarea:focus { border-color: var(--orange); }
.review-form-card .form-group { margin-bottom: 1.25rem; }
.review-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 640px) { .review-form-card .form-row { grid-template-columns: 1fr; } }

.review-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.review-form-header h2 { color: white; font-weight: 700; font-size: 1.25rem; }
.review-form-header p { color: var(--zinc-500); font-size: 0.875rem; }

.review-form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.review-form-success h3 { color: white; font-size: 1.5rem; font-weight: 700; margin: 1rem 0 0.5rem; }
.review-form-success p { color: var(--zinc-400); }

/* Star Picker */
.star-picker {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.1s;
}
.star-btn:hover { transform: scale(1.2); }

/* ─── Form Fields Global Fix ─────────────────────────────────────────────────── */
.form-input,
.form-select,
.form-textarea {
    background-color: var(--zinc-800) !important;
    border: 1px solid var(--zinc-700) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--zinc-500) !important;
    -webkit-text-fill-color: var(--zinc-500) !important;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--orange) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Fix browser autofill white background */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #27272a inset !important;
    -webkit-text-fill-color: white !important;
    border-color: var(--zinc-700) !important;
}

/* Fix select dropdown arrow color */
.form-select option {
    background-color: var(--zinc-800);
    color: white;
}

/* ─── Vehicle Features Grouped ───────────────────────────────────────────────── */
.vehicle-features-category {
    margin-bottom: 2rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    overflow: hidden;
}

.vehicle-features-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(249,115,22,0.05);
    border-bottom: 1px solid var(--zinc-800);
}

.vehicle-features-category-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(220,38,38,0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.vehicle-features-category-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
}

.vehicle-features-category-count {
    color: var(--zinc-500);
    font-size: 0.75rem;
    background: var(--zinc-800);
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.vehicle-features-category .vehicle-features-grid {
    padding: 1.25rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .vehicle-features-category .vehicle-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .vehicle-features-category .vehicle-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ─── Vehicle Gallery Container Fix ─────────────────────────────────────────── */
.vehicle-gallery {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* ─── Mobile Image Fix ───────────────────────────────────────────────────────── */
@media (max-width: 639px) {
    .vehicle-main-image {
        aspect-ratio: 16/9;
        border-radius: 0.5rem;
    }
    .vehicle-thumbnails {
        gap: 0.375rem;
    }
    .vehicle-thumb {
        width: 4rem;
        height: 2.75rem;
    }
}

/* ─── Global Mobile Overflow Prevention ─────────────────────────────────────── */
@media (max-width: 639px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    .hero-logo-badge .logo-name {
        font-size: 1.5rem;
    }
    .container {
        padding: 0 1rem;
    }
}

/* ─── Vehicle Image Arrows ───────────────────────────────────────────────────── */
.vehicle-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(9,9,11,0.7);
    border: 1px solid var(--zinc-700);
    color: white;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    -webkit-tap-highlight-color: transparent;
}
.vehicle-arrow:hover {
    background: rgba(249,115,22,0.8);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.1);
}
/* Prevent focus outline on arrows */
.vehicle-arrow:focus { outline: none; }
.vehicle-arrow--prev { left: 0.75rem; }
.vehicle-arrow--next { right: 0.75rem; }
@media (max-width: 767px) {
    .vehicle-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.vehicle-image-counter {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(9,9,11,0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    border: 1px solid var(--zinc-700);
    z-index: 10;
    pointer-events: none;
}
/* ─── Thumbnail Scrollbar ────────────────────────────────────────────────────── */
.vehicle-thumbnails::-webkit-scrollbar {
    height: 4px;
}
.vehicle-thumbnails::-webkit-scrollbar-track {
    background: var(--zinc-800);
    border-radius: 9999px;
}
.vehicle-thumbnails::-webkit-scrollbar-thumb {
    background: var(--zinc-600);
    border-radius: 9999px;
}
.vehicle-thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* ---- Google Reviews plugin ------------------------- */
/* Google Reviews Plugin Custom Styling */
.grw-custom-wrapper {
    background: var(--zinc-900);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--zinc-800);
    margin-bottom: 4rem;
}

/* Background & Text Colors */
.grw-custom-wrapper .wp-google-reviews,
.grw-custom-wrapper .grw-container {
    background-color: transparent !important;
    color: var(--white) !important;
}

/* Review Cards Styling */
.grw-custom-wrapper .grw-review {
    background: var(--zinc-950) !important;
    border: 1px solid var(--zinc-800) !important;
    border-radius: 0.75rem !important;
    padding: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

/* Stars Color - Matching your --orange (#f97316) */
.grw-custom-wrapper .wp-google-star, 
.grw-custom-wrapper .grw-star-icon {
    color: var(--orange) !important;
    fill: var(--orange) !important;
}

/* "review us on G" button — match section-badge style */
.grw-custom-wrapper .grw-button,
.grw-custom-wrapper .wp-google-view-all {
    display: inline-block !important;
    padding: 0.375rem 1rem !important;
    background: linear-gradient(to right, rgba(249,115,22,0.2), rgba(220,38,38,0.2)) !important;
    color: var(--orange) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(249,115,22,0.3) !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.grw-custom-wrapper .grw-button:hover,
.grw-custom-wrapper .wp-google-view-all:hover {
    background: linear-gradient(to right, rgba(249,115,22,0.3), rgba(220,38,38,0.3)) !important;
    border-color: rgba(249,115,22,0.5) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Name and Dates */
.grw-custom-wrapper .grw-name {
    color: var(--white) !important;
    font-weight: 700 !important;
}

.grw-custom-wrapper .grw-date {
    color: var(--zinc-500) !important;
}