/* ═══════════════════════════════════════════════════════
   GoaSelfDriveCars.in — Master Theme
   Ink & Gold Design System
   One file. 19 pages. Zero duplication.
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:     #0C0B09;
  --ink2:    #131109;
  --ink3:    #1A1814;
  --ink4:    #22201B;
  --ink5:    #2A2820;
  --sand:    #F5EFE0;
  --sand2:   #EDE6D3;
  --gold:    #D4A843;
  --gold2:   #E8C06A;
  --gold3:   #B88A20;
  --muted:   #7A7060;
  --muted2:  #4A4438;
  --green:   #3DB87A;
  --red:     #E05252;
  --wa:      #25D366;
  --border:  rgba(212,168,67,.12);
  --border2: rgba(212,168,67,.28);
  --glow:    rgba(212,168,67,.09);
  --r: 3px;
  --HDR: 104px; /* meta-bar 40px + nav 64px */
  --easing: cubic-bezier(.22,.61,.36,1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--sand);
  font-family: 'Outfit', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── GRAIN OVERLAY ───────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .5;
}

/* ── LAYOUT ──────────────────────────────────────────── */
.wrap   { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-sm{ max-width: 860px;  margin: 0 auto; padding: 0 28px; }
.section{ padding: 88px 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: .03em; line-height: .9; }
.serif   { font-family: 'DM Serif Display', serif; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
  transition: all .22s; white-space: nowrap; cursor: pointer;
  border: none; font-family: 'Outfit', sans-serif;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212,168,67,.35); }
.btn-ghost   { background: transparent; border: 1.5px solid var(--border2); color: var(--gold); }
.btn-ghost:hover { background: var(--glow); border-color: var(--gold); }
.btn-wa      { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1db859; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.35); }
.btn-dark    { background: var(--ink3); color: var(--sand); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--border2); background: var(--ink4); }
.btn-outline { background: transparent; border: 1.5px solid rgba(245,239,224,.2); color: var(--sand); }
.btn-outline:hover { border-color: rgba(245,239,224,.5); }
.btn-lg { padding: 17px 38px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-xs { padding: 7px 14px; font-size: 11px; }

/* ── CHIP / LABEL ────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,168,67,.09); border: 1px solid var(--border2);
  border-radius: 100px; padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}
.chip-green { background: rgba(61,184,122,.09); border-color: rgba(61,184,122,.28); color: var(--green); }
.chip-blue  { background: rgba(91,156,246,.09); border-color: rgba(91,156,246,.28); color: #7DB4FF; }

/* ── SECTION HEADER ─────────────────────────────────── */
.sec-hdr          { margin-bottom: 52px; }
.sec-hdr .chip    { margin-bottom: 14px; }
.sec-title        { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px,5.5vw,72px); letter-spacing: .025em; line-height: .9; margin-bottom: 12px; }
.sec-title em     { color: var(--gold); font-style: normal; }
.sec-desc         { font-size: 15px; color: var(--muted); max-width: 520px; font-weight: 300; line-height: 1.8; }
.sec-hdr.center   { text-align: center; }
.sec-hdr.center .sec-desc  { margin: 0 auto; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.bc {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); flex-wrap: wrap; margin-bottom: 24px;
}
.bc a { color: var(--muted); transition: color .2s; }
.bc a:hover { color: var(--gold); }
.bc-sep { color: var(--muted2); font-size: 10px; }

/* ── WA FLOAT ────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 28px rgba(37,211,102,.5);
  animation: waPulse 3s ease-in-out infinite; transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 52px rgba(37,211,102,.8); }
}

/* ═══════════════════════════════════════════════════════
   HEADER — STATIC (position:fixed, never scrolls)
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; left: 0; right: 0; top: 0;
  z-index: 1000;
}

/* — META BAR — */
.hdr-meta {
  height: 40px;
  background: rgba(9,8,6,.97);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(212,168,67,.06);
}
.hdr-meta-in {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 12px;
}
.hdr-contacts { display: flex; gap: 20px; }
.hdr-clink {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; color: var(--muted); transition: color .2s;
}
.hdr-clink:hover { color: var(--gold); }
.hdr-clink svg  { flex-shrink: 0; }
.hdr-right { display: flex; align-items: center; gap: 16px; }
.hdr-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--muted);
}
.hdr-stars { color: var(--gold); letter-spacing: 1px; font-size: 10px; }
.hdr-socials { display: flex; gap: 7px; }
.hdr-soc {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--muted); transition: all .2s;
}
.hdr-soc:hover { border-color: var(--gold); color: var(--gold); }

/* — NAV BAR — */
.hdr-nav {
  height: 64px;
  background: rgba(11,10,8,.96);
  backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.hdr-nav-in {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; height: 100%;
}
/* Logo */
.site-logo { flex-shrink: 0; margin-right: auto; }
.site-logo img { height: 36px; width: auto; display: block; }

/* — DESKTOP NAV — */
.nav-list {
  display: flex; align-items: center; list-style: none;
  gap: 0; margin: 0 12px 0 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  height: 64px; padding: 0 15px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(245,239,224,.6);
  transition: color .2s; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 2px; background: var(--gold); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform .25s var(--easing);
}
.nav-link:hover, .nav-link.active { color: var(--sand); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
.nav-link.lux {
  color: var(--gold);
  border: 1px solid var(--border2); border-radius: var(--r);
  height: auto; padding: 7px 14px; margin: 0 6px;
}
.nav-link.lux::after { display: none; }
.nav-link.lux:hover { background: var(--glow); }
.nav-arr { font-size: 8px; opacity: .55; transition: transform .22s; }
.nav-item:hover .nav-arr { transform: rotate(180deg); }

/* — MEGA DROPDOWN — */
.mega {
  position: absolute; top: calc(100% + 1px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  background: rgba(13,12,10,.99);
  backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 6px; min-width: 700px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s, visibility .22s, transform .22s var(--easing);
  box-shadow: 0 40px 80px rgba(0,0,0,.95), 0 0 0 1px rgba(212,168,67,.06);
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega.narrow { min-width: 240px; }
.mega-hd {
  font-size: 9px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.mega-grid { display: grid; gap: 2px; padding: 4px; }
.mega-2 { grid-template-columns: 1fr 1fr; }
.mega-3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r);
  color: rgba(245,239,224,.72); transition: all .18s;
}
.mega-item:hover { background: rgba(212,168,67,.07); color: var(--sand); }
.mega-item.active { color: var(--gold); }
.mi-ic { font-size: 19px; flex-shrink: 0; width: 30px; text-align: center; }
.mi-name { font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.mi-sub  { font-size: 10.5px; color: var(--muted); }
.mega-footer {
  border-top: 1px solid var(--border); margin: 4px 6px 6px;
  padding-top: 10px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.mega-footer a {
  font-size: 11.5px; color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 4px; transition: gap .2s;
}
.mega-footer a:hover { gap: 8px; }
.mega-sep { width: 1px; background: var(--border); align-self: stretch; margin: 4px 0; }

/* — NAV CTAS — */
.nav-ctas { display: flex; gap: 8px; margin-left: 8px; flex-shrink: 0; }

/* — HAMBURGER — */
.ham {
  display: none; flex-direction: column; gap: 5.5px;
  padding: 9px; margin-left: auto; background: none; border: none; cursor: pointer;
}
.ham span {
  display: block; width: 22px; height: 2px;
  background: var(--sand); border-radius: 2px; transition: all .32s var(--easing);
}
.ham.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* — MOBILE DRAWER — */
.drawer {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: var(--ink);
  flex-direction: column; overflow-y: auto;
  padding: 110px 28px 48px 28px;
  transform: translateX(100%);
  transition: transform .4s var(--easing);
}
.drawer.open { transform: translateX(0); }
.drawer-section { border-bottom: 1px solid rgba(255,255,255,.05); padding-bottom: 6px; margin-bottom: 6px; }
.drawer-label {
  font-size: 9px; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--muted); padding: 14px 0 6px; display: block;
}
.drawer-link {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: .04em;
  color: var(--sand); padding: 7px 0; line-height: 1.1;
  transition: color .2s; border-bottom: none;
}
.drawer-link:hover, .drawer-link.lux { color: var(--gold); }
.drawer-sub {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  color: rgba(245,239,224,.6); padding: 7px 0; letter-spacing: 0;
  transition: color .2s;
}
.drawer-sub:hover { color: var(--sand); }
.drawer-sub-ic { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }
.drawer-ctas { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.drawer-ctas .btn { justify-content: center; padding: 16px; font-size: 14.5px; }

/* ═══════════════════════════════════════════════════════
   TRUST TICKER
═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--ink2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); height: 44px; overflow: hidden;
}
.ticker { display: flex; animation: tickScroll 36s linear infinite; width: max-content; height: 100%; }
.ticker:hover { animation-play-state: paused; }
@keyframes tickScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tt {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px; border-right: 1px solid var(--border);
  height: 100%; white-space: nowrap;
  font-size: 12.5px; font-weight: 500; color: rgba(245,239,224,.6);
}
.tt-dot { color: var(--gold); font-size: 8px; }

/* ═══════════════════════════════════════════════════════
   CAR CARDS
═══════════════════════════════════════════════════════ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(308px, 1fr));
  gap: 18px;
}
.car-card {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; transition: border-color .32s, transform .32s, box-shadow .32s;
}
.car-card:hover {
  border-color: var(--border2); transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,.8);
}
.cc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  padding: 4px 10px; border-radius: 2px;
}
.cc-img { height: 210px; overflow: hidden; background: var(--ink4); position: relative; }
.cc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--easing);
}
.car-card:hover .cc-img img { transform: scale(1.08); }
.cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,11,9,.55) 0%, transparent 55%);
}
.cc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cc-cat {
  font-size: 10px; color: var(--gold); text-transform: uppercase;
  letter-spacing: 2.5px; font-weight: 700; margin-bottom: 5px;
}
.cc-name { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 13px; }
.cc-specs {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 11.5px; color: var(--muted);
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 14px;
}
.cc-bottom { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.cc-price  { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--gold); font-style: italic; line-height: 1; }
.cc-per    { font-size: 10.5px; color: var(--muted2); margin-top: 3px; }
.cc-ctas   { display: flex; gap: 7px; }

/* Filter pills */
.filter-row { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 32px; }
.fpill {
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  border: 1px solid var(--border); color: var(--muted);
  transition: all .22s; cursor: pointer; background: none; font-family: 'Outfit', sans-serif;
}
.fpill:hover { color: var(--sand); border-color: var(--border2); }
.fpill.on { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   LOCATION CARDS
═══════════════════════════════════════════════════════ */
.locs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.loc-card {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.loc-card:hover {
  border-color: var(--border2); transform: translateY(-7px);
  box-shadow: 0 32px 64px rgba(0,0,0,.8);
}
.lc-img { display: block; height: 196px; position: relative; overflow: hidden; }
.lc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--easing);
}
.loc-card:hover .lc-img img { transform: scale(1.07); }
.lc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,11,9,.7) 0%, rgba(12,11,9,.1) 55%, transparent);
}
.lc-iata {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .1em;
  color: rgba(212,168,67,.85); border: 1px solid rgba(212,168,67,.3);
  padding: 3px 10px; border-radius: 2px;
}
.lc-icon { position: absolute; bottom: 12px; left: 14px; font-size: 22px; }
.lc-body { padding: 18px 20px; }
.lc-region { font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; margin-bottom: 5px; }
.lc-name   { font-family: 'DM Serif Display', serif; font-size: 23px; margin-bottom: 8px; }
.lc-desc   { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 15px; }
.lc-ctas   { display: flex; gap: 8px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; padding: 52px 0 0; flex-wrap: wrap;
}
.pg-item {
  width: 40px; height: 40px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: var(--ink3);
  color: var(--muted); cursor: pointer;
  transition: all .22s; font-family: 'Outfit', sans-serif;
}
.pg-item:hover { border-color: var(--border2); color: var(--sand); background: var(--ink4); }
.pg-item.active { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 700; }
.pg-item.disabled { opacity: .3; pointer-events: none; }
.pg-item.arrow { font-size: 16px; }
.pg-dots { color: var(--muted); line-height: 40px; padding: 0 3px; font-size: 13px; }
.pg-info { font-size: 11.5px; color: var(--muted); padding: 0 8px; line-height: 40px; }
.pg-status {
  text-align: center; margin-top: 12px;
  font-size: 11.5px; color: var(--muted);
}
.pg-status span { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border); }
.fq { border-bottom: 1px solid var(--border); }
.fq-btn {
  width: 100%; text-align: left;
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.fq-btn:hover { color: var(--gold); }
.fq-q   { font-family: 'DM Serif Display', serif; font-size: 17px; line-height: 1.3; flex: 1; }
.fq-ic  {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; transition: all .32s var(--easing);
}
.fq.open .fq-ic { background: var(--gold); color: var(--ink); transform: rotate(45deg); }
.fq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--muted); line-height: 1.8;
  transition: max-height .42s var(--easing), padding .3s;
}
.fq.open .fq-a { max-height: 400px; padding-bottom: 20px; }

/* FAQ two-column layout */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.faq-cols .fq { break-inside: avoid; }

/* ═══════════════════════════════════════════════════════
   RENTAL TERMS TILES
═══════════════════════════════════════════════════════ */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.term {
  background: var(--ink2); padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 12px;
}
.term-ic { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.term-label { font-size: 9.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 4px; }
.term-val   { font-size: 14px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--ink2);
  padding: 100px 24px; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.12) 0%, transparent 62%);
  pointer-events: none;
}
.cta-top { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; position: relative; }
.cta-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px,8.5vw,104px); letter-spacing: .025em; line-height: .88; margin-bottom: 18px; position: relative; }
.cta-h em { color: var(--gold); font-style: normal; }
.cta-sub { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto 26px; font-weight: 300; position: relative; line-height: 1.75; }
.cta-phone { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--gold); margin-bottom: 28px; letter-spacing: .05em; position: relative; }
.cta-phone a { color: inherit; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-micro { margin-top: 20px; font-size: 11.5px; color: rgba(245,239,224,.22); position: relative; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: #060504;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 56px;
}
/* Brand col */
.fb-logo img { height: 38px; margin-bottom: 18px; }
.fb-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 256px; margin-bottom: 22px; }
.fb-socials { display: flex; gap: 8px; margin-bottom: 0; }
.fb-soc {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted); transition: all .22s;
}
.fb-soc:hover { border-color: var(--gold); color: var(--gold); background: var(--glow); }
/* Col */
.fc-head {
  font-family: 'DM Serif Display', serif; font-size: 15px; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.fc-list { list-style: none; }
.fc-list li { margin-bottom: 9px; }
.fc-list li a {
  font-size: 13px; color: var(--muted); transition: all .2s;
  display: flex; align-items: center; gap: 5px;
}
.fc-list li a::before { content: '›'; color: var(--muted2); font-size: 14px; transition: color .2s; }
.fc-list li a:hover { color: var(--sand); padding-left: 3px; }
.fc-list li a:hover::before { color: var(--gold); }
/* Contact */
.fc-contact { display: flex; flex-direction: column; gap: 11px; }
.fcc { display: flex; align-items: flex-start; gap: 10px; }
.fcc-ic { color: var(--gold); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.fcc-t  { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.fcc-t a { color: var(--muted); transition: color .2s; }
.fcc-t a:hover { color: var(--sand); }
/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.f-copy  { font-size: 12px; color: rgba(255,255,255,.2); }
.f-links { display: flex; gap: 20px; }
.f-links a { font-size: 12px; color: rgba(255,255,255,.2); transition: color .2s; }
.f-links a:hover { color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.sr.in { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: .09s; }
.sr-d2 { transition-delay: .18s; }
.sr-d3 { transition-delay: .27s; }
.sr-d4 { transition-delay: .36s; }

/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════ */
.gold    { color: var(--gold); }
.muted   { color: var(--muted); }
.center  { text-align: center; }
.hidden  { display: none !important; }
.no-results {
  text-align: center; padding: 72px 0;
  color: var(--muted); font-size: 16px;
}
.no-results button { color: var(--gold); cursor: pointer; font-size: inherit; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-list, .nav-ctas { display: none; }
  .ham { display: flex; }
  .drawer { display: flex; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .faq-cols { grid-template-columns: 1fr; gap: 0; }
  .cta-btns .btn { flex: 1 1 45%; }
}
@media (max-width: 640px) {
  .cars-grid  { grid-template-columns: 1fr 1fr; }
  .locs-grid  { grid-template-columns: 1fr; }
  .hdr-contacts .hdr-clink:last-child { display: none; }
  .hdr-socials { display: none; }
}
@media (max-width: 480px) {
  .wrap, .wrap-sm { padding: 0 16px; }
  .cars-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns .btn { flex: 1 1 100%; }
  .terms-grid { grid-template-columns: 1fr 1fr; }
}
