/* =====================================================================
   ASISFILO — Rent-a-Car (v3, utility-first)
   Booking form = hero. Prices visible. Clear CTAs. No poetry.
===================================================================== */
:root {
  --ink:           #0a0a0a;
  --ink-2:         #16161a;
  --ink-3:         #22222a;
  --paper:         #ffffff;
  --paper-2:       #f6f7f9;
  --paper-3:       #eceef2;
  --rule:          #e2e5ea;
  --rule-dark:     #22222a;
  --mute:          #6b7280;
  --mute-2:        #9aa0aa;

  --accent:        #d89a2b;     /* more saturated, confident gold — a colour not a whisper */
  --accent-hi:     #e5a63a;
  --accent-lo:     #a8751c;
  --success:       #0b8c4b;
  --info:          #1665d8;
  --danger:        #d93636;

  --font-sans:     "Inter", "Söhne", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono:     "JetBrains Mono", ui-monospace, monospace;

  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --ease:          cubic-bezier(.22,.61,.36,1);
  --tr-xs:         .15s var(--ease);
  --tr:            .25s var(--ease);

  --radius-xs:     4px;
  --radius:        8px;
  --radius-lg:     14px;

  --content-w:     1240px;
  --content-px:    clamp(16px, 3vw, 40px);

  --shadow-sm:     0 1px 2px rgba(10,10,10,.04), 0 2px 6px rgba(10,10,10,.04);
  --shadow:        0 6px 18px rgba(10,10,10,.08);
  --shadow-lg:     0 22px 60px rgba(10,10,10,.16);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 800; letter-spacing: -.015em; color: inherit; }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; letter-spacing: -.02em; }
h3 { font-size: clamp(1.1rem, 1.4vw, 1.25rem); line-height: 1.25; }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color var(--tr-xs); }
a:hover { color: var(--accent-lo); }

/* --- Layout ---------------------------------------------------------- */
.wrap {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-left: var(--content-px);
  padding-right: var(--content-px);
}
.section    { padding: var(--s-7) 0; }
.section-sm { padding: var(--s-5) 0; }
.ink-bg   { background: var(--ink);   color: var(--paper); }
.soft-bg  { background: var(--paper-2); }

/* --- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--tr-xs), color var(--tr-xs), border-color var(--tr-xs), transform var(--tr-xs);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn-sm { padding: .55rem .9rem; font-size: .82rem; }
.btn-primary       { background: var(--ink);    color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2);  color: var(--paper); border-color: var(--ink-2); }
.btn-accent        { background: var(--accent); color: #0a0a0a;      border-color: var(--accent); }
.btn-accent:hover  { background: var(--accent-hi); border-color: var(--accent-hi); }
.btn-outline       { background: transparent; color: var(--ink);   border-color: var(--ink); }
.btn-outline:hover { background: var(--ink);   color: var(--paper); }
.btn-outline-light       { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-link {
  padding: 0; background: transparent; border: 0;
  font-weight: 700; font-size: .9rem; color: var(--ink);
  border-bottom: 1.5px solid currentColor;
}
.btn-link:hover { color: var(--accent-lo); transform: none; }
.btn-whatsapp {
  background: #25D366; color: #fff; border-color: #25D366;
}
.btn-whatsapp:hover { background: #1eb958; border-color: #1eb958; color: #fff; }

/* --- Top bar --------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-2); flex-wrap: wrap;
}
.topbar a {
  color: rgba(255,255,255,.82);
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .15rem .55rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.topbar a:last-child { border-right: 0; }
.topbar a:hover { color: var(--accent); }
.topbar .left  { display: flex; align-items: center; }
.topbar .right { display: flex; align-items: center; gap: .25rem; }
.topbar i { color: var(--accent); }
@media (max-width: 640px) {
  .topbar .left a:nth-child(n+3) { display: none; }
}

/* --- Navbar ---------------------------------------------------------- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-2) 0;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink); text-decoration: none;
}
.nav-brand .brand-img { height: 36px; width: auto; display: block; }
.nav-brand .mark { width: 32px; height: 32px; color: var(--ink); }
.nav-brand .word {
  font-family: var(--font-sans); font-weight: 800;
  letter-spacing: .18em; font-size: 1rem; color: var(--ink);
}
.nav-brand .word b { color: var(--accent-lo); font-weight: 800; }
.nav-links {
  display: flex; gap: var(--s-3);
  margin: 0 auto; list-style: none; padding: 0;
}
.nav-links a {
  color: var(--ink); font-size: .92rem; font-weight: 600;
  padding: .5rem 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink); border-bottom-color: var(--accent);
}
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.nav-phone {
  display: inline-flex; flex-direction: column; align-items: center;
  text-align: center; font-size: .72rem; color: var(--mute);
  line-height: 1.15;
}
.nav-phone strong {
  font-family: var(--font-sans); font-weight: 800; font-size: 1rem;
  color: var(--ink); letter-spacing: 0;
}

/* Language switcher — segmented pill with both codes visible */
.nav-lang-switch {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: var(--paper);
}
.nav-lang-switch a {
  padding: .4rem .6rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--mute);
  border-right: 1px solid var(--rule);
  transition: background var(--tr-xs), color var(--tr-xs);
}
.nav-lang-switch a:last-child { border-right: 0; }
.nav-lang-switch a:hover { color: var(--ink); background: var(--paper-2); }
.nav-lang-switch a.active {
  background: var(--ink); color: var(--paper);
}
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--rule);
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  color: var(--ink); cursor: pointer;
}
@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
.nav.open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); padding: var(--s-3);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

/* --- Hero (booking-first, real rent-a-car feel) --------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,8,10,.35) 0%, rgba(8,8,10,.55) 45%, rgba(8,8,10,.82) 100%),
    url('../images/hero-bg.webp') center 72% / cover no-repeat,
    var(--ink);
  color: var(--paper);
  padding: var(--s-6) 0 var(--s-7);
  overflow: hidden;
}
@media (max-width: 820px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(8,8,10,.4) 0%, rgba(8,8,10,.75) 100%),
      url('../images/hero-bg.webp') center 60% / cover no-repeat,
      var(--ink);
  }
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: rgba(255,255,255,.08);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: var(--s-4);
  max-width: 1120px; margin: 0 auto;
}
.hero-inner .hero-text { max-width: 820px; margin: 0 auto; }
.hero-text { text-align: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: .4rem .85rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600; color: #fff;
  margin-bottom: var(--s-3);
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(11,140,75,.25);
}
.hero-text h1 { color: var(--paper); margin-bottom: .55rem; }
.hero-text h1 b { color: var(--accent); font-weight: 800; }
.hero-sub {
  color: rgba(255,255,255,.82); font-size: 1.1rem;
  max-width: 620px; margin: 0 auto var(--s-4);
}
.hero-rating {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.88); font-size: .88rem;
  margin-top: var(--s-3);
}
.hero-rating .stars { color: var(--accent); letter-spacing: .1em; }
.hero-rating strong { color: var(--paper); font-weight: 800; }

/* --- Booking form (hero-dominant) ----------------------------------- */
.booking {
  position: relative; z-index: 3;
  margin-top: var(--s-4);
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.08) inset;
  padding: var(--s-3);
  border: 1px solid rgba(255,255,255,.14);
}
.booking-tabs {
  display: flex; gap: 0;
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
  margin-bottom: var(--s-3);
}
.booking-tabs .tab {
  padding: .55rem 1.2rem;
  background: transparent; border: 0;
  font-weight: 700; font-size: .84rem;
  color: var(--mute);
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: all var(--tr-xs);
  display: inline-flex; align-items: center; gap: .4rem;
}
.booking-tabs .tab i { font-size: .9rem; color: currentColor; }
.booking-tabs .tab.active {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.booking-form {
  display: grid;
  grid-template-columns: 2fr .95fr .7fr .95fr .7fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: visible;    /* Choices dropdown taşsın */
  min-height: 82px;
}
.booking-form > .field {
  background: var(--paper);
  padding: 1rem .9rem;
  display: flex; flex-direction: column; justify-content: center; gap: .35rem;
  transition: background var(--tr-xs);
  cursor: pointer;
  min-width: 0;
  position: relative;
}
.booking-form > .field:hover,
.booking-form > .field:focus-within { background: var(--paper-2); }
.booking-form > .field:focus-within::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
}
.booking-form .field-label {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--mute);
  display: flex; align-items: center; gap: .35rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0; max-width: 100%;
}
.booking-form .field-label i { color: var(--accent); font-size: .82rem; flex-shrink: 0; }

.booking-form input,
.booking-form select {
  border: 0; background: transparent; padding: 0; margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.2;
  color: var(--ink); width: 100%;
  min-width: 0;
  letter-spacing: -.005em;
  cursor: pointer;
}
.booking-form input:focus,
.booking-form select:focus { outline: none; box-shadow: none; }
.booking-form select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a0a0a' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; background-size: 11px;
  padding-right: 18px;
  text-overflow: ellipsis;
}

.booking-form .submit {
  background: var(--accent); color: #0a0a0a;
  border: 0; font-family: var(--font-sans);
  font-weight: 900; font-size: 1rem;
  letter-spacing: .08em;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 0 var(--s-3);
  transition: background var(--tr-xs);
  text-transform: uppercase;
  position: relative;
}
.booking-form .submit:hover { background: var(--accent-hi); }
.booking-form .submit:hover::after { transform: translateX(3px); }
.booking-form .submit i { font-size: 1.1rem; transition: transform var(--tr-xs); }

.booking-foot {
  margin-top: var(--s-3);
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-size: .9rem; color: var(--ink);
  padding: 0 .4rem;
}
.booking-foot label { cursor: pointer; margin: 0; font-weight: 500; }
.booking-foot input[type="checkbox"] {
  accent-color: var(--accent); width: 17px; height: 17px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .booking-form .submit {
    grid-column: 1 / -1;
    padding: var(--s-3);
  }
}
@media (max-width: 560px) {
  .booking-form { grid-template-columns: 1fr; }
}

/* Conditional "drop-off at different location" row */
.booking-dropoff {
  margin-top: var(--s-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.booking-dropoff[hidden] { display: none !important; }
.booking-dropoff .field { padding: .8rem 1.2rem; }
.booking-dropoff .field label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-bottom: .15rem;
}
.booking-dropoff .field label i { color: var(--accent); font-size: .78rem; }
.booking-dropoff .field select {
  border: 0; background: transparent; padding: 0; margin: 0;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 1rem;
  color: var(--ink); width: 100%;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230a0a0a' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; background-size: 10px;
  padding-right: 18px;
}
.booking-dropoff .field select:focus { outline: none; }
@media (max-width: 960px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form .submit { grid-column: 1 / -1; padding: var(--s-2); }
}
@media (max-width: 520px) {
  .booking-form { grid-template-columns: 1fr; }
}

/* --- Campaign strip -------------------------------------------------- */
.promo-strip {
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 0;
  overflow: hidden;
}
.promo-strip-inner {
  display: flex; gap: var(--s-5);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.promo-strip .item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.88);
}
.promo-strip .item i { color: var(--accent); font-size: 1rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Trust strip ----------------------------------------------------- */
.trust-strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) 0;
}
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-3);
  text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.trust-item i { color: var(--accent-lo); font-size: 1.6rem; }
.trust-item .t { font-weight: 700; font-size: .92rem; color: var(--ink); }
.trust-item .d { font-size: .82rem; color: var(--mute); }
@media (max-width: 800px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .trust-item:nth-child(n+5) { display: none; }
}

/* --- Section heading ------------------------------------------------- */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-3); margin-bottom: var(--s-4);
  flex-wrap: wrap;
}
.sec-head .eyebrow {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-lo); font-weight: 700; margin-bottom: .4rem;
}
.sec-head .on-dark .eyebrow { color: var(--accent); }
.sec-head h2 { max-width: 560px; }
.sec-head .ink-bg h2 { color: var(--paper); }

/* --- Category chips (horizontal) ------------------------------------ */
.cat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2);
}
.cat-chip {
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-3);
  display: flex; flex-direction: column; gap: .3rem;
  text-decoration: none;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.cat-chip:hover {
  color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.cat-chip .ic {
  width: 40px; height: 40px; border-radius: var(--radius-xs);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--accent-lo); font-size: 1.3rem;
  margin-bottom: .3rem;
}
.cat-chip h3 { font-size: 1rem; font-weight: 800; }
.cat-chip small { color: var(--mute); font-size: .82rem; }
.cat-chip .from {
  margin-top: .3rem; font-size: .82rem;
  color: var(--mute);
}
.cat-chip .from strong {
  color: var(--ink); font-size: 1.05rem; font-weight: 800;
}
@media (max-width: 820px) { .cat-row { grid-template-columns: repeat(2, 1fr); } }

/* --- Centered section head + fleet carousel ------------------------- */
.sec-head-centered {
  text-align: center;
  margin-bottom: var(--s-5);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
}
.sec-head-centered h2 {
  display: inline-block;
  position: relative;
  padding-bottom: .7rem;
  margin: 0;
}
.sec-head-centered h2::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 40px; height: 2px; background: var(--accent);
  transform: translateX(-50%);
}
.sec-head-centered .reviews-summary { margin-top: .4rem; }

.fleet-wrap {
  position: relative;
  padding: 0 var(--s-5);
}
.fleet-swiper { overflow: hidden; padding-bottom: var(--s-3); }
.fleet-swiper .swiper-slide { height: auto; display: flex; }
.fleet-swiper .swiper-slide .v-card { width: 100%; }
.fleet-pagination {
  display: flex; justify-content: center; gap: .4rem;
  margin-top: var(--s-3);
  position: static !important;
}
.fleet-pagination .swiper-pagination-bullet {
  width: 24px; height: 3px; border-radius: 2px;
  background: var(--rule); opacity: 1;
  transition: background var(--tr-xs), width var(--tr-xs);
  margin: 0 !important;
}
.fleet-pagination .swiper-pagination-bullet-active {
  background: var(--ink); width: 40px;
}

/* Side arrows — absolutely positioned at midline, outside swiper */
.fleet-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: all var(--tr-xs);
}
.fleet-nav:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}
.fleet-nav.fleet-prev,
.fleet-nav.reviews-prev { left: 0; }
.fleet-nav.fleet-next,
.fleet-nav.reviews-next { right: 0; }
.fleet-nav.swiper-button-disabled { opacity: .35; cursor: default; }
.fleet-nav.swiper-button-disabled:hover {
  background: var(--paper); color: var(--ink); border-color: var(--rule);
  transform: translateY(-50%);
}

.fleet-footer {
  margin-top: var(--s-4);
  text-align: center;
}

@media (max-width: 820px) {
  .fleet-wrap { padding: 0; }
  .fleet-nav {
    top: auto; bottom: -60px;
    transform: none;
    width: 40px; height: 40px;
    box-shadow: none;
  }
  .fleet-nav.fleet-prev,
  .fleet-nav.reviews-prev { left: calc(50% - 48px); }
  .fleet-nav.fleet-next,
  .fleet-nav.reviews-next { right: calc(50% - 48px); }
  .fleet-nav:hover { transform: scale(1.06); }
  .fleet-footer { margin-top: var(--s-6); }
}

/* --- Vehicle cards (fleet grid) ------------------------------------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
@media (max-width: 900px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fleet-grid { grid-template-columns: 1fr; } }

.v-card {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.v-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.v-card .media {
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f5 100%);
  position: relative; overflow: hidden;
}
.v-card .media img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  transition: transform .4s var(--ease);
}
.v-card:hover .media img { transform: scale(1.04); }
.v-card .media .cat-pill {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,10,10,.85); color: var(--paper);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: var(--radius-xs);
}
.v-card .media .avail-pill {
  position: absolute; top: 12px; right: 12px;
  background: var(--success); color: var(--paper);
  font-size: .7rem; font-weight: 700;
  padding: .3rem .55rem; border-radius: var(--radius-xs);
  display: inline-flex; align-items: center; gap: .25rem;
}
.v-card .body { padding: var(--s-3); display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.v-card .body h3 {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em;
}
.v-card .body h3 small {
  color: var(--mute); font-weight: 600; font-size: .8rem;
  display: block; margin-top: .15rem;
}
.v-card .specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: .35rem;
  padding: .75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: .84rem; color: var(--mute);
}
.v-card .specs span { display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap; }
.v-card .specs i { color: var(--accent-lo); font-size: .88rem; }
.v-card .price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: auto;
}
.v-card .price-label { font-size: .75rem; color: var(--mute); }
.v-card .price {
  font-size: 1.55rem; font-weight: 800; color: var(--ink);
  letter-spacing: -.02em; line-height: 1;
}
.v-card .price small { color: var(--mute); font-size: .72rem; font-weight: 600; letter-spacing: 0; }
.v-card .book {
  background: var(--ink); color: var(--paper);
  padding: .6rem .95rem; border-radius: var(--radius-xs);
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  transition: background var(--tr-xs);
  display: inline-flex; align-items: center; gap: .35rem;
}
.v-card .book:hover { background: var(--accent); color: #0a0a0a; }

/* v-card as a whole-link (vehicle listing page) */
.v-card-link {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.v-card-link:hover { color: inherit; }
.v-card-link .book { pointer-events: none; }

/* --- Campaigns grid ------------------------------------------------- */
.camp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
@media (max-width: 820px) { .camp-grid { grid-template-columns: 1fr; } }
.camp-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
  position: relative; overflow: hidden;
  transition: border-color var(--tr), transform var(--tr);
}
.camp-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.camp-card .chip {
  display: inline-flex; background: var(--accent); color: #0a0a0a;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .55rem; border-radius: var(--radius-xs);
  width: fit-content;
}
.camp-card h3 { font-size: 1.25rem; }
.camp-card p  { color: var(--mute); font-size: .92rem; }
.camp-card::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,43,.12), transparent 70%);
}

/* --- Stats band (light, sits below hero) ---------------------------- */
.stats-band {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.stats-grid-light {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-cell-light {
  padding: var(--s-3) var(--s-2);
  text-align: center;
  border-right: 1px solid var(--rule);
}
.stat-cell-light:last-child { border-right: 0; }
.stat-cell-light .n {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: .1rem;
}
.stat-cell-light .n .unit {
  font-size: .5em; color: var(--accent-lo);
  font-weight: 700;
}
.stat-cell-light .l {
  font-size: .78rem; color: var(--mute);
  letter-spacing: .12em; text-transform: uppercase;
  margin-top: .5rem; font-weight: 700;
}
@media (max-width: 640px) {
  .stats-grid-light { grid-template-columns: repeat(2, 1fr); }
  .stat-cell-light:nth-child(2n) { border-right: 0; }
  .stat-cell-light:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* --- Stats band (legacy ink version, used on dark sections) --------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.stat-cell {
  padding: var(--s-4);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .n {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--accent); letter-spacing: -.02em; line-height: 1;
}
.stat-cell .l {
  font-size: .8rem; color: rgba(255,255,255,.6);
  letter-spacing: .14em; text-transform: uppercase;
  margin-top: .6rem; font-weight: 600;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* --- How it works --------------------------------------------------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.how-step {
  text-align: left;
  padding: var(--s-3);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
}
.how-step .n {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 700;
  color: var(--accent-lo); letter-spacing: .1em;
  margin-bottom: .6rem;
}
.how-step .ic {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: var(--s-2);
}
.how-step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.how-step p { color: var(--mute); font-size: .92rem; }
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; } }

/* --- FAQ accordion (premium, Apple/Stripe-style) ------------------- */
.faq-list {
  background: transparent;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background var(--tr-xs);
}
.faq-item:hover { background: var(--paper-2); }
.faq-item.open {
  background: var(--paper);
}
.faq-item.open::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}

.faq-q {
  width: 100%;
  background: transparent; border: 0;
  padding: 1.35rem 1.5rem 1.35rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3);
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
  cursor: pointer;
  letter-spacing: -.005em;
  line-height: 1.35;
}
.faq-item.open .faq-q {
  padding-left: calc(1.2rem + 3px);
}

/* Animated plus → × icon */
.faq-q .caret {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--tr);
  position: relative;
  background: var(--paper);
}
.faq-q .caret i { display: none; }
.faq-q .caret::before,
.faq-q .caret::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform var(--tr), background var(--tr-xs);
  border-radius: 1px;
}
.faq-q .caret::before { width: 12px; height: 2px; }
.faq-q .caret::after  { width: 2px;  height: 12px; }
.faq-item.open .faq-q .caret {
  background: var(--ink);
  border-color: var(--ink);
}
.faq-item.open .faq-q .caret::before,
.faq-item.open .faq-q .caret::after {
  background: var(--accent);
}
.faq-item.open .faq-q .caret::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 var(--s-4) 1.4rem 1.2rem;
  color: var(--mute);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq-item.open .faq-a-inner {
  padding-left: calc(1.2rem + 3px);
}
.faq-a-inner strong { color: var(--ink); font-weight: 700; }

/* --- Locations ------------------------------------------------------ */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
  display: flex; flex-direction: column; gap: .5rem;
  transition: border-color var(--tr), transform var(--tr);
}
.loc-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.loc-card .head {
  display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem;
}
.loc-card .head i {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: var(--paper-2); color: var(--accent-lo);
  display: inline-flex; align-items: center; justify-content: center;
}
.loc-card h3 { font-size: 1.05rem; margin: 0; }
.loc-card address { font-style: normal; color: var(--mute); font-size: .92rem; line-height: 1.5; }
.loc-card .phone {
  display: inline-flex; align-items: center; gap: .3rem;
  font-weight: 700; color: var(--ink); font-size: .92rem;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px; width: fit-content;
  margin-top: .4rem;
}

/* --- Reviews / Testimonials ---------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Reviews swiper — same layout as fleet swiper */
.reviews-swiper { overflow: hidden; padding-bottom: var(--s-3); }
.reviews-swiper .swiper-slide { height: auto; display: flex; }
.reviews-swiper .swiper-slide .review-card { width: 100%; min-height: 100%; }
.reviews-pagination {
  display: flex; justify-content: center; gap: .4rem;
  margin-top: var(--s-3);
  position: static !important;
}
.reviews-pagination .swiper-pagination-bullet {
  width: 24px; height: 3px; border-radius: 2px;
  background: var(--rule); opacity: 1;
  transition: background var(--tr-xs), width var(--tr-xs);
  margin: 0 !important;
}
.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--ink); width: 40px;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
  position: relative;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review-card .mark {
  position: absolute; top: 16px; right: 20px;
  font-family: Georgia, serif;
  font-size: 3.6rem; line-height: 1;
  color: var(--paper-3);
  font-weight: 700;
  pointer-events: none;
}
.review-card .stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: .14em;
  position: relative; z-index: 1;
}
.review-card .quote {
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.6;
  position: relative; z-index: 1;
  flex: 1;
}
.review-card .who {
  display: flex; align-items: center; gap: .7rem;
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
  margin-top: .5rem;
}
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}
.review-card .who .meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review-card .who strong { color: var(--ink); font-size: .92rem; font-weight: 700; }
.review-card .who small  { color: var(--mute); font-size: .78rem; }

/* Reviews summary badge — sits above the grid */
.reviews-summary {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: .55rem 1rem .55rem .75rem;
  margin-bottom: var(--s-2);
}
.reviews-summary .score {
  font-size: 1.35rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em;
}
.reviews-summary .stars {
  color: var(--accent); letter-spacing: .1em; font-size: .95rem;
}
.reviews-summary .txt { font-size: .82rem; color: var(--mute); }

/* --- Blog preview on homepage -------------------------------------- */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
@media (max-width: 900px) { .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-preview-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.blog-card:hover { border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.blog-card .media {
  aspect-ratio: 16/10;
  background: var(--paper-2);
  overflow: hidden;
}
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .media img { transform: scale(1.04); }
.blog-card .body { padding: var(--s-3); display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.blog-card .meta {
  font-size: .78rem; color: var(--mute);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  display: flex; gap: .5rem; align-items: center;
}
.blog-card .meta .dot { color: var(--rule); }
.blog-card h3 { font-size: 1.1rem; font-weight: 800; line-height: 1.3; }
.blog-card .excerpt { color: var(--mute); font-size: .9rem; line-height: 1.55; }
.blog-card .read-more {
  margin-top: auto; padding-top: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--accent-lo);
  display: inline-flex; align-items: center; gap: .3rem;
}
.blog-card:hover .read-more { color: var(--ink); }

/* --- Latest blog list (compact strip above footer) ------------------ */
.latest-band {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.latest-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--s-2);
}
.latest-head h4 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); margin: 0;
}
.latest-list {
  list-style: none; padding: 0; margin: 0;
}
.latest-list li {
  border-top: 1px solid var(--rule);
}
.latest-list li:last-child { border-bottom: 1px solid var(--rule); }
.latest-list a {
  display: grid;
  grid-template-columns: 100px 120px 1fr 24px;
  gap: var(--s-2);
  align-items: center;
  padding: .9rem .6rem;
  color: var(--ink);
  transition: background var(--tr-xs), color var(--tr-xs);
}
.latest-list a:hover {
  background: var(--paper);
  color: var(--accent-lo);
}
.latest-list .date {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--mute);
}
.latest-list .cat {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-lo);
}
.latest-list .title {
  font-size: 1rem; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.latest-list .arrow {
  font-size: 1.1rem;
  color: var(--mute);
  transition: transform var(--tr-xs), color var(--tr-xs);
  justify-self: end;
}
.latest-list a:hover .arrow { color: var(--accent-lo); transform: translateX(4px); }

@media (max-width: 640px) {
  .latest-list a {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: .2rem;
  }
  .latest-list .date { grid-column: 1; grid-row: 1; }
  .latest-list .cat  { grid-column: 2; grid-row: 1; justify-self: end; }
  .latest-list .title{ grid-column: 1 / -1; grid-row: 2; white-space: normal; }
  .latest-list .arrow { display: none; }
}

/* --- Final CTA band ------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: var(--s-4);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,43,.25), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--paper); position: relative; z-index: 2; max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.72); margin-top: .4rem; position: relative; z-index: 2; }
.cta-band .actions { position: relative; z-index: 2; display: flex; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 720px) {
  .cta-band { grid-template-columns: 1fr; padding: var(--s-4); }
}

/* --- Footer --------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.62);
  padding: var(--s-6) 0 var(--s-3);
}
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: var(--s-5); margin-bottom: var(--s-5);
}
.footer-brand .brand-img {
  height: 52px; width: auto; display: block;
  margin-bottom: var(--s-2);
}
.footer-brand .brand-img-invert {
  filter: invert(1) brightness(1.15);
}
.footer-brand .mark { width: 40px; height: 40px; color: var(--paper); margin-bottom: var(--s-2); }
.footer-brand .word {
  font-family: var(--font-sans); font-weight: 800;
  letter-spacing: .18em; color: var(--paper); font-size: 1rem;
  margin-bottom: var(--s-2);
}
.footer-brand .word b { color: var(--accent); }
.footer-brand p { font-size: .88rem; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--paper); margin-bottom: var(--s-2);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .4rem; font-size: .9rem; }
.footer-contact {
  display: flex; flex-direction: column; gap: .45rem;
  font-size: .88rem;
}
.footer-contact a {
  display: inline-flex; align-items: center; gap: .45rem;
}
.footer-contact i { color: var(--accent); width: 18px; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: rgba(255,255,255,.52);
  gap: var(--s-3);
}
.footer-bottom .fb-copy { text-align: left; }
.footer-bottom .fb-legal {
  display: flex; gap: var(--s-3);
  justify-content: center;
}
.footer-bottom .fb-legal a {
  color: rgba(255,255,255,.62);
  font-weight: 500;
  transition: color var(--tr-xs);
  position: relative;
}
.footer-bottom .fb-legal a:hover { color: var(--accent); }
.footer-bottom .fb-legal a + a::before {
  content: '·';
  position: absolute; left: calc(-1 * var(--s-3) / 2);
  color: rgba(255,255,255,.2);
}
.footer-bottom .fb-trust {
  display: inline-flex; align-items: center; gap: .45rem;
  justify-self: end;
  color: rgba(255,255,255,.52);
}
.footer-bottom .fb-trust i { color: var(--accent); }
@media (max-width: 820px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-2);
  }
  .footer-bottom .fb-copy,
  .footer-bottom .fb-legal,
  .footer-bottom .fb-trust { justify-self: center; justify-content: center; text-align: center; }
}
.footer-social { display: flex; gap: .45rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color var(--tr-xs), color var(--tr-xs), background var(--tr-xs);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(216,154,43,.08); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- WhatsApp floating btn ------------------------------------------ */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform var(--tr-xs);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366; opacity: .4;
  animation: waPulse 2.4s ease-in-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* --- Stepper (reservation flow) ------------------------------------- */
.asis-stepper { display: flex; justify-content: center; gap: 0; margin: var(--s-3) 0 var(--s-4); flex-wrap: wrap; }
.asis-stepper .step { display: flex; align-items: center; gap: .55rem; color: var(--mute); font-weight: 700; font-size: .92rem; padding: .4rem .8rem; }
.asis-stepper .step .n { width: 28px; height: 28px; border-radius: 50%; background: var(--paper-3); color: var(--mute); display: inline-flex; align-items: center; justify-content: center; font-size: .84rem; font-weight: 800; }
.asis-stepper .step.active { color: var(--ink); }
.asis-stepper .step.active .n { background: var(--accent); color: #0a0a0a; }
.asis-stepper .sep { width: 40px; height: 2px; background: var(--rule); align-self: center; }

/* --- Panels (legacy reservation/admin) ------------------------------ */
.asis-panel { background: var(--paper); border: 1px solid var(--rule); padding: var(--s-3); border-radius: var(--radius); }
.soft-divider { border: 0; border-top: 1px solid var(--rule); margin: var(--s-3) 0; }

/* --- Flatpickr ------------------------------------------------------ */
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.selected:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.flatpickr-day.inRange {
  background: var(--paper-3); border-color: var(--paper-3);
  box-shadow: -5px 0 0 var(--paper-3), 5px 0 0 var(--paper-3);
}

/* --- Static page (KVKK / Privacy / Terms) --------------------------- */
.page-head {
  padding: var(--s-5) 0 var(--s-3);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.page-head-inner { max-width: 760px; }
.page-head .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: .7rem;
  padding: .3rem .75rem;
  background: rgba(216,154,43,.08);
  border: 1px solid rgba(216,154,43,.2);
  border-radius: 999px;
}
.page-head h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.15; letter-spacing: -.015em;
  margin: 0;
}
.page-head .meta {
  margin-top: .7rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--mute);
}

.page-body { padding: var(--s-5) 0 var(--s-6); background: var(--paper); }
.page-prose {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
}
.page-prose h2 {
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -.01em;
  margin: 2rem 0 .7rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ink);
  display: inline-block;
}
.page-prose h2:first-child { margin-top: 0; }
.page-prose h3 {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -.005em;
  margin: 1.5rem 0 .5rem;
  color: var(--accent-lo);
}
.page-prose p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--ink);
}
.page-prose ul,
.page-prose ol {
  margin: .4rem 0 1.2rem;
  padding-left: 1.4rem;
}
.page-prose li {
  margin-bottom: .4rem;
  line-height: 1.65;
}
.page-prose li::marker { color: var(--accent); }
.page-prose strong { font-weight: 700; color: var(--ink); }
.page-prose a {
  color: var(--accent-lo);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.page-prose a:hover { color: var(--ink); }
.page-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .95rem;
}
.page-prose th,
.page-prose td {
  text-align: left;
  padding: .7rem .9rem;
  border: 1px solid var(--rule);
}
.page-prose th {
  background: var(--paper);
  font-weight: 700;
  color: var(--ink);
}

.page-sibling {
  margin-top: var(--s-4);
  padding: var(--s-3);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}
.page-sibling h5 {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 var(--s-2);
}
.sibling-links {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@media (max-width: 640px) { .sibling-links { grid-template-columns: 1fr; } }
.sibling-links a {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1rem;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink); font-weight: 600; font-size: .92rem;
  transition: all var(--tr-xs);
}
.sibling-links a:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.sibling-links a i:first-child { color: var(--accent-lo); font-size: 1.1rem; }
.sibling-links a:hover i:first-child { color: var(--accent); }
.sibling-links a .ms-auto { margin-left: auto; font-size: .9rem; }

/* --- Blog detail page ----------------------------------------------- */
.bd-head {
  padding: var(--s-5) 0 var(--s-3);
  background: var(--paper);
  text-align: center;
}
.bd-head-inner {
  max-width: 760px; margin: 0 auto;
}
.bd-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-lo);
  padding: .3rem .75rem;
  background: rgba(216,154,43,.08);
  border: 1px solid rgba(216,154,43,.2);
  border-radius: 999px;
  margin-bottom: var(--s-2);
  text-decoration: none;
  transition: all var(--tr-xs);
}
.bd-cat:hover {
  background: rgba(216,154,43,.15);
  color: var(--accent-lo);
  border-color: rgba(216,154,43,.4);
}
.bd-head h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.15; letter-spacing: -.02em;
  margin: 0 0 var(--s-2);
}
.bd-meta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: .82rem; color: var(--mute);
  flex-wrap: wrap; justify-content: center;
}
.bd-meta i { color: var(--accent-lo); font-size: .9rem; }
.bd-meta .sep { color: var(--rule); }

.bd-cover {
  padding: var(--s-3) 0;
  background: var(--paper);
}
.bd-cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.bd-body {
  padding: var(--s-4) 0 var(--s-7);
  background: var(--paper);
}
.bd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .bd-layout { grid-template-columns: 1fr; }
}

/* Article prose */
.bd-content.prose {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
  max-width: 680px;
}
.bd-content.prose p   { margin: 0 0 1.2rem; }
.bd-content.prose h2,
.bd-content.prose h3,
.bd-content.prose h4 {
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 2.2rem 0 .8rem;
  line-height: 1.3;
}
.bd-content.prose h2 { font-size: 1.6rem; }
.bd-content.prose h3 { font-size: 1.3rem; }
.bd-content.prose h4 { font-size: 1.15rem; }
.bd-content.prose ul,
.bd-content.prose ol {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
}
.bd-content.prose ul li,
.bd-content.prose ol li {
  margin-bottom: .4rem;
}
.bd-content.prose ul li::marker { color: var(--accent); }
.bd-content.prose ol li::marker {
  color: var(--accent-lo);
  font-weight: 800;
}
.bd-content.prose strong {
  color: var(--ink); font-weight: 800;
}
.bd-content.prose a {
  color: var(--accent-lo);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.bd-content.prose a:hover { color: var(--ink); }
.bd-content.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: .5rem 0 .5rem 1.2rem;
  margin: 1.5rem 0;
  color: var(--mute);
  font-style: italic;
  font-size: 1.1rem;
}
.bd-content.prose img {
  max-width: 100%; height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.bd-content.prose code {
  font-family: var(--font-mono);
  background: var(--paper-2);
  padding: .1rem .35rem;
  border-radius: 4px;
  font-size: .92em;
}

/* Sidebar (share + back) */
.bd-side {
  position: sticky; top: 90px;
  align-self: start;
  display: flex; flex-direction: column; gap: var(--s-3);
}
@media (max-width: 820px) { .bd-side { position: static; order: -1; } }
.bd-share {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
}
.bd-share .label {
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute);
  display: block; margin-bottom: .75rem;
}
.bd-share-btns {
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.bd-share-btns a,
.bd-share-btns button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--rule);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--tr-xs);
}
.bd-share-btns a:hover,
.bd-share-btns button:hover {
  background: var(--ink); color: var(--accent);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.bd-share-btns .bd-copy.copied { background: var(--success); color: #fff; border-color: var(--success); }

.bd-back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: .65rem .9rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all var(--tr-xs);
}
.bd-back:hover {
  color: var(--paper); background: var(--ink); border-color: var(--ink);
}

/* Related */
.bd-related { padding: var(--s-6) 0; }

/* Comments */
.bd-comments { padding: var(--s-6) 0 var(--s-7); background: var(--paper); }
.bd-com-title {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.3rem; font-weight: 800;
  margin: 0 0 var(--s-3);
  letter-spacing: -.01em;
}
.bd-com-title i { color: var(--accent-lo); font-size: 1.2rem; }
.bd-com-title .count {
  font-family: var(--font-mono);
  font-size: .82rem; font-weight: 600;
  color: var(--mute);
  background: var(--paper-2);
  padding: .15rem .55rem;
  border-radius: 999px;
  margin-left: .3rem;
}

.bd-com-empty {
  color: var(--mute);
  padding: var(--s-3) var(--s-4);
  background: var(--paper-2);
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: var(--s-3);
}

.bd-com-list {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.bd-com {
  display: flex; gap: .85rem;
  padding: var(--s-3);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.bd-com .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem;
  flex-shrink: 0;
}
.bd-com .body { flex: 1; min-width: 0; }
.bd-com .head {
  display: flex; align-items: baseline; gap: .6rem;
  margin-bottom: .3rem;
}
.bd-com .head strong {
  font-size: .95rem; font-weight: 700; color: var(--ink);
}
.bd-com .head time {
  font-family: var(--font-mono);
  font-size: .75rem; color: var(--mute);
}
.bd-com p {
  margin: 0;
  color: var(--ink);
  font-size: .95rem; line-height: 1.6;
}

/* Comment form */
.bd-com-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
}
.bd-com-form h3 {
  font-size: 1.15rem; font-weight: 800;
  margin: 0 0 .3rem;
  letter-spacing: -.005em;
}
.bd-com-form .sub {
  color: var(--mute);
  font-size: .88rem;
  margin: 0 0 var(--s-3);
}
.bd-com-form button { margin-top: var(--s-2); }

/* --- Blog listing page --------------------------------------------- */
.blog-hero {
  padding: var(--s-6) 0 var(--s-5);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.blog-hero-inner { max-width: 680px; margin: 0 auto; }
.blog-hero .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: var(--s-2);
  padding: .3rem .75rem;
  background: rgba(216,154,43,.08);
  border: 1px solid rgba(216,154,43,.2);
  border-radius: 999px;
}
.blog-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 var(--s-2);
}
.blog-hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--accent-lo);
}
.blog-hero p {
  color: var(--mute);
  font-size: 1.05rem; line-height: 1.6;
  max-width: 580px; margin: 0 auto;
}

.blog-filters {
  padding: var(--s-3) 0;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.blog-pill-row {
  display: flex; gap: .5rem; flex-wrap: wrap;
  justify-content: center;
}
.blog-filters .pill { gap: .5rem; }
.blog-filters .pill .count {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--mute);
  background: var(--paper);
  padding: .1rem .4rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  margin-left: .2rem;
}
.blog-filters .pill.active .count {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

/* Blog body */
.blog-body { padding: var(--s-5) 0 var(--s-7); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* Override the compact footer blog-card for this page — richer cards */
.blog-body .blog-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.blog-body .blog-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.blog-body .blog-card .media {
  aspect-ratio: 16/10;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.blog-body .blog-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-body .blog-card:hover .media img { transform: scale(1.04); }
.blog-body .blog-card .blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,10,10,.85); color: var(--paper);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: var(--radius-xs);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.blog-body .blog-card .body {
  padding: var(--s-3);
  display: flex; flex-direction: column; gap: .6rem;
  flex: 1;
}
.blog-body .blog-card .meta {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--mute);
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
.blog-body .blog-card .meta .sep { color: var(--rule); }
.blog-body .blog-card .meta i { font-size: .85rem; color: var(--accent-lo); }
.blog-body .blog-card h3 {
  font-size: 1.15rem; font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.005em;
  margin: 0;
}
.blog-body .blog-card .excerpt {
  color: var(--mute);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-body .blog-card .read-more {
  margin-top: auto;
  padding-top: .4rem;
  font-size: .82rem; font-weight: 700;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: .35rem;
  border-bottom: 1.5px solid currentColor;
  align-self: flex-start;
  letter-spacing: .02em;
}
.blog-body .blog-card:hover .read-more { color: var(--accent-lo); }
.blog-body .blog-card .read-more i { transition: transform var(--tr-xs); }
.blog-body .blog-card:hover .read-more i { transform: translateX(3px); }

/* Featured card takes full width on top */
.blog-body .blog-card.is-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-body .blog-card.is-featured .media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.blog-body .blog-card.is-featured .body {
  padding: var(--s-5) var(--s-4);
  gap: .8rem;
  justify-content: center;
}
.blog-body .blog-card.is-featured h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}
.blog-body .blog-card.is-featured .excerpt {
  font-size: 1rem;
  -webkit-line-clamp: 4;
}
@media (max-width: 720px) {
  .blog-body .blog-card.is-featured { grid-template-columns: 1fr; }
  .blog-body .blog-card.is-featured .media { min-height: 220px; }
  .blog-body .blog-card.is-featured .body { padding: var(--s-3); }
}

/* --- FAQ page (/sss) ------------------------------------------------ */
.faq-hero {
  padding: var(--s-6) 0 var(--s-5);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.faq-hero-inner { max-width: 680px; margin: 0 auto; }
.faq-hero .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: var(--s-2);
  padding: .3rem .75rem;
  background: rgba(216,154,43,.08);
  border: 1px solid rgba(216,154,43,.2);
  border-radius: 999px;
}
.faq-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 var(--s-2);
}
.faq-hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--accent-lo);
}
.faq-hero p {
  color: var(--mute);
  font-size: 1.05rem; line-height: 1.6;
  max-width: 580px; margin: 0 auto;
}

/* FAQ page body */
.faq-body { padding: var(--s-5) 0 var(--s-6); }

/* Numbered FAQ items (sss page only — homepage uses simple version) */
.faq-item .faq-q .q-num {
  font-family: var(--font-mono);
  font-size: .82rem; font-weight: 600;
  color: var(--accent-lo);
  letter-spacing: .08em;
  flex-shrink: 0;
  margin-right: var(--s-2);
}
.faq-item .faq-q .q-text {
  flex: 1;
  min-width: 0;
}
.faq-item.open .faq-q .q-num { color: var(--accent); }

/* CTA panel at bottom of FAQ */
.faq-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
}
.faq-cta h2 {
  font-size: 1.3rem;
  margin: 0 0 .25rem;
  letter-spacing: -.01em;
}
.faq-cta p {
  color: var(--mute);
  font-size: .95rem;
  margin: 0;
}
.faq-cta-actions {
  display: flex; gap: .6rem; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .faq-cta { flex-direction: column; align-items: flex-start; }
  .faq-cta-actions { width: 100%; }
  .faq-cta-actions .btn { flex: 1; justify-content: center; }
}

/* --- Contact page --------------------------------------------------- */
.contact-hero {
  padding: var(--s-6) 0 var(--s-5);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.contact-hero-inner { max-width: 680px; margin: 0 auto; }
.contact-hero .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: var(--s-2);
  padding: .3rem .75rem;
  background: rgba(216,154,43,.08);
  border: 1px solid rgba(216,154,43,.2);
  border-radius: 999px;
}
.contact-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 var(--s-2);
}
.contact-hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--accent-lo);
}
.contact-hero p {
  color: var(--mute);
  font-size: 1.05rem; line-height: 1.6;
  max-width: 580px; margin: 0 auto;
}

/* Contact channels (phone/whatsapp/email) */
.contact-channels { padding-top: var(--s-5); padding-bottom: var(--s-3); }
.channel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 820px) { .channel-grid { grid-template-columns: 1fr; } }
.channel-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: .3rem;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.channel-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.channel-card .ic {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--s-2);
}
.channel-card.wa .ic { background: #25D366; color: #fff; }
.channel-card .label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--mute);
}
.channel-card strong {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: .15rem 0 .25rem;
}
.channel-card small {
  font-size: .85rem;
  color: var(--mute);
}

/* Form + Office info body */
.contact-body { padding-top: var(--s-5); padding-bottom: var(--s-7); }
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-col .eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: .6rem;
  display: inline-block;
}
.contact-form-col h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin-bottom: .4rem;
  letter-spacing: -.015em;
}
.contact-form-col .sub {
  color: var(--mute);
  font-size: .95rem;
  margin: 0 0 var(--s-3);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-sm);
}
.cf-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  margin-bottom: var(--s-2);
}
@media (max-width: 540px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field {
  display: flex; flex-direction: column; gap: .3rem;
  margin: 0 0 var(--s-2);
}
.cf-field span {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: .35rem;
}
.cf-field span i { color: var(--accent); font-size: .82rem; }
.cf-field input,
.cf-field textarea {
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 500;
  color: var(--ink);
  transition: all var(--tr-xs);
  width: 100%;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216,154,43,.15);
}
.contact-form button { margin-top: var(--s-2); }

/* Office info sidebar */
.contact-info-col { display: flex; flex-direction: column; gap: var(--s-3); }
.info-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.info-head {
  display: flex; align-items: center; gap: .8rem;
  padding: var(--s-3) var(--s-4);
  background: var(--ink); color: var(--paper);
  border-bottom: 3px solid var(--accent);
}
.info-head i {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(216,154,43,.15); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-head .label {
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
}
.info-head h3 {
  color: var(--paper);
  font-size: 1.15rem; font-weight: 800;
  margin: .1rem 0 0;
}

.info-row {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: var(--s-2) var(--s-4);
  border-bottom: 1px solid var(--rule);
}
.info-row:last-child { border-bottom: 0; }
.info-row i {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--paper-2); color: var(--accent-lo);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
  margin-top: 2px;
}
.info-row small {
  display: block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: .15rem;
}
.info-row address,
.info-row span,
.info-row a {
  font-style: normal;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
.info-row a:hover { color: var(--accent-lo); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* --- About / Corporate page ---------------------------------------- */
.about-hero {
  background:
    radial-gradient(900px 500px at 80% 50%, rgba(216,154,43,.12), transparent 65%),
    linear-gradient(180deg, #0a0a0d 0%, #141418 100%);
  color: var(--paper);
  padding: var(--s-7) 0 var(--s-7);
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,.08);
}
.about-hero-inner {
  max-width: 780px;
}
.about-hero .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
  padding: .35rem .85rem;
  background: rgba(216,154,43,.1);
  border: 1px solid rgba(216,154,43,.28);
  border-radius: 999px;
}
.about-hero h1 {
  color: var(--paper);
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.05; letter-spacing: -.025em;
  margin: 0 0 var(--s-3);
}
.about-hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--accent);
}
.about-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 620px;
}

/* Story */
.story-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; } }
.story-text .eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: .6rem;
  display: inline-block;
}
.story-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15; letter-spacing: -.015em;
  margin-bottom: var(--s-3);
}
.story-text p {
  color: var(--ink);
  line-height: 1.7; font-size: 1rem;
  margin-bottom: var(--s-2);
}
.story-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-panel .story-stat {
  background: var(--paper);
  padding: var(--s-4) var(--s-3);
  display: flex; flex-direction: column; gap: .4rem;
  text-align: left;
}
.story-panel .story-stat strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-lo);
  letter-spacing: -.02em;
  line-height: 1;
}
.story-panel .story-stat span {
  font-size: .82rem;
  color: var(--mute);
  letter-spacing: .04em;
}

/* Mission & Vision */
.about-mv {
  background:
    radial-gradient(600px 300px at 0% 100%, rgba(216,154,43,.08), transparent 65%),
    radial-gradient(600px 300px at 100% 0%, rgba(216,154,43,.06), transparent 70%),
    var(--ink);
}
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
@media (max-width: 820px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  transition: border-color var(--tr), transform var(--tr);
}
.mv-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.mv-card .mv-head {
  display: flex; align-items: flex-start; gap: var(--s-2);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mv-card .ic {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--accent); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.mv-card .label {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .3rem;
}
.mv-card h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--paper);
  margin: 0;
  line-height: 1.25;
}
.mv-card p {
  color: rgba(255,255,255,.72);
  font-size: .98rem;
  line-height: 1.7;
  margin: 0;
}

/* Values */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  transition: border-color var(--tr), transform var(--tr);
}
.value-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.value-card .ic {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--s-2);
}
.value-card h3 {
  font-size: 1.08rem; font-weight: 800;
  margin: 0 0 .4rem;
  letter-spacing: -.005em;
}
.value-card p {
  color: var(--mute);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

/* Offer / services */
.offer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-item {
  padding: var(--s-4);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: .6rem;
  position: relative;
}
.offer-item .num {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 700;
  color: var(--accent-lo);
  letter-spacing: .1em;
}
.offer-item h3 {
  font-size: 1.15rem; font-weight: 800;
  margin: 0;
  letter-spacing: -.01em;
}
.offer-item p {
  color: var(--mute);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- intl-tel-input v24 integration (country-code dropdown) --------- */
/* v24 uses position: relative on .iti and position: absolute on the flag container.
   Our cf-field / manage-fields inputs have their own border/bg — when iti wraps,
   we move the border/bg onto .iti and make the inner input transparent. */
.iti {
  width: 100%;
  display: block !important;
  position: relative;
}
.cf-field .iti,
.manage-fields .field .iti {
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color var(--tr-xs), background var(--tr-xs), box-shadow var(--tr-xs);
}
.cf-field .iti:focus-within,
.manage-fields .field .iti:focus-within {
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216,154,43,.15);
}

/* Input inside iti — strip its own styling, keep iti-calculated left padding */
.iti input.iti__tel-input,
.iti input[type="tel"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: .72rem !important;
  padding-bottom: .72rem !important;
  padding-right: .9rem !important;
  /* DO NOT set padding-left — intl-tel-input sets it dynamically for flag clearance */
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  width: 100% !important;
  outline: none !important;
}

/* Flag / dial-code button (v17 + v24) */
.iti__selected-flag,
.iti__selected-country {
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid var(--rule) !important;
  padding: 0 .75rem !important;
}
.iti__selected-flag:hover,
.iti__selected-country:hover { background: rgba(0,0,0,.03) !important; }
.iti--separate-dial-code .iti__selected-dial-code {
  color: var(--ink); font-weight: 700; font-size: .95rem; margin-left: 6px;
}
.iti__arrow { border-top-color: var(--mute) !important; margin-left: 6px; }

/* Dropdown list (shared for v17 + v24) */
.iti__country-list {
  border: 1px solid var(--rule) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  background: var(--paper) !important;
  font-size: .9rem !important;
  max-height: 280px !important;
  z-index: 1000 !important;
  min-width: 340px;
}
.iti__flag-container,
.iti__country-container { z-index: 1000 !important; }
.iti__country.iti__highlight,
.iti__country:hover { background: var(--paper-2) !important; }
.iti__divider { border-bottom-color: var(--rule) !important; }

/* --- Reservation step 2 (customer form + summary) ------------------ */
.res-step2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-4);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 960px) { .res-step2-grid { grid-template-columns: 1fr; } }

/* FORM column */
.res-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-sm);
}
.res-section {
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--rule);
}
.res-section:last-of-type { border-bottom: 0; margin-bottom: var(--s-2); }
.res-section-head {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: var(--s-3);
}
.res-section-head .num {
  font-family: var(--font-mono);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  font-size: .8rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.res-section-head h3 {
  font-size: 1.05rem; font-weight: 800;
  margin: 0;
  letter-spacing: -.01em;
  flex: 1;
}
.res-section-head .res-toggle {
  background: transparent; border: 1.5px dashed var(--rule);
  border-radius: 999px;
  padding: .3rem .75rem;
  font-size: .8rem; font-weight: 700;
  color: var(--mute);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: all var(--tr-xs);
}
.res-section-head .res-toggle:hover { border-color: var(--ink); color: var(--ink); }
.res-section-head .res-toggle.is-open {
  background: var(--ink); color: var(--accent); border-color: var(--ink); border-style: solid;
}
.res-section-head .res-toggle.is-open i { transform: rotate(45deg); transition: transform var(--tr); }

/* ID type toggle */
.id-toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: var(--s-3);
}
.id-opt {
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.1rem;
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--tr-xs);
}
.id-opt input { position: absolute; opacity: 0; pointer-events: none; }
.id-opt i {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--paper); color: var(--accent-lo);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.id-opt span { font-weight: 700; font-size: .95rem; color: var(--ink); }
.id-opt:hover { border-color: var(--ink); }
.id-opt.active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.id-opt.active i { background: var(--accent); color: #0a0a0a; }
.id-opt.active span { color: var(--paper); }

/* Extra driver collapsible */
.extra-driver-box {
  padding: var(--s-3);
  background: var(--paper-2);
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
}
.extra-driver-box .note {
  color: var(--mute);
  font-size: .82rem;
  margin: 0 0 var(--s-2);
  line-height: 1.5;
}

/* Consent checkboxes */
.res-check {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .75rem 1rem;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: .5rem;
  transition: border-color var(--tr-xs);
}
.res-check:hover { border-color: var(--accent); }
.res-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.res-check span {
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.5;
}
.res-check span strong { color: #dc2626; }
.res-check span a {
  color: var(--accent-lo); font-weight: 700;
  border-bottom: 1px solid currentColor;
}

/* Submit */
.res-submit {
  padding: 1.15rem 1.6rem !important;
  font-size: 1rem !important;
  margin-top: var(--s-3);
}
.res-submit-note {
  text-align: center;
  color: var(--mute);
  font-size: .82rem;
  margin: .6rem 0 0;
}

/* SUMMARY column (sticky) */
.res-summary { position: sticky; top: 90px; align-self: start; }
@media (max-width: 960px) { .res-summary { position: static; } }

.res-sum-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.res-sum-media {
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f5 100%);
  position: relative;
  overflow: hidden;
}
.res-sum-media img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
}
.res-sum-media .cat-pill {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,10,10,.85); color: var(--paper);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: var(--radius-xs);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.res-sum-title {
  padding: var(--s-3) var(--s-3) var(--s-2);
}
.res-sum-title h3 {
  font-size: 1.2rem; font-weight: 800;
  margin: 0;
  letter-spacing: -.015em;
}
.res-sum-title span {
  font-size: .85rem;
  color: var(--mute);
}

/* Timeline */
.res-sum-timeline {
  padding: var(--s-3);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr; gap: .9rem;
  position: relative;
}
.res-sum-timeline .tl {
  display: flex; flex-direction: column; gap: .15rem;
}
.res-sum-timeline .tl-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute);
}
.res-sum-timeline .tl strong {
  font-size: 1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em;
}
.res-sum-timeline .tl-time {
  font-family: var(--font-mono);
  font-size: .82rem; color: var(--accent-lo); font-weight: 600;
}
.res-sum-timeline .tl-loc {
  font-size: .78rem; color: var(--mute);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .1rem;
}
.res-sum-timeline .tl-loc i { color: var(--accent); font-size: .72rem; }
.res-sum-timeline .tl-bar {
  position: relative;
  display: flex; align-items: center; gap: .5rem;
  padding-left: 1.1rem;
}
.res-sum-timeline .tl-bar::before {
  content: ''; position: absolute; left: .25rem; top: -.25rem; bottom: -.25rem;
  width: 2px; background: var(--rule);
}
.res-sum-timeline .tl-bar span {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  padding: .2rem .55rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
}

/* Price lines */
.res-sum-lines {
  padding: var(--s-3);
  border-bottom: 1px solid var(--rule);
}
.res-sum-lines .line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--mute);
}
.res-sum-lines .line strong { color: var(--ink); font-weight: 700; font-size: .95rem; }
.res-sum-lines .line.is-extra strong { color: #d97706; }
.res-sum-lines .line.is-total {
  margin-top: .5rem;
  padding-top: .8rem;
  border-top: 1px dashed var(--rule);
  font-size: 1rem;
}
.res-sum-lines .line.is-total span { color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.res-sum-lines .line.is-total strong {
  font-size: 1.5rem; font-weight: 900;
  color: var(--accent-lo); letter-spacing: -.02em;
}

/* Policies (deposit, age/license) */
.res-sum-policy {
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.res-sum-policy .policy {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .6rem;
}
.res-sum-policy .policy i {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--paper-2);
  color: var(--accent-lo);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.res-sum-policy .policy small {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
}
.res-sum-policy .policy strong {
  display: block;
  font-size: .85rem; font-weight: 700;
  color: var(--ink);
  margin-top: .1rem;
}

/* Assurance list */
.res-sum-assure {
  list-style: none; padding: var(--s-3); margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.res-sum-assure li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; color: var(--ink);
}
.res-sum-assure li i { color: #16a34a; font-size: .95rem; flex-shrink: 0; }

/* --- Reservation step 1 (search + vehicle grid) --------------------- */
.reservation-search-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s-4);
}
.reservation-search-head h1 {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  letter-spacing: -.015em;
  margin: 0 0 .35rem;
}
.reservation-search-head p {
  color: var(--mute);
  font-size: .95rem;
  margin: 0;
}

/* Reservation page — keep booking card width in check */
.vehicles-search .booking,
section.asis-section > .wrap > .booking {
  max-width: 1120px;
  margin: 0 auto var(--s-5);
}

.reservation-grid-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-3); margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.reservation-grid-head h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin: 0;
  letter-spacing: -.01em;
}
.reservation-grid-head p {
  margin: 0;
  color: var(--mute);
  font-size: .9rem;
  font-family: var(--font-mono);
}

/* --- Vehicle detail page -------------------------------------------- */
.crumbs {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: .75rem 0;
}
.crumbs-inner {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem;
  color: var(--mute);
}
.crumbs a { color: var(--mute); transition: color var(--tr-xs); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink); font-weight: 600; }
.crumbs i { font-size: .7rem; color: var(--rule); }

.vd-head { padding: var(--s-4) 0 var(--s-3); }
.vd-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 960px) { .vd-grid { grid-template-columns: 1fr; gap: var(--s-3); } }

.vd-cover {
  position: relative;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f5 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
}
.vd-cover img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
}
.vd-cover .cat-pill {
  position: absolute; top: var(--s-2); left: var(--s-2); z-index: 2;
  background: rgba(10,10,10,.85); color: var(--paper);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.vd-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
  margin-top: .5rem;
}
.vd-thumbs .thumb {
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f5 100%);
  border: 1.5px solid transparent;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; padding: 0; cursor: pointer;
  transition: border-color var(--tr-xs);
}
.vd-thumbs .thumb:hover { border-color: var(--accent); }
.vd-thumbs .thumb img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
}

.vd-title .kicker {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-lo);
  margin-bottom: .55rem;
}
.vd-title h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .3rem;
}
.vd-title .sub {
  color: var(--mute); font-size: .95rem; font-weight: 500;
  margin-bottom: var(--s-3);
}
.vd-title .lead {
  font-size: 1.02rem; line-height: 1.55;
  color: var(--ink);
  margin: 0 0 var(--s-3);
}

.vd-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .65rem .9rem;
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
}
.vd-specs .spec {
  display: flex; align-items: center; gap: .55rem;
  color: var(--ink); font-size: .92rem;
}
.vd-specs .spec i {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--paper-2);
  color: var(--accent-lo);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* Body grid */
.vd-body {
  padding: var(--s-4) 0 var(--s-7);
  background: var(--paper);
}
.vd-body-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 960px) { .vd-body-grid { grid-template-columns: 1fr; } }

.vd-block { margin-bottom: var(--s-5); }
.vd-block h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.005em;
  margin: 0 0 var(--s-2);
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--ink);
  display: inline-block;
}
.vd-block .prose { color: var(--ink); line-height: 1.65; font-size: .98rem; }
.vd-block .prose p { margin: 0 0 .8rem; }
.vd-block .prose h3 { font-size: 1rem; font-weight: 800; margin: 1rem 0 .4rem; }
.vd-block .prose ul { margin: .4rem 0; padding-left: 1.2rem; }

.vd-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem 1rem;
}
@media (max-width: 640px) { .vd-features { grid-template-columns: 1fr; } }
.vd-features li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .92rem; color: var(--ink);
}
.vd-features i {
  color: var(--accent); font-size: 1.05rem; flex-shrink: 0;
}

/* Rental terms */
.terms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem;
}
@media (max-width: 640px) { .terms-grid { grid-template-columns: 1fr; } }
.terms-grid .term {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .85rem 1rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
}
.terms-grid .term i {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.terms-grid .term strong {
  display: block; font-size: .78rem;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--mute); font-weight: 700;
  margin-bottom: .15rem;
}
.terms-grid .term span {
  display: block; font-size: .95rem; font-weight: 600;
  color: var(--ink);
}

/* Booking sidebar */
.vd-book { position: sticky; top: 90px; }
@media (max-width: 960px) { .vd-book { position: static; } }

.vd-book-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.vd-book-head {
  padding: var(--s-3) var(--s-4);
  background: var(--ink); color: var(--paper);
  border-bottom: 3px solid var(--accent);
}
.vd-book-head strong {
  display: block;
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -.01em;
  color: var(--paper);
  margin-bottom: .2rem;
}
.vd-book-head span {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.7);
}
.vd-book-head span::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.22);
}

.vd-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: var(--s-3) var(--s-4) 0;
  padding: 1rem 1.2rem;
  background: var(--accent); color: #0a0a0a;
  border-radius: var(--radius);
  font-weight: 800; font-size: .98rem;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none;
  transition: background var(--tr-xs), transform var(--tr-xs);
}
.vd-cta:hover {
  background: var(--accent-hi); color: #0a0a0a;
  transform: translateY(-1px);
}

.vd-assure {
  padding: var(--s-3) var(--s-4);
  display: flex; flex-direction: column; gap: .4rem;
  border-top: 1px solid var(--rule);
  margin-top: var(--s-3);
}
.vd-assure div {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; color: var(--ink);
}
.vd-assure i { color: #16a34a; font-size: 1rem; flex-shrink: 0; }

.vd-phone {
  display: flex; align-items: center; gap: .7rem;
  padding: var(--s-2) var(--s-4);
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  color: var(--ink); text-decoration: none;
  transition: background var(--tr-xs);
}
.vd-phone:hover { background: var(--paper-3); color: var(--ink); }
.vd-phone i {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.vd-phone span { display: flex; flex-direction: column; line-height: 1.2; }
.vd-phone small { font-size: .72rem; color: var(--mute); }
.vd-phone strong { font-size: 1rem; font-weight: 800; }

/* --- Vehicles listing page ------------------------------------------ */
.vehicles-head {
  padding: var(--s-5) 0 var(--s-2);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.vehicles-head .vh-inner {
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.vehicles-head h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.02em;
  margin: 0 0 .35rem;
}
.vehicles-head p {
  color: var(--mute); font-size: .92rem;
  margin: 0;
}
.vehicles-head p a {
  color: var(--accent-lo); font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* Compact search (reuses .booking + .booking-form) */
.vehicles-search {
  padding: var(--s-3) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.vehicles-search .booking {
  margin: 0; padding: 0;
  box-shadow: none; border: 0;
  border-radius: 0;
}
.vehicles-search .booking-form {
  min-height: 72px;
}
.vehicles-search .booking-form > .field { padding: .85rem 1rem; }
.vehicles-search .booking-form .field-label { font-size: .62rem; }
.vehicles-search .booking-form input,
.vehicles-search .booking-form select { font-size: 1rem; }

/* Filter pills bar */
.vehicles-filters {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) 0;
}
.vehicles-filters .filter-row {
  display: flex; align-items: center; gap: var(--s-4);
  margin-bottom: .75rem; flex-wrap: wrap;
}
.vehicles-filters .filter-row:last-child { margin-bottom: 0; }
.vehicles-filters .filter-row-secondary { padding-top: .6rem; border-top: 1px dashed var(--rule); }
.vehicles-filters .filter-group {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.filter-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute);
  margin-right: .2rem;
}

.pill {
  display: inline-flex; align-items: center;
  padding: .5rem .95rem;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  text-decoration: none;
  transition: all var(--tr-xs);
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--ink); color: var(--ink);
  transform: translateY(-1px);
}
.pill.active {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.pill-sm {
  padding: .35rem .8rem;
  font-size: .8rem;
}

/* Results grid */
.vehicles-results {
  padding: var(--s-5) 0 var(--s-7);
  background: var(--paper);
}
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 900px) { .v-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v-grid { grid-template-columns: 1fr; } }

/* Empty state */
.empty-state {
  text-align: center;
  padding: var(--s-7) var(--s-3);
  background: var(--paper-2);
  border: 1px dashed var(--rule);
  border-radius: var(--radius-lg);
}
.empty-state i {
  font-size: 3rem;
  color: var(--accent);
  display: block; margin-bottom: var(--s-2);
  opacity: .6;
}
.empty-state h3 {
  font-size: 1.3rem; margin: 0 0 .4rem;
}
.empty-state p {
  color: var(--mute);
  margin: 0 0 var(--s-3);
}

/* --- Manage reservation page ---------------------------------------- */
.manage-hero {
  padding: var(--s-5) 0 var(--s-2);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.manage-hero-inner {
  display: flex; align-items: center; gap: .9rem;
  max-width: 720px; margin: 0 auto;
}
.manage-hero .ic {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(216,154,43,.1);
  border: 1px solid rgba(216,154,43,.28);
  color: var(--accent-lo); font-size: 1.1rem;
  flex-shrink: 0;
}
.manage-hero h1 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15; margin: 0 0 .15rem;
  letter-spacing: -.015em;
}
.manage-hero p {
  color: var(--mute);
  font-size: .92rem; margin: 0;
  line-height: 1.4;
}

.manage-section {
  padding-top: var(--s-4);
  padding-bottom: var(--s-6);
}
@media (max-width: 540px) {
  .manage-hero-inner { gap: .7rem; }
  .manage-hero .ic { width: 36px; height: 36px; font-size: 1rem; }
}

.manage-alert {
  display: flex; gap: .8rem;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: var(--s-3);
  color: #991b1b;
  margin-bottom: var(--s-3);
}
.manage-alert i { font-size: 1.2rem; color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.manage-alert ul { list-style: none; padding: 0; margin: 0; font-size: .95rem; }
.manage-alert li { margin-bottom: .2rem; }
.manage-alert li:last-child { margin-bottom: 0; }

.manage-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: var(--s-4);
  margin-bottom: var(--s-3);
}
.manage-card-head {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule);
}
.manage-card-head .step {
  font-family: var(--font-mono);
  font-size: .85rem; font-weight: 700;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.manage-card-head h3 {
  font-size: 1.1rem; font-weight: 800;
  margin: 0; letter-spacing: -.01em;
}

.manage-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin-bottom: var(--s-3);
}
@media (max-width: 540px) { .manage-fields { grid-template-columns: 1fr; } }
.manage-fields .field {
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  display: flex; flex-direction: column; gap: .3rem;
  transition: border-color var(--tr-xs), background var(--tr-xs);
}
.manage-fields .field:hover { border-color: var(--accent); }
.manage-fields .field:focus-within {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(216,154,43,.15);
}
.manage-fields .field label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: .3rem;
}
.manage-fields .field label i { color: var(--accent); font-size: .78rem; }
.manage-fields .field input {
  border: 0; background: transparent; padding: 0; margin: 0;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 1rem;
  color: var(--ink); width: 100%;
}
.manage-fields .field input:focus { outline: none; }

.manage-submit { padding: .95rem 1.5rem; font-size: .95rem; }

.manage-query-title {
  display: flex; align-items: center; gap: .55rem;
  padding-bottom: var(--s-2);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule);
  font-size: .85rem; font-weight: 700;
  color: var(--mute);
  letter-spacing: .06em; text-transform: uppercase;
}
.manage-query-title i { color: var(--accent); font-size: 1rem; }
.manage-help {
  margin-top: var(--s-3);
  padding-top: var(--s-2);
  border-top: 1px dashed var(--rule);
  color: var(--mute); font-size: .82rem;
  text-align: center;
}
.manage-help b { color: var(--ink); font-family: var(--font-mono); }

/* Reservation detail */
.res-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--s-3); flex-wrap: wrap;
  margin-bottom: var(--s-3);
}
.res-head .res-no {
  font-family: var(--font-mono);
  font-size: .85rem; color: var(--accent-lo);
  letter-spacing: .05em; font-weight: 600;
  margin-bottom: .25rem;
}
.res-head .res-car {
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: -.015em;
}
.res-head .res-status {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Timeline */
.res-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-2);
  align-items: center;
  padding: var(--s-3);
  background: var(--paper-2);
  border-radius: var(--radius);
  margin-bottom: var(--s-3);
}
.res-timeline .tl-point {
  display: flex; flex-direction: column; gap: .15rem;
}
.res-timeline .tl-point:last-child { text-align: right; }
.res-timeline .tl-label {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute);
}
.res-timeline .tl-date {
  font-size: 1.1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em;
}
.res-timeline .tl-time {
  font-family: var(--font-mono);
  font-size: .82rem; color: var(--accent-lo); font-weight: 600;
}
.res-timeline .tl-loc {
  font-size: .78rem; color: var(--mute);
  margin-top: .2rem;
  display: inline-flex; align-items: center; gap: .25rem;
}
.res-timeline .tl-point:last-child .tl-loc { justify-content: flex-end; }
.res-timeline .tl-loc i { color: var(--accent); font-size: .7rem; }

.res-timeline .tl-bar {
  position: relative;
  min-width: 60px;
  height: 2px; background: var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.res-timeline .tl-bar::before,
.res-timeline .tl-bar::after {
  content: ''; position: absolute; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
.res-timeline .tl-bar::before { left: -4px; }
.res-timeline .tl-bar::after  { right: -4px; }
.res-timeline .tl-days {
  position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink); color: var(--paper);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .res-timeline {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .res-timeline .tl-point:last-child { text-align: left; }
  .res-timeline .tl-point:last-child .tl-loc { justify-content: flex-start; }
  .res-timeline .tl-bar {
    width: 2px; height: 40px; min-width: 0;
    justify-self: start; margin-left: 6px;
  }
  .res-timeline .tl-bar::before { left: 50%; top: -4px; transform: translate(-50%, 0); }
  .res-timeline .tl-bar::after  { left: 50%; top: auto; bottom: -4px; right: auto; transform: translate(-50%, 0); }
  .res-timeline .tl-days {
    top: 50%; left: calc(100% + 8px); transform: translateY(-50%);
  }
}

/* Facts */
.res-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
  margin-bottom: var(--s-3);
}
.res-facts .fact {
  padding: .8rem 1rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: .2rem;
}
.res-facts .fact .k {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
}
.res-facts .fact .v {
  font-weight: 700; font-size: .95rem; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.res-facts .fact-total {
  grid-column: 1 / -1;
  background: var(--ink); color: var(--paper);
  flex-direction: row; align-items: baseline; justify-content: space-between;
}
.res-facts .fact-total .k {
  color: rgba(255,255,255,.6);
}
.res-facts .fact-total .v {
  color: var(--accent); font-size: 1.5rem; font-weight: 900;
  letter-spacing: -.02em; white-space: nowrap;
}

/* Cancel zone */
.cancel-zone {
  margin-top: var(--s-3);
  padding: var(--s-3);
  background: #fef9f3;
  border: 1px dashed #f4d399;
  border-radius: var(--radius);
}
.cancel-head {
  display: flex; gap: .8rem; align-items: flex-start;
  margin-bottom: var(--s-2);
}
.cancel-head i { color: #d97706; font-size: 1.3rem; margin-top: 2px; }
.cancel-head strong {
  display: block; font-size: 1rem; font-weight: 800;
  color: var(--ink);
}
.cancel-head small {
  color: var(--mute); font-size: .82rem;
}
.cancel-row {
  display: grid; grid-template-columns: 1fr auto; gap: .6rem;
}
.cancel-row input {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: 1rem; font-weight: 700;
  transition: border-color var(--tr-xs);
}
.cancel-row input:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217,119,6,.15);
}
.cancel-row .btn-cancel {
  background: #dc2626; color: #fff;
  border: 0; border-radius: var(--radius);
  padding: 0 1.3rem;
  font-weight: 800; font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: background var(--tr-xs), transform var(--tr-xs);
}
.cancel-row .btn-cancel:hover { background: #b91c1c; transform: translateY(-1px); }
@media (max-width: 540px) {
  .cancel-row { grid-template-columns: 1fr; }
  .cancel-row .btn-cancel { padding: .9rem; justify-content: center; }
}

/* Status notes */
.status-note {
  margin-top: var(--s-3);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--radius);
  font-size: .92rem; font-weight: 600;
  display: flex; align-items: center; gap: .6rem;
}
.status-note i { font-size: 1.1rem; }
.status-note.is-cancelled { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.status-note.is-cancelled i { color: #dc2626; }
.status-note.is-active    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.status-note.is-active i  { color: #2563eb; }
.status-note.is-completed { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.status-note.is-completed i { color: #16a34a; }

/* --- Reveal --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --- Utilities ------------------------------------------------------ */
.text-accent { color: var(--accent-lo); }
.text-mute   { color: var(--mute); }

/* --- Vehicle sold-out state ---------------------------------------- */
.v-card.is-soldout { opacity: .55; pointer-events: none; filter: grayscale(.3); }
.v-card.is-soldout .media img { filter: grayscale(.6); }
.soldout-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(220, 38, 38, .35);
}

/* --- Branded confirm modal ----------------------------------------- */
.app-modal {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.app-modal.is-open { opacity: 1; pointer-events: auto; }
.app-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(14, 14, 16, .55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.app-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px 24px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
    text-align: center;
    transform: scale(.94);
    transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.app-modal.is-open .app-modal-dialog { transform: scale(1); }
.app-modal-ic {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}
.app-modal-msg {
    color: var(--ink, #0e0e10);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 22px;
    white-space: pre-wrap;
}
.app-modal-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.app-modal-btn {
    border: none;
    padding: 11px 28px;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    min-width: 120px;
    font-family: inherit;
}
.app-modal-btn-cancel { background: #f1f5f9; color: #475569; }
.app-modal-btn-cancel:hover { background: #e2e8f0; color: #0f172a; }
.app-modal-btn-ok {
    background: var(--accent, #c9a24b);
    color: #0a0a0a;
    box-shadow: 0 4px 12px rgba(201,162,75,.3);
}
.app-modal-btn-ok:hover { background: #b8902f; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(201,162,75,.4); }
.app-modal-btn-ok:focus,
.app-modal-btn-cancel:focus { outline: 2px solid var(--accent, #c9a24b); outline-offset: 2px; }

@media (max-width: 480px) {
    .app-modal-dialog { padding: 24px 20px 20px; }
    .app-modal-actions { flex-direction: column-reverse; }
    .app-modal-btn { width: 100%; min-width: 0; }
}

/* Site-wide select upgrade — custom chevron arrow */
select, .form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='none' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' d='M2 4l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px !important;
    cursor: pointer;
}

/* --- Cookie consent banner ----------------------------------------- */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1060;
    background: var(--ink, #0e0e10);
    color: #f5f3ee;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease;
    max-width: 960px;
    margin: 0 auto;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 18px 22px;
}
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text h5 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cookie-banner-text h5 .bi { color: var(--accent, #d89a2b); }
.cookie-banner-text p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.5;
    color: rgba(245, 243, 238, .78);
}
.cookie-banner-text a {
    color: var(--accent, #d89a2b);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-banner-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, .25);
    color: #f5f3ee;
}
.cookie-banner-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}
.cookie-banner-actions .btn-accent {
    background: var(--accent, #d89a2b);
    color: #0e0e10;
    border: 1px solid var(--accent, #d89a2b);
    font-weight: 600;
}
.cookie-banner-actions .btn-accent:hover {
    background: #e6ae46;
    border-color: #e6ae46;
    color: #0e0e10;
}
@media (max-width: 720px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; }
    .cookie-banner-actions { justify-content: flex-end; }
}

/* ==================== Kurumsal Kiralama (B2B Landing) ==================== */
.kv-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 44px 0 52px;
    position: relative;
    overflow: hidden;
}
.kv-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 90% 20%, rgba(201,162,75,.12), transparent 70%);
    pointer-events: none;
}
.kv-hero-inner { position: relative; max-width: 760px; text-align: center; margin: 0 auto; }
.kv-hero .kicker {
    display: inline-block;
    font-size: .66rem; letter-spacing: .18em; color: var(--accent);
    font-weight: 700;
    padding: 4px 11px;
    background: rgba(201,162,75,.12);
    border: 1px solid rgba(201,162,75,.28);
    border-radius: 99px;
    margin-bottom: 14px;
}
.kv-hero h1 {
    font-family: Manrope, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.015em;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
}
.kv-hero .lede {
    color: #aab0bb;
    font-size: .95rem;
    max-width: 620px;
    margin: 0 auto 22px;
    line-height: 1.55;
}
.kv-hero-cta { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.kv-hero-cta .btn-accent {
    background: var(--accent); color: #0a0a0a;
    padding: .65rem 1.2rem; font-weight: 700; border: none; font-size: .88rem;
}
.kv-hero-cta .btn-accent:hover { background: #d9b45c; color: #0a0a0a; }
.kv-hero-cta .btn-outline-light {
    border: 1px solid rgba(255,255,255,.22); color: #fff;
    padding: .65rem 1.2rem; background: transparent; font-size: .88rem;
}
.kv-hero-cta .btn-outline-light:hover { background: rgba(255,255,255,.08); color: #fff; }

.kv-benefits { padding: 60px 0; }
.kv-benefit-swiper { padding: 10px 0 8px; }
.kv-benefit-swiper .swiper-slide { height: auto; display: flex; }
.kv-benefit {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px 20px;
    transition: all .2s;
    flex: 1;
    display: flex; flex-direction: column;
}
.kv-benefit:hover { border-color: var(--accent, #c9a24b); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.kv-benefit .ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: #fef3c7; color: #92400e;
    border-radius: 10px; font-size: 1.1rem;
    margin-bottom: 12px;
}
.kv-benefit h3 {
    font-family: Manrope, sans-serif;
    font-size: .95rem; font-weight: 800;
    color: var(--ink, #0f172a); margin: 0 0 6px;
    letter-spacing: -.005em;
}
.kv-benefit p { color: #64748b; font-size: .8rem; line-height: 1.55; margin: 0; }

.kv-packages { background: #fafbfc; padding: 80px 0; }
.kv-pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.kv-pack {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all .2s;
}
.kv-pack:hover { border-color: var(--accent, #c9a24b); }
.kv-pack.is-featured {
    border-color: #0a0a0a; background: #0a0a0a; color: #fff;
    transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.kv-pack.is-featured .pack-period { color: var(--accent, #c9a24b); }
.kv-pack.is-featured ul li { color: #d6d8dc; }
.kv-pack.is-featured .btn-outline-dark { border-color: var(--accent, #c9a24b); color: var(--accent, #c9a24b); }
.kv-pack.is-featured .btn-outline-dark:hover { background: var(--accent, #c9a24b); color: #0a0a0a; }
.kv-pack .pack-tag {
    position: absolute; top: -12px; right: 24px;
    background: var(--accent, #c9a24b); color: #0a0a0a;
    font-size: .68rem; letter-spacing: .15em; font-weight: 800;
    padding: 5px 12px; border-radius: 99px;
}
.kv-pack h3 {
    font-family: Manrope, sans-serif;
    font-size: 1.3rem; font-weight: 800; margin: 0 0 4px;
}
.kv-pack .pack-period {
    font-size: .9rem; color: #64748b;
    margin-bottom: 20px; font-weight: 600;
}
.kv-pack ul { list-style: none; padding: 0; margin: 0 0 24px; }
.kv-pack ul li {
    padding: 8px 0; font-size: .9rem; color: #334155;
    display: flex; align-items: center; gap: 8px;
}
.kv-pack ul li i { color: #22c55e; flex-shrink: 0; }
.kv-pack .btn { width: 100%; padding: .8rem; font-weight: 700; }

.kv-process { padding: 80px 0; }
.kv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.kv-step { text-align: center; padding: 20px; }
.kv-step .step-num {
    display: inline-block;
    font-family: Manrope, sans-serif;
    font-size: 2rem; font-weight: 900;
    color: var(--accent, #c9a24b);
    letter-spacing: -.02em; margin-bottom: 12px;
}
.kv-step h3 {
    font-family: Manrope, sans-serif;
    font-size: 1.1rem; font-weight: 800;
    margin: 0 0 6px; color: var(--ink, #0f172a);
}
.kv-step p { color: #64748b; font-size: .88rem; margin: 0; }

.kv-form { background: #0a0a0a; color: #fff; padding: 80px 0; }
.kv-form-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px; align-items: start;
}
.kv-form-side .kicker {
    display: inline-block;
    font-size: .72rem; letter-spacing: .2em; color: var(--accent, #c9a24b);
    font-weight: 700; margin-bottom: 12px;
}
.kv-form-side h2 {
    font-family: Manrope, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; color: #fff;
    letter-spacing: -.015em; margin: 0 0 16px;
}
.kv-form-side p { color: #aab0bb; font-size: .95rem; line-height: 1.6; margin-bottom: 28px; }
.kv-contact { display: flex; flex-direction: column; gap: 10px; }
.kv-contact a {
    color: #fff; text-decoration: none;
    padding: 12px 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .15s;
}
.kv-contact a:hover { background: rgba(201,162,75,.15); border-color: var(--accent, #c9a24b); }

.kv-form-box {
    background: #fff; border-radius: 18px;
    padding: 36px 38px; color: var(--ink, #0f172a);
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.kv-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.kv-sec-label {
    grid-column: 1 / -1;
    display: flex; align-items: center; gap: 10px;
    font-size: .72rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent, #c9a24b);
    padding: 14px 0 8px;
    margin: 6px 0 0;
    border-bottom: none;
    position: relative;
}
.kv-sec-label::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(201,162,75,.5), transparent);
}
.kv-sec-label:first-child { padding-top: 0; margin-top: 0; }

.kv-field { display: flex; flex-direction: column; position: relative; align-self: start; }
.kv-field label {
    font-size: .7rem; font-weight: 700;
    color: #475569; text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 7px;
    transition: color .15s;
}
.kv-field:focus-within label { color: var(--accent, #c9a24b); }

.kv-field input,
.kv-field select,
.kv-field textarea {
    background: #f8fafc;
    border: 1.5px solid #e3e7ed;
    border-radius: 10px;
    padding: 13px 15px;
    font-size: .95rem; color: var(--ink, #0f172a);
    transition: all .18s cubic-bezier(.4, 0, .2, 1);
    font-family: inherit;
    line-height: 1.3;
    width: 100%;
}
.kv-field input::placeholder,
.kv-field textarea::placeholder { color: #94a3b8; font-weight: 400; }
.kv-field input:hover,
.kv-field select:hover,
.kv-field textarea:hover {
    border-color: #cbd5e1; background: #fff;
}
.kv-field input:focus,
.kv-field select:focus,
.kv-field textarea:focus {
    outline: none; background: #fff;
    border-color: var(--accent, #c9a24b);
    box-shadow: 0 0 0 4px rgba(201,162,75,.12);
    transform: translateY(-1px);
}
.kv-field textarea { resize: none; min-height: 90px; }

/* Select custom arrow */
.kv-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='none' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' d='M2 4l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

/* Date input */
.kv-field input[type="date"] { cursor: pointer; }
.kv-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: .5;
    cursor: pointer;
    transition: opacity .15s;
}
.kv-field input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }

.kv-col-2 { grid-column: span 2; }
.kv-col-3 { grid-column: span 2; }
.kv-col-full { grid-column: 1 / -1; }

/* Chip button groups (replaces select for small option sets) */
.kv-chipset {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}
.kv-chip-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    background: #f8fafc;
    border: 2px solid #e3e7ed;
    border-radius: 12px;
    cursor: pointer;
    transition: all .18s cubic-bezier(.4, 0, .2, 1);
    user-select: none;
    text-align: center;
    min-height: 72px;
}
.kv-chip-btn:hover {
    border-color: var(--accent, #c9a24b);
    background: #fffbeb;
    transform: translateY(-1px);
}
.kv-chip-btn input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.kv-chip-btn .kv-chip-num {
    font-family: Manrope, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink, #0f172a);
    letter-spacing: -.01em;
    line-height: 1;
}
.kv-chip-btn .kv-chip-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b;
    margin-top: 5px;
    font-weight: 600;
}
.kv-chip-btn.active,
.kv-chip-btn:has(input:checked) {
    background: #0a0a0a;
    border-color: #0a0a0a;
    box-shadow: 0 6px 18px rgba(10,10,10,.25);
    transform: translateY(-2px);
}
.kv-chip-btn.active .kv-chip-num,
.kv-chip-btn:has(input:checked) .kv-chip-num { color: var(--accent, #c9a24b); }
.kv-chip-btn.active .kv-chip-lbl,
.kv-chip-btn:has(input:checked) .kv-chip-lbl { color: #94a3b8; }

/* Compact chip variant — used when 2 chip groups fit side-by-side in half width */
.kv-chipset-compact { grid-template-columns: repeat(4, 1fr); gap: 6px; }
.kv-chip-sm {
    min-height: 48px;
    padding: 10px 4px;
    border-width: 1.5px;
}
.kv-chip-sm .kv-chip-num { font-size: .92rem; font-weight: 700; }
.kv-chip-sm:hover { transform: translateY(-1px); }
.kv-chip-sm.active,
.kv-chip-sm:has(input:checked) {
    box-shadow: 0 4px 12px rgba(10,10,10,.2);
    transform: translateY(-1px);
}
@media (max-width: 520px) {
    .kv-chipset-compact { grid-template-columns: repeat(2, 1fr); }
}

/* intl-tel-input integration inside kv-field */
.kv-field .iti { width: 100%; }
.kv-field .iti input[type="tel"] {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e3e7ed;
    border-radius: 10px;
    padding: 13px 15px 13px 15px !important;
    font-size: .95rem;
    color: var(--ink, #0f172a);
    transition: all .18s cubic-bezier(.4, 0, .2, 1);
    font-family: inherit;
}
.kv-field .iti--separate-dial-code input[type="tel"] {
    padding-left: 92px !important;
}
.kv-field .iti input[type="tel"]:hover {
    background: #fff; border-color: #cbd5e1;
}
.kv-field .iti input[type="tel"]:focus {
    outline: none; background: #fff;
    border-color: var(--accent, #c9a24b);
    box-shadow: 0 0 0 4px rgba(201,162,75,.12);
    transform: translateY(-1px);
}
.kv-field .iti__selected-flag,
.kv-field .iti__selected-country {
    background: #fafbfc !important;
    border-right: 1.5px solid #e3e7ed !important;
    border-radius: 10px 0 0 10px !important;
    padding: 0 10px 0 12px !important;
}
.kv-field .iti__selected-flag:hover,
.kv-field .iti__selected-country:hover { background: #f1f5f9 !important; }
.kv-field .iti__country-list,
.kv-field .iti__dropdown-content {
    border-radius: 10px !important;
    box-shadow: 0 20px 40px rgba(15,23,42,.2) !important;
    border: 1px solid #e3e7ed !important;
    max-height: 280px !important;
}

/* Icon-prefixed modern inputs */
.kv-field.has-icon { position: relative; }
.kv-field.has-icon .kv-field-ic {
    position: absolute;
    left: 14px;
    bottom: 14px;
    color: #94a3b8;
    font-size: .98rem;
    transition: color .15s;
    z-index: 2;
    cursor: pointer;
    line-height: 1;
}
/* Indent ALL inputs inside a has-icon field, including flatpickr's altInput */
.kv-field.has-icon input,
.kv-field.has-icon select,
.kv-field.has-icon .flatpickr-input,
.kv-field.has-icon input.flatpickr-alt-input {
    padding-left: 42px !important;
}
.kv-field.has-icon:focus-within .kv-field-ic { color: var(--accent, #c9a24b); }
.kv-field.has-icon .kv-field-ic:hover { color: var(--accent, #c9a24b); }

/* Flatpickr altInput — make it look identical to our custom input style */
.kv-field input.flatpickr-alt-input,
.kv-field .flatpickr-input[readonly] {
    background: #f8fafc !important;
    border: 1.5px solid #e3e7ed !important;
    border-radius: 10px !important;
    padding: 13px 15px !important;
    font-size: .95rem !important;
    color: var(--ink, #0f172a) !important;
    cursor: pointer;
    transition: all .18s cubic-bezier(.4, 0, .2, 1);
}
.kv-field input.flatpickr-alt-input:hover,
.kv-field .flatpickr-input[readonly]:hover {
    background: #fff !important;
    border-color: #cbd5e1 !important;
}
.kv-field input.flatpickr-alt-input:focus,
.kv-field .flatpickr-input[readonly]:focus {
    background: #fff !important;
    border-color: var(--accent, #c9a24b) !important;
    box-shadow: 0 0 0 4px rgba(201,162,75,.12) !important;
    transform: translateY(-1px);
}

.kv-cat-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.kv-cat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f8fafc;
    border: 1.5px solid #e3e7ed;
    border-radius: 99px;
    padding: 8px 16px;
    font-size: .85rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all .15s cubic-bezier(.4, 0, .2, 1);
    user-select: none;
}
.kv-cat-chip:hover {
    border-color: var(--accent, #c9a24b);
    color: var(--ink, #0f172a);
    background: #fff;
    transform: translateY(-1px);
}
.kv-cat-chip input { display: none; }
.kv-cat-chip.checked,
.kv-cat-chip:has(input:checked) {
    background: #0a0a0a; border-color: #0a0a0a;
    color: #fff; font-weight: 600;
    box-shadow: 0 2px 6px rgba(10,10,10,.25);
}

.kv-kvkk {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 18px;
    margin-top: 8px;
    font-size: .88rem;
    color: #475569;
    cursor: pointer;
    background: #fafbfc;
    border: 1.5px solid #e3e7ed;
    border-radius: 10px;
    transition: all .15s;
    line-height: 1.5;
}
.kv-kvkk:hover { border-color: #cbd5e1; background: #fff; }
.kv-kvkk input {
    margin: 0;
    margin-top: 2px;
    width: 18px; height: 18px;
    accent-color: var(--accent, #c9a24b);
    cursor: pointer;
    flex-shrink: 0;
}
.kv-kvkk a {
    color: var(--ink, #0f172a);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent, #c9a24b);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.kv-kvkk a:hover { color: var(--accent, #c9a24b); }

.kv-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent, #c9a24b), #d9b45c);
    color: #0a0a0a;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    transition: all .2s cubic-bezier(.4, 0, .2, 1);
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(201,162,75,.3);
}
.kv-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201,162,75,.45);
    background: linear-gradient(135deg, #d9b45c, #c9a24b);
}
.kv-submit:active { transform: translateY(0); }
.kv-submit i { font-size: 1rem; }

/* ==================== Flatpickr brand theme ==================== */
.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(15,23,42,.25) !important;
    border: 1px solid #e3e7ed !important;
    font-family: Inter, system-ui, sans-serif !important;
    padding: 6px !important;
    z-index: 99999 !important;
    width: 320px !important;
    max-width: calc(100vw - 24px) !important;
}
.flatpickr-calendar.open {
    display: block !important;
    visibility: visible !important;
}
.flatpickr-innerContainer { overflow: visible !important; }
.flatpickr-days { width: 308px !important; }
.dayContainer { min-width: 308px !important; width: 308px !important; max-width: 308px !important; }
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after { border-bottom-color: #0f172a !important; }
.flatpickr-months {
    background: #0f172a;
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 8px 4px;
    margin: -6px -6px 0;
}
.flatpickr-months .flatpickr-month { color: #fff !important; }
.flatpickr-current-month,
.flatpickr-current-month .cur-year,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 700 !important;
}
.flatpickr-monthDropdown-months { color: #fff !important; background: #0f172a !important; }
.flatpickr-prev-month,
.flatpickr-next-month {
    color: #fff !important; fill: #fff !important;
}
.flatpickr-prev-month svg path,
.flatpickr-next-month svg path { fill: #fff !important; }
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover { color: var(--accent, #c9a24b) !important; }
.flatpickr-prev-month:hover svg path,
.flatpickr-next-month:hover svg path { fill: var(--accent, #c9a24b) !important; }

.flatpickr-weekdays { background: #0f172a; padding-bottom: 4px; margin-top: -6px; margin-left: -6px; margin-right: -6px; padding-left: 10px; padding-right: 10px; }
.flatpickr-weekday {
    color: #94a3b8 !important;
    font-weight: 600 !important;
    font-size: .72rem !important;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.dayContainer { padding: 8px 4px 4px !important; }
.flatpickr-day {
    border-radius: 8px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    transition: all .12s !important;
}
.flatpickr-day:hover {
    background: #fef3c7 !important;
    border-color: transparent !important;
    color: var(--ink, #0f172a) !important;
}
.flatpickr-day.today {
    border-color: var(--accent, #c9a24b) !important;
    color: var(--accent, #c9a24b) !important;
    font-weight: 700 !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #0f172a !important;
    border-color: #0f172a !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: #cbd5e1 !important; }
.flatpickr-day.disabled,
.flatpickr-day.flatpickr-disabled {
    color: #e2e8f0 !important;
    background: transparent !important;
}

.flatpickr-time {
    border-radius: 0 0 8px 8px !important;
    background: #f8fafc !important;
    border-top: 1px solid #e3e7ed !important;
    margin: 4px -6px -6px !important;
}
.flatpickr-time input { color: var(--ink, #0f172a) !important; font-weight: 600 !important; }
.flatpickr-time .flatpickr-time-separator { color: var(--ink, #0f172a) !important; }
.flatpickr-time .numInputWrapper:hover { background: #eef2f6 !important; }

.kv-bottom-cta {
    text-align: center; padding: 60px 0;
    background: linear-gradient(180deg, #fafbfc, #f4f5f7);
}
.kv-bottom-cta h2 {
    font-family: Manrope, sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: var(--ink, #0f172a);
    margin: 0 0 8px; letter-spacing: -.01em;
}
.kv-bottom-cta p { color: #64748b; font-size: .95rem; margin: 0; }

/* ==================== Homepage corporate promo strip ==================== */
.home-corporate-strip {
    background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
    color: #fff;
    padding: 20px 28px;
    border-radius: 12px;
    margin: 32px auto 0;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.home-corporate-strip .ic {
    width: 44px; height: 44px;
    background: var(--accent, #c9a24b); color: #0a0a0a;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.home-corporate-strip .text { flex: 1; }
.home-corporate-strip .text h4 {
    font-family: Manrope, sans-serif;
    font-size: 1.05rem; font-weight: 800;
    margin: 0 0 3px;
}
.home-corporate-strip .text p {
    margin: 0; color: #aab0bb;
    font-size: .85rem;
}
.home-corporate-strip .btn {
    background: var(--accent, #c9a24b); color: #0a0a0a;
    border: none; padding: .65rem 1.2rem;
    font-weight: 700; font-size: .88rem;
}
.home-corporate-strip .btn:hover { background: #d9b45c; color: #0a0a0a; }

/* Homepage dedicated corporate section */
.home-corporate-block {
    background: linear-gradient(140deg, #0a0a0a, #1e293b);
    color: #fff;
    border-radius: 16px;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.home-corporate-block::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 100% 0%, rgba(201,162,75,.18), transparent 65%);
    pointer-events: none;
}
.home-corporate-block .content { position: relative; z-index: 2; }
.home-corporate-block .chip {
    display: inline-block;
    font-size: .68rem; letter-spacing: .2em;
    color: var(--accent, #c9a24b); font-weight: 700;
    padding: 5px 12px;
    background: rgba(201,162,75,.15);
    border: 1px solid rgba(201,162,75,.3);
    border-radius: 99px;
    margin-bottom: 18px;
}
.home-corporate-block h2 {
    font-family: Manrope, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.home-corporate-block p {
    color: #aab0bb;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 480px;
}
.home-corporate-block ul {
    list-style: none; padding: 0; margin: 0 0 28px;
    columns: 2; column-gap: 24px;
}
.home-corporate-block ul li {
    padding: 5px 0;
    font-size: .9rem;
    display: flex; align-items: center; gap: 8px;
    color: #d6d8dc;
    break-inside: avoid;
}
.home-corporate-block ul li i { color: var(--accent, #c9a24b); font-size: .78rem; }
.home-corporate-block .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.home-corporate-block .actions .btn {
    padding: .85rem 1.5rem;
    font-weight: 700;
    font-size: .88rem;
}
.home-corporate-block .actions .btn-accent { background: var(--accent, #c9a24b); color: #0a0a0a; border: none; }
.home-corporate-block .actions .btn-accent:hover { background: #d9b45c; color: #0a0a0a; }
.home-corporate-block .actions .btn-outline-light { border: 1px solid rgba(255,255,255,.22); color: #fff; background: transparent; }
.home-corporate-block .actions .btn-outline-light:hover { background: rgba(255,255,255,.08); color: #fff; }

.home-corporate-block .visual {
    position: relative;
    z-index: 2;
    text-align: center;
}
.home-corporate-block .visual .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.home-corporate-block .visual .stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: left;
}
.home-corporate-block .visual .stat .n {
    font-family: Manrope, sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent, #c9a24b);
    letter-spacing: -.02em;
}
.home-corporate-block .visual .stat .l {
    color: #8b95a7;
    font-size: .78rem;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .kv-form-inner { grid-template-columns: 1fr; gap: 40px; }
    .kv-form-grid { grid-template-columns: 1fr; }
    .kv-col-2, .kv-col-3, .kv-col-full { grid-column: span 1; }
    .kv-chipset { grid-template-columns: repeat(2, 1fr); }
    .home-corporate-block { grid-template-columns: 1fr; gap: 24px; padding: 40px 28px; }
    .home-corporate-block ul { columns: 1; }
    .home-corporate-strip { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ==================================================================== */
/* Şubelerimiz (branches) — kart grid                                    */
/* ==================================================================== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.branch-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.branch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }

.branch-card .branch-head {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 14px; border-bottom: 1px solid var(--rule);
}
.branch-card .branch-head .ic {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.branch-card .branch-head h3 {
    font-family: Manrope, sans-serif;
    font-size: 1.05rem; font-weight: 800;
    color: var(--ink);
    margin: 0;
    letter-spacing: -.01em;
}

.branch-card .branch-row {
    display: flex; gap: 12px;
    align-items: flex-start;
}
.branch-card .branch-row > i {
    color: var(--accent-lo); font-size: .95rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.branch-card .branch-row .label {
    display: block;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 3px;
}
.branch-card .branch-row address {
    font-style: normal;
    font-size: .9rem; color: var(--ink); line-height: 1.45;
    margin: 0;
}
.branch-card .branch-row a {
    font-size: .95rem; color: var(--ink); font-weight: 600;
    text-decoration: none;
}
.branch-card .branch-row a:hover { color: var(--accent-lo); }

.branch-card .branch-actions {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px; border-top: 1px solid var(--rule);
}
.branch-card .branch-actions .btn {
    padding: .55rem 1rem;
    font-size: .85rem;
    flex: 1;
    min-width: 110px;
}

@media (max-width: 560px) {
    .branches-grid { grid-template-columns: 1fr; gap: 14px; }
    .branch-card { padding: 20px 18px 18px; }
}

/* ==================================================================== */
/* SSS — grup başlıkları + tabs                                          */
/* ==================================================================== */
.faq-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.faq-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    font-size: .9rem; font-weight: 600;
    transition: all .18s var(--ease);
    white-space: nowrap;
}
.faq-tab:hover {
    border-color: var(--chip, var(--accent));
    background: color-mix(in srgb, var(--chip, var(--accent)) 8%, white);
    transform: translateY(-1px);
}
.faq-tab i { color: var(--chip, var(--accent)); font-size: 1rem; }
.faq-tab .count {
    background: var(--paper-2);
    color: var(--mute);
    font-size: .72rem; font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.4;
}
.faq-tab:hover .count {
    background: var(--chip, var(--accent));
    color: #fff;
}

.faq-group {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}
.faq-group-head {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 22px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--grp-color) 12%, white), color-mix(in srgb, var(--grp-color) 2%, white));
    border: 1px solid color-mix(in srgb, var(--grp-color) 20%, white);
    border-radius: 14px;
    margin-bottom: 18px;
}
.faq-group-head .ic {
    width: 40px; height: 40px;
    background: var(--grp-color);
    color: #fff;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.faq-group-head h2 {
    font-family: Manrope, sans-serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--ink);
    margin: 0;
    letter-spacing: -.01em;
    flex: 1;
}
.faq-group-head .badge {
    background: var(--grp-color);
    color: #fff;
    font-size: .72rem; font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

/* Mevcut faq-item'ı biraz canlandır */
.faq-group .faq-item {
    border-left: 3px solid transparent;
    transition: border-color .2s, background .2s;
}
.faq-group .faq-item:hover {
    border-left-color: var(--grp-color);
}
.faq-group .faq-item.is-open {
    border-left-color: var(--grp-color);
    background: color-mix(in srgb, var(--grp-color) 3%, white);
}
.faq-group .faq-item.is-open .faq-q .caret { color: var(--grp-color); }

@media (max-width: 560px) {
    .faq-tabs { gap: 6px; }
    .faq-tab { padding: 8px 14px; font-size: .82rem; }
    .faq-group-head { padding: 12px 16px; gap: 10px; }
    .faq-group-head h2 { font-size: 1.05rem; }
    .faq-group-head .ic { width: 34px; height: 34px; font-size: .95rem; }
}

/* ==================================================================== */
/* Choices.js özelleştirme — lokasyon select'leri için                   */
/* ==================================================================== */
.booking-form .choices {
    margin: 0;
    width: 100%;
}
.booking-form .choices__inner {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 18px 0 0 !important;
    min-height: auto;
    font-weight: 800;
    font-size: 1.08rem;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -.005em;
    cursor: pointer;
}
.booking-form .choices__list--single {
    padding: 0;
}
.booking-form .choices[data-type*="select-one"]::after {
    right: 4px;
    border-color: var(--ink) transparent transparent;
    border-width: 5px 4px 0;
}
.booking-form .choices[data-type*="select-one"].is-open::after {
    border-color: transparent transparent var(--ink);
    border-width: 0 4px 5px;
    margin-top: -2px;
}
.booking-form .choices__list--dropdown,
.booking-form .choices__list[aria-expanded] {
    border: 1px solid var(--rule);
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(10,10,10,.18), 0 4px 10px rgba(10,10,10,.06);
    margin-top: 10px;
    min-width: 340px;
    max-height: 380px;
    overflow-y: auto;
    background: var(--paper);
    z-index: 100;
    padding: 6px;
}
.booking-form .choices__list--dropdown::before,
.booking-form .choices__list[aria-expanded]::before {
    content: 'OFİSLERİMİZ';
    display: block;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--accent-lo);
    padding: 10px 14px 8px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 4px;
}
.booking-form .choices__list--dropdown .choices__item,
.booking-form .choices__list[aria-expanded] .choices__item {
    padding: 12px 14px 12px 38px;
    font-size: .94rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 8px;
    position: relative;
    line-height: 1.3;
    cursor: pointer;
    transition: background .12s;
}
.booking-form .choices__list--dropdown .choices__item::before,
.booking-form .choices__list[aria-expanded] .choices__item::before {
    content: '';
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16' fill='%23c9a24b'%3E%3Cpath d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.booking-form .choices__list--dropdown .choices__item--selectable.is-highlighted,
.booking-form .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background: color-mix(in srgb, var(--accent) 14%, white);
    color: var(--ink);
}
.booking-form .choices__list--dropdown .choices__item.is-selected {
    background: linear-gradient(135deg, #0f172a, #0a0a0a);
    color: var(--accent);
}
.booking-form .choices__list--dropdown .choices__item.is-selected::before {
    filter: brightness(1.6);
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background: color-mix(in srgb, var(--accent) 14%, white);
}
