/* ══════════════════════════════════════════════════════════════
   Autohaus Neuwied GmbH — Shared Stylesheet
   ══════════════════════════════════════════════════════════════ */

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

:root {
    --bg:        #1b1d22;
    --bg-sec:    #24262c;
    --bg-card:   #2d3038;
    --bg-hover:  #343842;
    --bg-glass:  rgba(27, 29, 34, 0.94);
    --gold:      #d4af37;
    --gold-dim:  #b89a2a;
    --gold-glow: rgba(212, 175, 55, 0.12);
    --white:     #ffffff;
    --gray-100:  #24262c;
    --gray-300:  #c7c7c7;
    --gray-500:  #9ca0a8;
    --border:    rgba(255, 255, 255, 0.10);
    --shadow:    0 4px 24px rgba(0,0,0,0.35);
    --radius:    14px;
    --font-body: 'Open Sans', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --font-head: 'Playfair Display', serif;
    --nav-h:     100px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #24262c; }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Utilities ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

.tag {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 4px 14px; border-radius: 40px;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600; line-height: 1.2;
    margin-bottom: 14px;
}
.section-sub { color: var(--gray-300); font-size: 15px; max-width: 560px; }

.gold-divider {
    width: 52px; height: 2.5px;
    background: linear-gradient(to right, var(--gold), transparent);
    border-radius: 2px; margin: 16px 0 28px;
}

section { padding: 110px 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 8px;
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    letter-spacing: .04em; cursor: pointer; border: none;
    transition: all .28s ease;
}
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #e6c45a 50%, #b89a2a 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(212,175,55,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,.50); filter: brightness(1.06); }
.btn-outline {
    background: transparent; color: #ffffff;
    border: 1.5px solid rgba(255,255,255,.22);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); transform: translateY(-2px); }
.btn-ghost {
    background: rgba(255,255,255,.06); color: #ffffff;
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 100;
    transition: height .35s ease, background .35s, backdrop-filter .35s, box-shadow .35s;
}
nav.scrolled {
    height: 62px;
    background: rgba(26,28,32,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
nav.scrolled .logo-emblem { height: 140px; width: 140px; margin-top: 8px; }
.nav-wl-heart { display:flex; align-items:center; justify-content:center; position:relative; width:44px; height:44px; flex-shrink:0; transition: width .35s, height .35s; }
.nav-wl-heart svg { width:26px; height:26px; transition: width .35s, height .35s; }
nav.scrolled .nav-wl-heart { width:32px; height:32px; }
nav.scrolled .nav-wl-heart svg { width:18px; height:18px; }
.nav-wl-mobile { display:flex; align-items:center; justify-content:center; position:relative; width:44px; height:44px; flex-shrink:0; transition: width .35s ease, height .35s ease; }
.nav-wl-mobile svg { width:26px; height:26px; transition: width .35s ease, height .35s ease; }
nav.scrolled .nav-wl-mobile { width:32px; height:32px; }
nav.scrolled .nav-wl-mobile svg { width:18px; height:18px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-emblem { height: 80px; width: auto; flex-shrink: 0; filter: brightness(1.05); object-fit: contain; margin-top: 8px; transition: height .35s ease, width .35s ease, margin-top .35s ease; }
.nav-links { display: flex; gap: 28px; font-size: 13px; font-weight: 500; letter-spacing: .03em; }
.nav-links a { color: #c7c7c7; transition: color .22s; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1.5px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #ffffff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 13px; color: #c7c7c7; transition: color .22s; }
.nav-phone:hover { color: var(--gold); }
.nav-hamburger { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; padding: 8px 12px; }
.nav-lines { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.nav-lines .bar { display: block; width: 34px; height: 2.5px; background: var(--gold); border-radius: 2px; }
.nav-menu-label { display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; color: #fff; text-align: center; width: 34px; margin-top: 1px; }
.nav-mobile-group { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* Mobile menu — Sidebar slide-in from left */
.mobile-menu {
    display: block; position: fixed; top: 0; left: 0; height: 100%;
    width: 280px; max-width: 85vw; z-index: 99;
    background: #1a1c20;
    box-shadow: 4px 0 32px rgba(0,0,0,.35);
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding: 72px 32px 40px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 20px; color: #ffffff; transition: color .22s; display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 8px; line-height: 1; }
.mobile-menu-sub { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
.mobile-menu-sub a { font-family: var(--font-body); font-size: 13px; color: var(--gray-500); }
.mobile-menu-backdrop { display: none; position: fixed; inset: 0; z-index: 98; background: rgba(0,0,0,.5); }
.mobile-menu-backdrop.open { display: block; }

/* ── PAGE HERO (inner pages) — full slider ────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: #0b0c0f;
}
.slider-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(11,12,15,.22) 0%, rgba(11,12,15,.6) 55%, #0b0c0f 100%),
        linear-gradient(to right, rgba(11,12,15,.65) 0%, transparent 65%);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    background: rgba(11,12,15,.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    color: #fff;
}
.slider-arrow:hover { background: rgba(212,175,55,.2); border-color: #d4af37; color: #d4af37; }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all .3s;
}
.slider-dot.active { background: #d4af37; width: 28px; border-radius: 4px; }
.slide-caption {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 5;
    text-align: right;
    opacity: 0;
    transition: opacity .8s .4s ease;
}
.slide-caption.active { opacity: 1; }
.slide-caption-tag { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #d4af37; margin-bottom: 6px; }
.slide-caption-title { font-family: var(--font-head); font-size: clamp(16px,2vw,22px); font-weight: 600; color: #fff; }
.slide-caption-price { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 4px; }
.hero-content { position: relative; z-index: 2; max-width: 640px; }
#hero > .container { position: relative; z-index: 3; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1.5px; background: #d4af37; }
.hero-eyebrow span { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #d4af37; }
.hero-title { font-family: var(--font-head); font-size: clamp(32px,5vw,62px); font-weight: 700; line-height: 1.1; margin-bottom: 22px; color: #fff; }
.hero-title .gold { color: #d4af37; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 44px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: .6;
    color: rgba(255,255,255,.7);
    animation: bounce 2.5s infinite;
}
.hero-scroll span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll svg { width: 18px; height: 18px; }
#hero .hero-content, #hero .hero-content * { color: #ffffff; }
#hero .hero-sub { color: rgba(255,255,255,.72); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 12.5px; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .22s; }
.breadcrumb a:hover { color: #d4af37; }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ── VEHICLE CARD ─────────────────────────────────────────────── */
.vehicle-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.vehicle-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    cursor: pointer;
    display: flex; flex-direction: column; height: 100%;
}
.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(184,148,30,.28);
    border-color: rgba(184,148,30,.32);
}
.vehicle-img { position: relative; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.vehicle-img img { width: 100%; height: 100%; object-fit: contain; background: #111; transition: transform .45s ease; }
.vehicle-card:hover .vehicle-img img { transform: scale(1.05); }
.vehicle-badge { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.badge-new { background: var(--gold); color: #ffffff; }
.badge-used { background: rgba(255,255,255,.10); color: #c7c7c7; }
.badge-top { background: rgba(184,148,30,.15); color: var(--gold); border: 1px solid rgba(184,148,30,.3); }
.vehicle-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.vehicle-make { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; justify-content: space-between; }
.vehicle-fznr { font-size: 10px; font-weight: 400; letter-spacing: 0; color: var(--gray-500); margin-left: auto; text-transform: none; white-space: nowrap; }
.brand-icon { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; filter: brightness(10); opacity: .9; background: rgba(255,255,255,.08); border-radius: 4px; padding: 2px; }
.vehicle-model { font-family: var(--font-body); font-size: 13px; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.vehicle-specs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; flex: 1; align-content: flex-start; }
.vehicle-spec { font-size: 12px; color: var(--gray-300); display: flex; align-items: center; gap: 5px; }
.vehicle-spec svg { width: 13px; height: 13px; opacity: .6; fill: none; stroke: currentColor; stroke-width: 2; }
.vehicle-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); margin-top: auto; }
.vehicle-umwelt {
    font-size: 10px; color: var(--gray-500); line-height: 1.5;
    padding: 6px 0 0; margin-top: 8px;
}
.vehicle-price { font-size: 22px; font-weight: 700; color: #ffffff; }
.vehicle-price span { font-size: 13px; font-weight: 400; color: var(--gray-300); margin-left: 2px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }

/* ── FORM BASE ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; background: #1b1d22;
    border: 1.5px solid rgba(255,255,255,.13); border-radius: 8px;
    padding: 13px 16px; color: #ffffff;
    font-family: var(--font-body); font-size: 14px;
    outline: none; transition: border-color .25s, background .25s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(184,148,30,.05); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b3ba; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #2d3038; color: #ffffff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 14px; }
.form-note a { color: var(--gold); }

/* ── SERVICE CARD ─────────────────────────────────────────────── */
.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px 28px;
    transition: all .3s ease;
}
.service-card:hover { background: var(--bg-hover); border-color: rgba(184,148,30,.35); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.10); }
.service-icon { width: 52px; height: 52px; background: var(--gold-glow); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon svg { width: 24px; height: 24px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.6; }
.service-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.service-text { font-size: 13.5px; color: var(--gray-300); line-height: 1.6; }

/* ── REVIEW CARD ──────────────────────────────────────────────── */
.review-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px; position: relative;
    transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.10); }
.review-quote { font-size: 52px; line-height: .8; font-family: var(--font-head); color: var(--gold); opacity: .25; position: absolute; top: 20px; right: 28px; }
.review-stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; }
.review-text { font-size: 14px; color: var(--gray-300); line-height: 1.72; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), rgba(184,148,30,.35)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #ffffff; flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* ── CONTACT DETAIL ───────────────────────────────────────────── */
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--gold-glow); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-detail-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail-value { font-size: 14px; color: var(--gray-300); line-height: 1.5; }
.opening-hours { margin-top: 40px; padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.opening-hours h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.oh-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--gray-300); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.oh-row:last-child { border-bottom: none; }
.oh-row strong { color: #ffffff; font-weight: 500; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: #13141a; border-top: 1px solid rgba(255,255,255,.08); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-tagline { font-size: 13.5px; color: var(--gray-300); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 38px; height: 38px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all .25s; cursor: pointer; }
.social-icon:hover { background: var(--gold-glow); border-color: var(--gold); }
.social-icon svg { width: 16px; height: 16px; fill: var(--gray-300); }
.social-icon:hover svg { fill: var(--gold); }
.social-icon svg.stroke-icon { fill: none; stroke: var(--gray-300); stroke-width: 2; }
.social-icon:hover svg.stroke-icon { stroke: var(--gold); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .22s; }
.footer-col ul li a:hover { color: #ffffff; }
.footer-col .contact-line { font-size: 13px; color: var(--gray-300); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-col .contact-line a { color: var(--gray-300); transition: color .22s; }
.footer-col .contact-line a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: var(--gray-500); }
.footer-bottom a { color: var(--gray-500); transition: color .22s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }

/* ── HIGHLIGHTS BAR ───────────────────────────────────────────── */
.highlights-bar { background: var(--bg-sec); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.highlights-bar-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.hl-item { display: flex; align-items: center; gap: 14px; padding: 8px 0; }
.hl-icon { width: 44px; height: 44px; background: var(--gold-glow); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.hl-icon svg { width: 20px; height: 20px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.5; }
.hl-text strong { display: block; font-size: 14px; font-weight: 600; }
.hl-text span { font-size: 12px; color: var(--gray-300); }

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1c1a0e 0%, #13141a 50%, #1a1708 100%);
    border-top: none; border-bottom: none;
    padding: 80px 0; text-align: center;
}
.cta-banner .section-title { color: #ffffff; }
.cta-banner .section-sub { color: rgba(255,255,255,.68); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(184,148,30,.15) 0%, transparent 70%); pointer-events: none; }
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner .section-sub { margin: 0 auto 36px; text-align: center; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: all .3s; cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── GRID HELPERS ─────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 24px; align-items: stretch; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* ── FILTERS ──────────────────────────────────────────────────── */
.filter-bar {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 32px; margin-bottom: 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.filter-bar h3 { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.filter-actions { display: flex; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }

/* ── INFO CARD ────────────────────────────────────────────────── */
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.info-card-icon { width: 56px; height: 56px; background: var(--gold-glow); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.info-card-icon svg { width: 26px; height: 26px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.6; }
.info-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.info-card p { font-size: 13.5px; color: var(--gray-300); line-height: 1.65; }

/* ── STEP INDICATOR ───────────────────────────────────────────── */
.step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-glow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.step-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step-content p { font-size: 13.5px; color: var(--gray-300); line-height: 1.6; }

/* ── TABLE ────────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table tr { border-bottom: 1px solid rgba(255,255,255,.07); }
.data-table tr:last-child { border-bottom: none; }
.data-table td { padding: 10px 0; font-size: 13.5px; }
.data-table td:first-child { color: var(--gray-300); width: 45%; }
.data-table td:last-child { font-weight: 500; }

/* ── STAT CARD ────────────────────────────────────────────────── */
.stat-card { text-align: center; padding: 32px 20px; }
.stat-num { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray-300); margin-top: 8px; display: block; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .grid-2 { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile-group { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .filter-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .vehicles-grid { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}
@media (max-width: 480px) {
    .cta-buttons { flex-direction: column; align-items: center; }
    .filter-grid { grid-template-columns: 1fr; }
}
