/* ============================================================
   DEBA Rental Car — Redesign preview design system
   Palette pulled from the logo: near-black ink + signature red.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --ink:        #0e0e10;
    --ink-soft:   #2a2a2e;
    --muted:      #6b6b73;
    --muted-2:    #9a9aa2;
    --line:       #e7e5e1;
    --line-2:     #efedea;
    --paper:      #faf8f5;
    --paper-2:    #f3f0eb;
    --white:      #ffffff;
    --red:        #e4151b;
    --red-dark:   #c10f15;
    --red-tint:   #fdeced;
    --radius:     18px;
    --radius-sm:  12px;
    --radius-lg:  28px;
    --shadow:     0 1px 2px rgba(14,14,16,.04), 0 12px 32px -12px rgba(14,14,16,.12);
    --shadow-lg:  0 30px 70px -30px rgba(14,14,16,.35);
    --ease:       cubic-bezier(.22,.61,.36,1);
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- Shared eyebrow / section heads ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: var(--red);
}
.eyebrow::before {
    content: ""; width: 22px; height: 2px; background: var(--red); display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-display); font-weight: 600; font-size: 15px;
    padding: 14px 26px; border-radius: 999px;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(228,21,27,.6); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(228,21,27,.65); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-light:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb858; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 16px; }

.link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink);
    transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--red); gap: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(250,248,245,.82);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-color: var(--line); background: rgba(250,248,245,.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink-soft);
    padding: 9px 16px; border-radius: 999px; position: relative;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(14,14,16,.05); }
.nav-links a.active { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang {
    display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
    font-family: var(--font-display); font-size: 12px; font-weight: 600;
}
.lang button { padding: 7px 12px; color: var(--muted); transition: all .2s; }
.lang button.on { background: var(--ink); color: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

.mobile-menu {
    display: none; position: fixed; inset: 78px 0 0; z-index: 55;
    background: var(--paper); padding: 24px;
    flex-direction: column; gap: 6px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
    font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink);
    padding: 14px 8px; border-bottom: 1px solid var(--line-2);
}
.mobile-menu a:hover { color: var(--red); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: 56px; }
.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
    font-size: clamp(44px, 6.2vw, 86px); line-height: .96; letter-spacing: -.035em;
    margin-bottom: 24px;
}
.hero h1 .accent { color: var(--red); }
.hero-lead { font-size: 19px; color: var(--muted); max-width: 480px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust .stat-num { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--ink); }
.hero-trust .stat-lbl { font-size: 13px; color: var(--muted); }
.hero-trust .divider { width: 1px; height: 34px; background: var(--line); }

.hero-visual { position: relative; }
.hero-photo {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--paper-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* red mountain "A" motif echoing the logo */
.hero-motif {
    position: absolute; right: -38px; top: -30px; width: 150px; height: 150px; z-index: -1;
}
.hero-badge {
    position: absolute; left: -26px; bottom: 38px;
    background: var(--white); border-radius: 18px; padding: 18px 22px;
    box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero-badge .ring {
    width: 46px; height: 46px; border-radius: 50%; background: var(--red-tint);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge .ring svg { width: 24px; height: 24px; stroke: var(--red); }
.hero-badge .t1 { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.hero-badge .t2 { font-size: 12.5px; color: var(--muted); }

/* booking bar */
.booking {
    margin-top: 60px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px;
    display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 6px;
}
.booking .field { padding: 12px 16px; border-radius: 12px; transition: background .2s; }
.booking .field:hover { background: var(--paper); }
.booking label {
    display: block; font-family: var(--font-display); font-size: 11px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px;
}
.booking input, .booking select {
    width: 100%; border: none; background: transparent; font-family: var(--font-body);
    font-size: 15px; font-weight: 500; color: var(--ink); outline: none;
}
.booking .field + .field { border-left: 1px solid var(--line-2); }
.booking .go { align-self: stretch; }
.booking .go .btn { height: 100%; }

/* ============================================================
   MARQUEE / CATEGORY STRIP
   ============================================================ */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat {
    border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white);
    padding: 22px 16px; text-align: center; transition: all .25s var(--ease);
}
.cat:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat .ic { font-size: 30px; margin-bottom: 10px; }
.cat h4 { font-size: 16px; }
.cat p { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   CAR CARDS
   ============================================================ */
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.car-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.car-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.car-card:hover .car-media img { transform: scale(1.06); }
.car-tag {
    position: absolute; top: 14px; left: 14px; background: rgba(14,14,16,.85); color: #fff;
    font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.car-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.car-body h3 { font-size: 21px; margin-bottom: 12px; }
.car-specs { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.car-specs span { display: inline-flex; align-items: center; gap: 6px; }
.car-specs svg { width: 16px; height: 16px; stroke: var(--muted-2); }
.car-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); }
.car-price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--ink); line-height: 1; }
.car-price span { font-size: 13px; font-weight: 500; color: var(--muted); }
.car-foot .btn { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; transition: all .3s var(--ease);
}
.feature:hover { border-color: var(--ink); transform: translateY(-4px); }
.feature .fic {
    width: 54px; height: 54px; border-radius: 15px; background: var(--ink);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.feature .fic svg { width: 26px; height: 26px; stroke: #fff; }
.feature:hover .fic { background: var(--red); }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15px; }
.feature .num { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--muted-2); margin-bottom: 18px; }

/* ============================================================
   DARK BAND / CTA
   ============================================================ */
.band-dark { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .muted { color: rgba(255,255,255,.6); }
.cta-center { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-center h2 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.cta-center p { font-size: 18px; color: rgba(255,255,255,.65); margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.band-motif { position: absolute; opacity: .06; pointer-events: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.quote .stars { display: flex; gap: 3px; color: var(--red); }
.quote .stars svg { width: 18px; height: 18px; fill: var(--red); }
.quote p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.quote .ava {
    width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff;
    display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
    font-weight: 700; flex-shrink: 0;
}
.quote .who .nm { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.quote .who .mt { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding: 96px 0 90px; }
.page-head h1 { color: #fff; font-size: clamp(38px, 5.4vw, 68px); margin-bottom: 16px; }
.page-head p { color: rgba(255,255,255,.6); font-size: 18px; max-width: 560px; }
.page-head .eyebrow { color: #ff5a5f; }
.page-head .eyebrow::before { background: #ff5a5f; }
.page-head-motif { position: absolute; right: -40px; bottom: -60px; width: 360px; opacity: .08; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 28px; font-family: var(--font-display); }
.crumbs a:hover { color: #fff; }

/* ============================================================
   FLEET PAGE
   ============================================================ */
.filters {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 14px; display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-end;
    margin-top: -44px; position: relative; z-index: 5; margin-bottom: 40px;
}
.filters .field { flex: 1; min-width: 140px; padding: 8px 14px; }
.filters label { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px; }
.filters input, .filters select { width: 100%; border: none; background: transparent; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink); outline: none; }
.filters .field + .field { border-left: 1px solid var(--line-2); }
.fleet-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.fleet-count { color: var(--muted); font-size: 15px; }
.fleet-count b { color: var(--ink); font-family: var(--font-display); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    font-family: var(--font-display); font-size: 13px; font-weight: 500; padding: 8px 16px;
    border-radius: 999px; border: 1px solid var(--line); color: var(--muted); transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--white); }
.stat-box .v { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--ink); line-height: 1; }
.stat-box .v .red { color: var(--red); }
.stat-box .l { color: var(--muted); font-size: 14px; margin-top: 8px; }
.tagline { border-left: 3px solid var(--red); padding-left: 20px; font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--ink); margin-top: 26px; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service {
    display: flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 22px 24px; transition: all .25s var(--ease);
}
.service:hover { border-color: var(--ink); transform: translateX(4px); }
.service .sic { width: 46px; height: 46px; border-radius: 13px; background: var(--red-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service .sic svg { width: 24px; height: 24px; stroke: var(--red); }
.service span { font-family: var(--font-display); font-weight: 600; font-size: 16px; }

.airport {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 48px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.airport-flex { display: flex; gap: 24px; align-items: flex-start; }
.airport .big-ic { width: 64px; height: 64px; border-radius: 18px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.airport .big-ic svg { width: 32px; height: 32px; stroke: #fff; }
.airport h2 { font-size: 30px; margin-bottom: 12px; }
.airport p { color: var(--muted); font-size: 16px; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.badge {
    display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line);
    border-radius: 999px; padding: 10px 18px; font-family: var(--font-display); font-weight: 500; font-size: 14px;
}
.badge svg { width: 16px; height: 16px; stroke: var(--red); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: var(--ink); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 24px 28px; }
.faq-q span { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); }
.faq-chev { width: 24px; height: 24px; border-radius: 50%; background: var(--paper-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s, transform .3s var(--ease); }
.faq-chev svg { width: 16px; height: 16px; stroke: var(--ink); }
.faq-item.open .faq-chev { background: var(--red); transform: rotate(180deg); }
.faq-item.open .faq-chev svg { stroke: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 28px 26px; color: var(--muted); font-size: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 26px; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group input, .form-group textarea {
    width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
    font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--paper);
    outline: none; transition: border-color .2s, background .2s; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); background: #fff; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.cc {
    display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 20px 22px; transition: all .25s var(--ease);
}
.cc:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.cc .cic { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc .cic svg { width: 24px; height: 24px; }
.cc.phone .cic { background: var(--red-tint); } .cc.phone .cic svg { stroke: var(--red); }
.cc.wa .cic { background: #e6f9ee; } .cc.wa .cic svg { fill: #25d366; }
.cc.mail .cic { background: var(--paper-2); } .cc.mail .cic svg { stroke: var(--ink); }
.cc .k { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.cc .v { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); margin-top: 2px; }
.cc .v.sm { font-size: 14px; }
.hours { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 26px; }
.hours h3 { color: #fff; font-size: 18px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.hours h3 svg { width: 20px; height: 20px; stroke: var(--red); }
.hours .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14.5px; }
.hours .row:last-child { border: none; }
.hours .row .d { color: rgba(255,255,255,.6); }
.hours .row .t { font-family: var(--font-display); font-weight: 500; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; margin-top: 14px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer p { font-size: 14.5px; max-width: 280px; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px; }

/* ============================================================
   FLOATING CONTACT
   ============================================================ */
.floats { position: fixed; right: 22px; bottom: 24px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform .25s var(--ease); }
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
.float-wa { background: #25d366; } .float-wa svg { fill: #fff; }
.float-phone { background: var(--red); } .float-phone svg { stroke: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- preview ribbon ---------- */
.preview-ribbon {
    position: fixed; left: 0; bottom: 0; z-index: 90; background: var(--red); color: #fff;
    font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .04em;
    padding: 7px 16px; border-top-right-radius: 12px; box-shadow: var(--shadow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 520px; }
    .car-grid, .quote-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .cats { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .booking { grid-template-columns: 1fr 1fr; }
    .booking .field + .field { border-left: none; }
    .booking .go { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    .section { padding: 64px 0; }
    .nav-links, .nav-actions .lang { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .car-grid, .quote-grid, .feature-grid, .services-grid, .form-row, .about-stats { grid-template-columns: 1fr; }
    .cats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .booking { grid-template-columns: 1fr; }
    .booking .field + .field { border-left: none; border-top: 1px solid var(--line-2); }
    .airport { padding: 30px; } .airport-flex { flex-direction: column; }
    .hero-badge { left: 0; }
    .fleet-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .page-head { padding: 64px 0; }
}
