/* ============================================
   CARU CARS — Miami Buy Here Pay Here
   Kinetic, bold, welcoming design
   ============================================ */

:root {
    --red: #E63946;
    --red-dark: #C1121F;
    --dark: #1A1A2E;
    --navy: #16213E;
    --blue: #0F3460;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray-100: #F7F7F8;
    --gray-200: #E8E8EC;
    --gray-400: #9CA3AF;
    --gray-600: #6B7280;
    --gray-800: #374151;
    --green: #10B981;
    --gold: #F59E0B;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ============ LANGUAGE PICKER (First Visit) ============ */
.lang-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-picker-overlay.visible { opacity: 1; }

.lang-picker {
    background: white;
    border-radius: 20px;
    padding: 40px 36px 36px;
    text-align: center;
    max-width: 340px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

.lang-picker-overlay.visible .lang-picker {
    transform: scale(1) translateY(0);
}

.lang-picker-logo { margin-bottom: 20px; }

.lang-picker-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 28px;
}

.lang-picker-btns {
    display: flex;
    gap: 12px;
}

.lang-pick-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d2939;
    transition: all 0.2s;
}

.lang-pick-btn:hover {
    border-color: #e63946;
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230,57,70,0.15);
}

.lang-pick-flag {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    background: linear-gradient(135deg, #1d2939 0%, #374151 100%);
    letter-spacing: 0.5px;
}

.lang-pick-btn:hover .lang-pick-flag {
    background: linear-gradient(135deg, #e63946 0%, #c62828 100%);
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: var(--dark);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--gray-400);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.active {
    background: var(--red);
    color: var(--white);
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
    padding: 12px 0;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-link {
    color: var(--gray-300);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.top-link svg { width: 16px; height: 16px; }

.top-link:hover { color: var(--white); }
.top-divider { color: var(--gray-600); }
.top-hours { color: var(--green); font-weight: 600; }

/* ============ NAVBAR ============ */
.navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.12); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo-caru { color: var(--dark); }
.logo-cars { color: var(--red); }

.nav-lang-toggle {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--dark);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--red);
    font-weight: 600;
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-white:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(155, 44, 142, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(15, 52, 96, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}

.hero-car-backdrop {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 900px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: heroCarFloat 6s ease-in-out infinite alternate;
}

.hero-car-svg {
    width: 100%;
    height: auto;
}

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

@keyframes heroPulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Animated diagonal stripes */
.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(230, 57, 70, 0.04) 80px,
        rgba(230, 57, 70, 0.04) 82px
    );
    animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(113px, 113px); }
}

/* Floating particles */
.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatBubble 6s ease-in-out infinite;
}

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

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: badgePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both, badgePulse 3s ease-in-out 1.5s infinite;
    box-shadow: 0 4px 24px rgba(230, 57, 70, 0.5);
    border: 2px solid rgba(255,255,255,0.2);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(230, 57, 70, 0.5); }
    50% { box-shadow: 0 4px 40px rgba(230, 57, 70, 0.8), 0 0 60px rgba(230, 57, 70, 0.3); }
}

@keyframes badgePop {
    0% { opacity: 0; transform: scale(0.5) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-line1 {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--white);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-line2 {
    display: block;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(60px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-item svg { stroke: var(--green); flex-shrink: 0; }

/* ============ BUY HERE PAY HERE BANNER ============ */
.bhph-banner {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.bhph-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.bhph-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
}

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

.bhph-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
}

.bhph-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bhph-card:hover {
    border-color: var(--red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.bhph-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    transition: transform 0.4s ease;
}

.bhph-card:hover .bhph-icon { transform: scale(1.1) rotate(5deg); }

.bhph-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.bhph-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============ SECTIONS ============ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta { text-align: center; margin-top: 48px; }

/* ============ FEATURED CARS ============ */
.featured-section {
    padding: 100px 0;
    background: var(--cream);
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.car-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.car-info { padding: 20px; }

.car-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.car-meta {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.car-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.car-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
}

.car-payment {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ============ HOW IT WORKS ============ */
.how-section {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    flex: 1;
    max-width: 320px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.step-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-arrow {
    color: var(--gray-400);
    flex-shrink: 0;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 1; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.03) 40px,
        rgba(255,255,255,0.03) 42px
    );
    animation: stripeMove 15s linear infinite;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============ GOOGLE REVIEWS CAROUSEL ============ */
.testimonials-section {
    padding: 80px 0;
    background: var(--cream);
}

.google-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.google-logo {
    height: 36px;
    width: auto;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-stars {
    color: #FBBC05;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.google-rating-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.reviews-carousel {
    position: relative;
    margin: 0 -16px;
    padding: 0 16px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 4px 24px;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 80px;
}

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

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
}

.review-author strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    display: block;
}

.review-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 3;
    color: var(--dark);
    transition: all 0.2s;
}

.carousel-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 768px) {
    .review-card { flex: 0 0 280px; }
    .carousel-btn { display: none; }
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.footer-logo .logo-caru {
    color: white;
}

.footer-tagline {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.3s;
    line-height: 1.6;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============ MOBILE ============ */
@media (max-width: 1024px) {
    .car-grid { grid-template-columns: repeat(2, 1fr); }
    .bhph-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; gap: 4px; }
    .top-bar-left { flex-wrap: wrap; justify-content: center; font-size: 0.75rem; }
    .top-bar-right { display: none; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }

    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 20px; width: 100%; text-align: left; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-lang-toggle {
        display: flex !important;
        gap: 0;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid var(--gray-200);
    }
    .nav-lang-btn {
        flex: 1;
        padding: 10px;
        border: none;
        background: transparent;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        color: var(--gray-400);
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    .nav-lang-btn.active {
        background: var(--red);
        color: var(--white);
    }

    .hero { min-height: 75vh; }
    .hero-inner { padding: 60px 0; }

    .bhph-grid { grid-template-columns: 1fr; gap: 16px; }
    .bhph-card { padding: 28px 24px; }

    .car-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    @keyframes arrowPulse {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.5; }
        50% { transform: rotate(90deg) translateX(6px); opacity: 1; }
    }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .lang-toggle {
        display: none;
    }
    .nav-lang-toggle {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 12px; align-items: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    .filter-bar { grid-template-columns: 1fr; }
    .inventory-grid { grid-template-columns: 1fr; }
    .inv-hero-count { flex-direction: column; gap: 4px; }
    .inv-count-num { font-size: 2.5rem; }
}

/* ============ PAGE-LEVEL STYLES (shared across pages) ============ */

/* Inventory Page */
.page-hero {
    background: var(--dark);
    padding: 130px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(15, 52, 96, 0.3) 0%, transparent 50%);
}

.page-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

/* Inventory Hero Count */
.inv-hero-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.inv-count-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inv-count-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Inventory Filter Bar */
.filter-bar {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    margin: -30px auto 24px;
    max-width: 1100px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 3;
}

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

.filter-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.filter-select {
    padding: 11px 36px 11px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--red);
}

/* Results Bar */
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 32px;
    padding: 0 4px;
}

.results-count {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.results-count strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    font-weight: 800;
}

.results-clear {
    background: none;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    padding: 6px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.results-clear:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Inventory Grid (full page) */
.inventory-section { padding: 0 0 100px; }

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

/* Refined Car Cards */
.car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s ease forwards;
}

.car-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.car-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

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

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

.car-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8ec 0%, #f7f7f8 40%, #e8e8ec 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes shimmer {
    0% { background-position: 200% 0%; }
    100% { background-position: -200% 0%; }
}

.car-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.placeholder-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.car-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.car-year-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(26, 26, 46, 0.85);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
}

.car-info { padding: 20px; }

.car-title-row {
    margin-bottom: 10px;
}

.car-title-row h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.3;
}

.car-year {
    color: var(--red);
    font-weight: 800;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.car-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gray-600);
}

.car-spec svg { color: var(--gray-400); flex-shrink: 0; }

.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.car-divider {
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 14px;
}

.car-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.car-price-original {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
    display: block;
    line-height: 1;
}

.car-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--red);
}

.car-price-down {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--green);
    display: block;
    line-height: 1;
    margin-top: 1px;
}

.car-payment {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red);
}

.car-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.car-cta-btn:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

.price-disclosure {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--gray-400);
    text-align: center;
    padding: 24px 20px 0;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.inventory-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--gray-400);
}

.inventory-empty h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gray-600);
}

/* ============ VEHICLE DETAIL PAGE ============ */

.car-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vehicle-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 100px;
    margin-bottom: 16px;
    padding: 8px 0;
    color: var(--gray-600);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.vehicle-back:hover {
    color: var(--red);
}

.vehicle-back svg {
    transition: transform 0.2s;
}

.vehicle-back:hover svg {
    transform: translateX(-4px);
}

.vehicle-detail {
    padding: 0 0 60px;
}

.vehicle-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 40px;
    align-items: start;
}

.vehicle-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vehicle-main-img {
    width: 100%;
    max-height: 380px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    z-index: 2;
}

.gallery-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 2px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

.gallery-thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s;
    scroll-snap-align: center;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--red);
}

/* Photo count badge on inventory cards */
.car-photo-count {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.65);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Badge on inventory cards */
.car-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Vehicle equipment section */
.vehicle-equipment {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.vehicle-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.equipment-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 4px 10px;
    border-radius: 6px;
}

.vehicle-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.vehicle-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--gray-400);
}

.vehicle-placeholder-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vehicle-title-block {
    margin-bottom: 24px;
}

.vehicle-year-label {
    display: inline-block;
    background: var(--dark);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.vehicle-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 6px;
}

.vehicle-trim {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--gray-600);
}

.vehicle-price-block {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vehicle-price-original {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.vehicle-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.vehicle-price-down {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #86efac;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.vehicle-call-btn {
    background: white;
    color: var(--red);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.vehicle-call-btn:hover {
    background: var(--cream);
    transform: scale(1.03);
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.vehicle-spec-item {
    background: white;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-spec-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
}

.vehicle-spec-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-vin {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    word-break: break-all;
}

.vehicle-financing-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 28px;
    border-left: 4px solid var(--red);
}

.vehicle-financing-note svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.vehicle-financing-note strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.vehicle-financing-note p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
}

.vehicle-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vehicle-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
}

/* ---- BHPH Badge ---- */
.bhph-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16a34a 0%, #0d7a35 50%, #16a34a 100%);
    background-size: 200% 100%;
    animation: badgeShimmer 3s ease-in-out infinite;
    padding: 16px 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}

.bhph-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: badgeFlare 4s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes badgeFlare {
    0% { left: -100%; }
    40%, 100% { left: 150%; }
}

.bhph-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bhph-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.bhph-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
}

/* ---- New elements (all viewports) ---- */
.vehicle-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.vehicle-price-tag { display: none; }
.vehicle-quick-specs { display: none; }
.vehicle-apply-banner { display: none; }
.desktop-only { display: flex; }

.gallery-dots { display: none; }

.vehicle-apply-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    color: #166534;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.vehicle-apply-banner:hover {
    background: #dcfce7;
    transform: translateY(-1px);
}

.equipment-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
}

.equipment-toggle .vehicle-section-title { margin-bottom: 0; }

.equipment-count {
    background: var(--gray-200);
    color: var(--gray-600);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.equipment-chevron {
    margin-left: auto;
    transition: transform 0.3s;
    color: var(--gray-400);
}

.equipment-toggle.open .equipment-chevron {
    transform: rotate(180deg);
}

.vehicle-sticky-bar { display: none; }

/* ---- Mobile app-like vehicle detail ---- */
@media (max-width: 768px) {
    /* Hide desktop-only elements */
    .desktop-only { display: none !important; }
    .vehicle-price-tag { display: block; }
    .vehicle-quick-specs { display: none !important; }
    .vehicle-apply-banner { display: flex; }
    .gallery-dots { display: flex; }
    .gallery-thumbs { display: none; }
    .gallery-nav { display: none; }

    /* Strip top bar on vehicle page */
    .vehicle-detail ~ .cta-banner { display: none; }

    /* Full-bleed gallery */
    .vehicle-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .vehicle-gallery {
        position: static;
        margin: 0 -20px;
    }
    .gallery-main {
        border-radius: 0;
        max-height: none;
    }
    .vehicle-main-img {
        max-height: none;
        height: 55vw;
        min-height: 200px;
        border-radius: 0;
        object-fit: cover;
        object-position: center;
    }
    .gallery-counter {
        bottom: 32px;
        right: 12px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    /* Dot indicators */
    .gallery-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        gap: 6px;
        z-index: 3;
    }
    .gallery-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        transition: all 0.3s;
        cursor: pointer;
    }
    .gallery-dot.active {
        background: white;
        width: 20px;
        border-radius: 4px;
    }

    /* Compact info section */
    .vehicle-info {
        padding: 16px 20px 20px;
    }
    .bhph-badge {
        padding: 12px 16px;
        margin-bottom: 14px;
        border-radius: 10px;
    }
    .bhph-main {
        font-size: 1.1rem;
    }
    .bhph-sub {
        font-size: 0.68rem;
    }
    .vehicle-header-row {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    .vehicle-title-block {
        margin-bottom: 0;
        flex: 1;
    }
    .vehicle-year-label {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-bottom: 4px;
    }
    .vehicle-title {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    .vehicle-trim {
        font-size: 0.8rem;
        color: var(--gray-500);
    }
    .vehicle-price-tag .vehicle-price-original {
        font-size: 0.8rem;
        color: var(--gray-400);
        margin-bottom: 0;
    }
    .vehicle-price-tag .vehicle-price {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--red);
    }
    .vehicle-price-tag .vehicle-price-down {
        font-size: 0.65rem;
        color: var(--green);
    }

    /* Quick specs row */
    .vehicle-quick-specs {
        gap: 16px;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: 16px;
    }
    .quick-spec {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.8rem;
        color: var(--gray-600);
    }
    .quick-spec svg { color: var(--gray-400); flex-shrink: 0; }

    /* Specs grid */
    .vehicle-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--gray-200);
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 16px;
    }
    .vehicle-spec-item {
        background: white;
        padding: 10px 12px;
    }
    .vehicle-spec-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .vehicle-spec-value { font-size: 0.8rem; }
    .vehicle-vin { font-size: 0.65rem; word-break: break-all; }

    /* Apply banner compact */
    .vehicle-apply-banner {
        padding: 12px 14px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    /* Equipment */
    .vehicle-equipment {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    .equipment-grid { gap: 5px; flex-wrap: wrap; }
    .equipment-tag { font-size: 0.7rem; padding: 3px 7px; }

    /* Hide financing note on mobile (redundant with apply banner + sticky bar) */
    .vehicle-financing-note { display: none; }

    /* Back link compact */
    .vehicle-back {
        margin-top: 8px !important;
        margin-bottom: 4px;
        font-size: 0.8rem;
    }
    .vehicle-back span { display: none; }
    .vehicle-back svg { width: 22px; height: 22px; }

    /* Vehicle detail section tight */
    .vehicle-detail { padding: 0; }
    .vehicle-detail .container { padding: 0; }

    /* Sticky call bar */
    .vehicle-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: white;
        border-top: 1px solid var(--gray-200);
        padding: 10px 16px;
        gap: 10px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
    .sticky-call-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #16a34a;
        color: white;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        padding: 14px 20px;
        border-radius: 12px;
        text-decoration: none;
        transition: background 0.2s;
    }
    .sticky-call-btn:hover { background: #15803d; }
    .sticky-apply-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--red);
        color: white;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        padding: 14px 18px;
        border-radius: 12px;
        text-decoration: none;
    }

    /* Give footer room above sticky bar */
    .vehicle-detail ~ .footer .footer-bottom {
        padding-bottom: 80px;
    }

    /* Push Maria chat above sticky bar */
    .chat-bubble { bottom: 80px; }
}

/* Extra small phones */
@media (max-width: 380px) {
    .vehicle-title { font-size: 1.15rem; }
    .vehicle-price-tag .vehicle-price { font-size: 1.3rem; }
    .quick-spec { font-size: 0.7rem; }
    .sticky-call-btn { font-size: 0.8rem; padding: 12px 14px; }
}

/* ============ FULLSCREEN LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 768px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 1.5rem; }
    .lightbox-img { max-width: 100vw; max-height: 80vh; border-radius: 0; }
}

/* ============ CHAT BUBBLE + LEAD POPUP ============ */

.chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    cursor: pointer;
}

.chat-bubble-tooltip {
    background: white;
    border-radius: 16px 16px 4px 16px;
    padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    max-width: 240px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    animation: tooltipIn 0.4s ease 2s forwards;
    pointer-events: none;
}

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

.chat-bubble-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.chat-bubble-avatar:hover {
    transform: scale(1.08);
}

.chat-bubble-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-bubble-avatar::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--green);
    border: 3px solid white;
    border-radius: 50%;
    bottom: 0;
    right: 0;
}

.chat-bubble-name {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 8px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.chat-bubble-pulse {
    animation: chatPulse 2.5s ease-in-out infinite;
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(230, 57, 70, 0.55), 0 0 0 8px rgba(230, 57, 70, 0.1); }
}

/* Lead Capture Popup */
.lead-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lead-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-popup {
    background: white;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 420px;
    overflow: hidden;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.lead-overlay.active .lead-popup {
    transform: translateY(0) scale(1);
}

.lead-popup-header {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 28px 28px 24px;
    text-align: center;
    position: relative;
}

.lead-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.lead-popup-close:hover {
    background: rgba(255,255,255,0.35);
}

.lead-popup-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.4);
    overflow: hidden;
}

.lead-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-popup-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.lead-popup-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.lead-popup-body {
    padding: 28px;
}

.lead-form-group {
    margin-bottom: 16px;
}

.lead-form-group label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.lead-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}

.lead-form-group input:focus {
    border-color: var(--red);
}

.lead-form-group input::placeholder {
    color: var(--gray-400);
}

.lead-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.lead-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.lead-thank-you {
    text-align: center;
    padding: 20px 0;
    display: none;
}

.lead-thank-you.active {
    display: block;
}

.lead-thank-you svg {
    color: var(--green);
    margin-bottom: 12px;
}

.lead-thank-you h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.lead-thank-you p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 480px) {
    .chat-bubble {
        bottom: 14px;
        right: 12px;
    }
    .chat-bubble-avatar {
        width: 50px;
        height: 50px;
    }
    .chat-bubble-tooltip {
        max-width: 180px;
        font-size: 0.78rem;
        padding: 10px 12px;
    }
    .chat-bubble-name {
        font-size: 0.55rem;
    }
    .lead-popup-body {
        padding: 20px;
    }
    .lead-popup {
        width: 94%;
        max-width: 360px;
    }
}

/* Financing Page */
.financing-hero {
    background: var(--dark);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.financing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
}

.financing-big {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.1;
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.financing-big em {
    font-style: normal;
    background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.financing-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.financing-requirements {
    padding: 80px 0;
    background: var(--white);
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.req-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    transition: all 0.3s ease;
}

.req-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.req-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.req-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
}

.req-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section { padding: 80px 0; }

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    background: var(--red);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 24px;
}

/* About Page */
.about-content { padding: 80px 0; }

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

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.about-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--red);
}

.value-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Page */

/* Contact Info Cards Row */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--red);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    transition: transform 0.3s;
}

.contact-card:hover .contact-card-icon { transform: scale(1.1) rotate(5deg); }

.contact-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card-detail {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    line-height: 1.5;
    transition: color 0.3s;
}

a.contact-card-detail:hover { color: var(--red); }

.contact-card-sub {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 6px;
}

/* Contact Form + Map Grid */
.contact-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-full { width: 100%; justify-content: center; margin-top: 8px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Map */
.contact-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.map-container {
    width: 100%;
    height: 380px;
    background: var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-info {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.map-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.map-badge svg { color: var(--red); flex-shrink: 0; }

.map-badge strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
}

.map-badge span {
    color: var(--gray-600);
    font-size: 0.82rem;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .filter-bar { grid-template-columns: repeat(2, 1fr); margin: -20px 16px 16px; padding: 20px; }
    .results-bar { margin: 0 16px 24px; }
    .inventory-grid { grid-template-columns: 1fr 1fr; }
    .car-img-wrap { height: 180px; }
    .req-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .map-overlay-info { flex-direction: column; align-items: flex-start; }
    .map-overlay-info .btn { width: 100%; }
}

@media (max-width: 480px) {
    .filter-bar { grid-template-columns: 1fr; margin: -16px 12px 12px; padding: 16px; }
    .inventory-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .car-img-wrap { height: 200px; }
}
