/* ============================================
   AVISA FİLO — Premium Rent A Car
   Brand palette: #d4012a #ad0927 #ffffff + #0a0a0a accent
   ============================================ */

:root {
    --brand: #d4012a;
    --brand-dark: #ad0927;
    --brand-darker: #7a0619;
    --white: #ffffff;
    --black: #0a0a0a;
    --ink: #1a1a1a;
    --text: #2a2a2a;
    --muted: #6b6b6b;
    --bg: #ffffff;
    --bg-soft: #f7f7f8;
    --bg-dark: #0a0a0a;
    --border: #e9e9ec;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.06);
    --shadow: 0 10px 30px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.15);
    --shadow-brand: 0 10px 30px rgba(212, 1, 42, 0.25);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
    line-height: 1;
}
.btn i { font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 1, 42, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--brand);
}
.btn-light:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
}

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

/* ========== TOP BAR — PREMIUM (brand palette only) ========== */
.topbar {
    background: linear-gradient(180deg, #0d0d11 0%, #07070a 100%);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12.5px;
    padding: 10px 0;
    position: relative;
    letter-spacing: 0.3px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.topbar::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand) 30%, var(--brand-dark) 50%, var(--brand) 70%, transparent 100%);
}
.topbar::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 1, 42, 0.45), transparent);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.topbar-left { display: flex; gap: 18px; align-items: center; }
.topbar-left > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar-left i {
    color: var(--brand);
    font-size: 11px;
}
.topbar-left .divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 8px;
}
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-link {
    color: rgba(255, 255, 255, 0.82);
    transition: color var(--t);
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}
.topbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}
.topbar-link:hover { color: #ffffff; }
.topbar-link:hover::after { width: 100%; }
.topbar-link i {
    font-size: 12px;
    transition: transform var(--t);
}
.topbar-link:hover i { transform: scale(1.15); }
.topbar-link.whatsapp i { color: var(--whatsapp); }
.topbar-link:not(.whatsapp) i { color: var(--brand); }

@media (max-width: 580px) {
    .topbar { font-size: 11.5px; padding: 8px 0; }
    .topbar-right { gap: 16px; }
}

/* ========== HEADER — PREMIUM ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(212, 1, 42, 0.18) 20%, rgba(212, 1, 42, 0.28) 50%, rgba(212, 1, 42, 0.18) 80%, transparent 100%) 1;
    box-shadow:
        0 1px 0 rgba(212, 1, 42, 0.08),
        0 4px 24px rgba(10, 10, 10, 0.07),
        0 1px 3px rgba(10, 10, 10, 0.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(150deg, #e8001f 0%, #d4012a 35%, #ad0927 70%, #7a0619 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -1px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(212, 1, 42, 0.35),
        0 4px 12px rgba(212, 1, 42, 0.4),
        0 8px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: box-shadow var(--t), transform var(--t);
}
.logo-mark::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    right: 5px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}
.logo:hover .logo-mark {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(212, 1, 42, 0.45),
        0 6px 18px rgba(212, 1, 42, 0.5),
        0 12px 36px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.logo-divider {
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.12) 30%, rgba(10, 10, 10, 0.18) 50%, rgba(10, 10, 10, 0.12) 70%, transparent 100%);
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
    font-weight: 900;
    font-size: 20px;
    color: var(--ink);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(10, 10, 10, 0.06);
    transition: color var(--t);
}
.logo-sub {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
    transition: color var(--t);
}
.logo:hover .logo-title { color: var(--brand); }
.logo:hover .logo-sub { color: var(--brand); }
.logo-light .logo-title { color: var(--white); }
.logo-light .logo-sub { color: rgba(255, 255, 255, 0.6); }
.logo-light .logo-divider { background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%); }

.nav {
    display: flex;
    gap: 40px;
}
.nav a {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text);
    letter-spacing: 0.4px;
    position: relative;
    transition: color var(--t), font-weight 0.15s ease;
    padding-bottom: 2px;
}
.nav a:hover {
    color: var(--brand);
    font-weight: 800;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
    opacity: 0;
}
.nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}
.nav a[aria-current="page"] {
    color: var(--brand);
    font-weight: 800;
}
.nav a[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(212, 1, 42, 0.5);
    border-radius: 8px;
    font-size: 18px;
    color: var(--brand);
    cursor: pointer;
    padding: 8px 10px;
    line-height: 1;
    transition: background var(--t), color var(--t), border-color var(--t);
    z-index: 101;
}
.menu-toggle:hover {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

/* ========== HEADER CTA — PREMIUM ========== */
@keyframes shimmer-slide {
    0%   { transform: translateX(-100%) skewX(-12deg); }
    100% { transform: translateX(250%) skewX(-12deg); }
}

.header-cta .btn {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, var(--brand-darker) 100%);
    color: var(--white);
    border: none;
    box-shadow:
        0 2px 8px rgba(212, 1, 42, 0.35),
        0 6px 20px rgba(212, 1, 42, 0.2);
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    overflow: hidden;
    position: relative;
    transition: transform var(--t), box-shadow var(--t);
}
.header-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: translateX(-100%) skewX(-12deg);
    pointer-events: none;
}
.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 14px rgba(212, 1, 42, 0.5),
        0 10px 32px rgba(212, 1, 42, 0.28);
}
.header-cta .btn:hover::before {
    animation: shimmer-slide 0.55s ease forwards;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 90px 0 200px;
    background: #050508;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(212, 1, 42, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(173, 9, 39, 0.28) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a12 0%, #14101a 40%, #1a0612 100%);
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='20' cy='20' r='0.7' fill='%23ffffff' opacity='0.12'/></svg>");
    opacity: 0.5;
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}
.hero-glow-a { top: -120px; left: -100px; width: 480px; height: 480px; background: radial-gradient(circle, #d4012a 0%, transparent 70%); }
.hero-glow-b { bottom: -180px; right: -120px; width: 560px; height: 560px; background: radial-gradient(circle, #ad0927 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 2; width: 100%; }

/* Split layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 980px) {
    .hero-layout { grid-template-columns: 1fr; gap: 50px; }
}

/* Rating pill */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    font-size: 13px;
}
.hero-rating strong { color: #fff; font-weight: 800; }
.hero-stars {
    display: flex;
    gap: 2px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}
.hero-stars i { font-size: 11px; color: #f5b100; }

/* Headline */
.hero-h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(42px, 6.2vw, 78px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 0 0 26px;
    color: #fff;
}
.hero-h1 em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #fff 0%, #ffd6de 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-h1-accent {
    display: inline-block;
    background: linear-gradient(135deg, #ff3a5e 0%, #d4012a 50%, #ad0927 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 0 36px;
}
.hero-desc strong { color: #fff; font-weight: 800; }

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.hero-trust-item i { color: #ff3a5e; font-size: 14px; }

/* Showcase (right column) */
.hero-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}
.hero-showcase-tag {
    position: absolute;
    top: 8px;
    left: 16px;
    padding: 6px 12px;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(212, 1, 42, 0.45);
    z-index: 2;
}
.hero-car-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.hero-car-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 35% at 50% 92%, rgba(0, 0, 0, 0.75) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 50% 55%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-car-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6))
        drop-shadow(0 6px 12px rgba(212, 1, 42, 0.3));
    animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}
.hero-car-label {
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.1em;
}
.hero-car-brand {
    display: block;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    letter-spacing: 4px;
}
.hero-car-model {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

/* Floating price tag */
.hero-price-tag {
    position: absolute;
    top: 24px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f8 100%);
    color: #0a0a0a;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 3;
    transform: rotate(3deg);
    animation: tagFloat 5s ease-in-out infinite;
}
@keyframes tagFloat {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-6px); }
}
.hero-price-from {
    font-size: 10px;
    font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}
.hero-price-val {
    font-size: 26px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
    letter-spacing: -0.5px;
}
.hero-price-val small {
    font-size: 12px;
    font-weight: 700;
    color: #6b6b6b;
    margin-left: 2px;
}

@media (max-width: 980px) {
    .hero { padding: 60px 0 160px; min-height: 0; }
    .hero-showcase { padding: 10px; }
    .hero-h1 { font-size: clamp(36px, 9vw, 56px); }
    .hero-price-tag { top: 0; right: 0; padding: 10px 14px; }
    .hero-price-val { font-size: 20px; }
    .hero-trust { gap: 10px 18px; }
    .hero-trust-item { font-size: 12px; }
}
.hero-inner { position: relative; z-index: 2; }

.hero-content { max-width: 720px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.hero-tag i { color: #ffd24a; }

.hero h1 {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--white) 0%, #ffd6de 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 580px;
}
.hero-desc strong { color: var(--white); font-weight: 700; }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat { display: flex; flex-direction: column; }
.stat strong {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}
.stat span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ========== SECTION HEAD ========== */
.section-head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-eyebrow {
    display: inline-block;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.section-head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
}
.section-head p {
    font-size: 17px;
    color: var(--muted);
}
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255, 255, 255, 0.8); }

/* ========== FINDER (overlaps hero) ========== */
.finder-section {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -90px;
}
.finder {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(10, 10, 10, 0.18), 0 10px 30px rgba(10, 10, 10, 0.08);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    border: 1px solid var(--border);
}
.finder-elevated { position: relative; }
.finder-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.finder-field label {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding-left: 16px;
}
.finder-field label i { color: var(--brand); margin-right: 5px; }
.finder-field select,
.finder-field input[type="date"] {
    height: 56px;
    padding: 0 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    color: var(--ink);
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    width: 100%;
    min-width: 0;
    transition: border var(--t), box-shadow var(--t);
}
.finder-field select {
    appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23d4012a' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
}
.finder-field input[type="date"] { text-transform: uppercase; }
.finder-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(8%) sepia(98%) saturate(7100%) hue-rotate(344deg);
    cursor: pointer;
}
.finder-field select:focus,
.finder-field input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(212, 1, 42, 0.12);
}
#finder-btn { height: 56px; min-width: 140px; }

/* ========== BRAND STRIP ========== */
.brand-strip {
    background: var(--white);
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
}
.brand-strip-inner { text-align: center; }
.brand-strip-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 26px;
}
.brand-strip-title .dash {
    height: 1.5px;
    width: 40px;
    background: var(--brand);
}
.brand-strip-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
}
.brand-strip-logos .brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 80px;
    padding: 8px 14px;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all var(--t);
}
.brand-strip-logos .brand-logo-item img {
    max-height: 100%;
    max-width: 100px;
    object-fit: contain;
    display: block;
}
.brand-strip-logos .brand-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}
.brand-strip-logos .brand-logo-item.fallback {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: var(--ink);
}

/* ========== CARS SECTION ========== */
.cars-section {
    padding: 90px 0 110px;
    background: var(--bg-soft);
}
.cars-footer {
    margin-top: 48px;
    text-align: center;
}

/* ========== CARS GRID ========== */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.car-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    animation: fadeUp 0.5s ease backwards;
}
.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

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

.car-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(ellipse 70% 30% at 50% 85%, rgba(10, 10, 10, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, #fafafb 0%, #eaeaef 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.car-image img {
    max-width: 92%;
    max-height: 82%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 8px 14px rgba(10, 10, 10, 0.22));
    position: relative;
    z-index: 1;
}
.car-card:hover .car-image img { transform: scale(1.05) translateY(-2px); }

.car-brand-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 52px;
    padding: 10px 24px;
    background:
        linear-gradient(to top,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 55%,
            rgba(255, 255, 255, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 5;
    pointer-events: none;
    transition: padding var(--t);
}
.car-brand-logo img {
    max-height: 30px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 1px 2px rgba(10, 10, 10, 0.15));
}
.car-brand-logo.is-text {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
}
.car-card:hover .car-brand-logo { padding-bottom: 14px; }

.car-name-link { color: inherit; text-decoration: none; transition: color var(--t); }
.car-name-link:hover { color: var(--brand); }
.car-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brand);
    color: var(--white);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-brand);
    z-index: 5;
}
.car-available {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(37, 211, 102, 0.95);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.car-available::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.car-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.car-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.car-head > div:first-child { min-width: 0; flex: 1; }
.car-category {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.car-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
}
.car-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(212, 1, 42, 0.28);
    line-height: 1;
}
.car-price-amount {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.3px;
}
.car-price-unit {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 14px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.car-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}
.car-spec i { color: var(--brand); width: 16px; text-align: center; }

.car-footer {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.car-footer .btn { flex: 1; padding: 12px 14px; font-size: 14px; }
.car-footer .btn-phone {
    flex: 0 0 auto;
    width: 46px;
    padding: 0;
    background: var(--ink);
    color: var(--white);
}
.car-footer .btn-phone:hover { background: var(--brand); transform: translateY(-2px); }
.car-footer .btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.car-footer .btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ========== DELIVERY ========== */
.delivery {
    padding: 100px 0;
    background: var(--white);
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}
.delivery-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.delivery-card:hover::before { transform: scaleX(1); }
.delivery-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 1, 42, 0.1), rgba(173, 9, 39, 0.05));
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all var(--t);
}
.delivery-card:hover .delivery-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: var(--white);
    transform: scale(1.05);
}
.delivery-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.delivery-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ========== WHY ========== */
.why {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 1, 42, 0.2), transparent 70%);
    border-radius: 50%;
}
.why::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(173, 9, 39, 0.15), transparent 70%);
    border-radius: 50%;
}
.why-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}
.why-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 26px;
    border-radius: var(--radius);
    transition: all var(--t);
}
.why-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand);
    transform: translateY(-4px);
}
.why-item i {
    font-size: 32px;
    color: var(--brand);
    margin-bottom: 16px;
    display: block;
}
.why-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.why-item p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== CTA BAND ========== */
.cta-band {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 70px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1' fill='%23ffffff' opacity='0.15'/></svg>");
    opacity: 0.4;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}
.cta-band h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.cta-band p { font-size: 16px; opacity: 0.9; }
.cta-band-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--bg-soft);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.contact-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--t);
    cursor: pointer;
    display: block;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.contact-card > i {
    font-size: 36px;
    color: var(--brand);
    margin-bottom: 18px;
    display: block;
}
.contact-whatsapp > i { color: var(--whatsapp); }
.contact-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}
.contact-card p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 18px;
}
.contact-action {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--t);
}
.contact-card:hover .contact-action { gap: 12px; }

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 44px;
    padding-bottom: 50px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col p { font-size: 14.5px; line-height: 1.7; margin-top: 8px; }
.footer-col h5 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.footer-col a, .footer-col span {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--t);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col a:hover { color: var(--brand); }
.footer-col a i, .footer-col span i { width: 16px; color: var(--brand); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13.5px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--brand);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== FLOATING CTAs ========== */
.float-ctas {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99;
}
.float-btn {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.25);
    transition: all var(--t);
}
.float-whatsapp {
    background: var(--whatsapp);
    animation: waPulse 2.5s infinite;
}
.float-whatsapp:hover { background: var(--whatsapp-dark); transform: scale(1.08); }
.float-phone {
    background: var(--brand);
}
.float-phone:hover { background: var(--brand-dark); transform: scale(1.08); }

@keyframes waPulse {
    0% { box-shadow: 0 10px 30px rgba(10, 10, 10, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 10px 30px rgba(10, 10, 10, 0.25), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 10px 30px rgba(10, 10, 10, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--ink);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--t);
}
.float-label::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--ink);
}
.float-btn:hover .float-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .finder { grid-template-columns: 1fr 1fr 1fr; }
    .finder-field:nth-child(1) { grid-column: span 3; }
    #finder-btn { grid-column: span 3; width: 100%; }
}

@media (max-width: 980px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px) saturate(1.4);
        -webkit-backdrop-filter: blur(16px) saturate(1.4);
        flex-direction: column;
        padding: 16px 24px 20px;
        gap: 0;
        border-bottom: 1px solid rgba(212, 1, 42, 0.12);
        box-shadow:
            0 8px 32px rgba(10, 10, 10, 0.1),
            0 2px 8px rgba(10, 10, 10, 0.06);
        z-index: 99;
    }
    .nav.open a {
        padding: 13px 4px;
        border-bottom: 1px solid rgba(10, 10, 10, 0.06);
        font-weight: 600;
        letter-spacing: 0.3px;
    }
    .nav.open a:last-child { border-bottom: none; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .topbar-left { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .finder { grid-template-columns: 1fr 1fr; }
    .finder-field:nth-child(1),
    #finder-btn { grid-column: span 2; }
    .hero { padding: 70px 0 140px; min-height: 600px; }
    .hero-stats { gap: 28px; }
    .stat strong { font-size: 28px; }
    .brand-strip-logos span { font-size: 15px; }
    .brand-strip-logos { gap: 10px 22px; }
}

@media (max-width: 580px) {
    .container { padding: 0 18px; }
    .header-inner { padding: 14px 18px; }
    .logo-mark { width: 40px; height: 40px; font-size: 19px; }
    .logo-title { font-size: 16px; }
    .logo-sub { font-size: 9px; letter-spacing: 2px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .cta-band-inner { text-align: center; flex-direction: column; }
    .cta-band-buttons { width: 100%; flex-direction: column; }
    .cta-band-buttons .btn { width: 100%; }
    .float-ctas { bottom: 16px; right: 16px; }
    .float-btn { width: 54px; height: 54px; font-size: 22px; }
    .topbar { font-size: 12px; }
    .topbar-right { width: 100%; justify-content: space-between; }
    .section-head { margin-bottom: 40px; }
    .finder { grid-template-columns: 1fr; padding: 16px; }
    .finder-field:nth-child(1), #finder-btn { grid-column: span 1; }
    .finder-section { margin-top: -70px; }
    .cars-section, .delivery, .why, .contact { padding: 70px 0; }
    .brand-strip { padding: 40px 0 30px; }
    .brand-strip-logos { gap: 8px 18px; }
    .brand-strip-logos span { font-size: 13px; padding: 4px 6px; }
}
