/* PlanB Rent a Car — Site Design System v1
   Brand colors: #DF3114 red, #0E0E0E black, white.
   Self-contained: no Bootstrap, no jQuery, no FA dependency for layout.
*/

/* ---------- Tokens ---------- */
:root {
  --brand: #DF3114;
  --brand-dark: #B82810;
  --brand-soft: rgba(223,49,20,.08);
  --ink-1000: #0E0E0E;
  --ink-900: #1a1a1a;
  --ink-700: #2a2a2a;
  --ink-500: #5A5A5A;
  --ink-400: #767676;
  --ink-300: #9a9a9a;
  --ink-200: #d4d4d4;
  --ink-100: #ececec;
  --ink-50:  #f6f6f6;
  --white:   #ffffff;
  --green:   #25D366;
  --green-dark: #128c7e;
  --success: #10b981;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.18);

  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --container-narrow: 880px;

  --t-xs: 12px;
  --t-sm: 14px;
  --t-base: 16px;
  --t-md: 18px;
  --t-lg: 20px;
  --t-xl: 24px;
  --t-2xl: 30px;
  --t-3xl: 38px;
  --t-4xl: 48px;
  --t-5xl: 64px;

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

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--ink-1000);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { background: var(--white); }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--ink-1000); }
h1 { font-size: clamp(40px, 5.6vw, var(--t-5xl)); }
h2 { font-size: clamp(30px, 4vw, var(--t-4xl)); }
h3 { font-size: clamp(22px, 2.4vw, var(--t-2xl)); }
h4 { font-size: var(--t-xl); }
h5 { font-size: var(--t-lg); }
h6 { font-size: var(--t-md); }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--s-9) 0; }
.section-sm { padding: var(--s-7) 0; }
.section-tight { padding: var(--s-6) 0; }
@media (max-width: 767px) {
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .section-head { margin-bottom: var(--s-8); }
  .section-head h2 { margin: 20px 0 16px; }
  .page-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 56px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-size: 15px; font-weight: 700; letter-spacing: .005em;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn-brand { background: var(--brand); color: var(--white); }
.btn-brand:hover { background: var(--brand-dark); }
.btn-dark { background: var(--ink-1000); color: var(--white); }
.btn-dark:hover { background: var(--ink-700); }
.btn-light { background: var(--white); color: var(--ink-1000); border-color: var(--ink-100); }
.btn-light:hover { background: var(--ink-50); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-outline-dark { background: transparent; color: var(--ink-1000); border-color: var(--ink-200); }
.btn-outline-dark:hover { background: var(--ink-50); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: inherit; }
.btn-ghost:hover { background: rgba(0,0,0,.05); }

/* ---------- Eyebrow / Pills ---------- */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  padding: 6px 14px; border: 1px solid rgba(223,49,20,.25); border-radius: var(--radius-pill);
  background: var(--brand-soft);
}
.eyebrow-light {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-pill);
  background: rgba(255,255,255,.05);
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--ink-1000);
  background: var(--ink-50); padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,14,14,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.site-header__logo img { height: 38px; width: auto; display: block; }
.site-nav { display: none; gap: 4px; align-items: center; }
.site-nav > .nav-item { position: relative; }
.site-nav > .nav-item > a, .site-nav > .nav-item > button {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer; font-family: inherit;
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: .005em;
  padding: 10px 12px; border-radius: var(--radius-xs);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.site-nav > .nav-item > a:hover, .site-nav > .nav-item > button:hover { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav > .nav-item:hover > a, .site-nav > .nav-item:focus-within > a { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav > .nav-item.has-dropdown > a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--brand); border-radius: 2px; opacity: 0; transform: scaleX(0); transition: opacity .15s, transform .2s; transform-origin: center; }
.site-nav > .nav-item.has-dropdown:hover > a::after, .site-nav > .nav-item.has-dropdown:focus-within > a::after { opacity: 1; transform: scaleX(1); }
.site-nav .caret { width: 12px; height: 12px; opacity: .85; transition: transform .25s ease; flex-shrink: 0; }
.site-nav > .nav-item:hover .caret, .site-nav > .nav-item:focus-within .caret { transform: rotate(180deg); opacity: 1; }

/* Flag toggle (EN/SR) */
.lang-flag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: var(--radius-xs);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  transition: background .15s, border-color .15s;
}
.lang-flag:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: var(--white); }
.lang-flag svg { width: 18px; height: 12px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.2); display: block; }

/* Megamenu panel */
.megapanel {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); color: var(--ink-1000);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  border: 1px solid var(--ink-100);
  padding: 24px; min-width: 320px;
  display: grid; gap: 24px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s, transform .18s ease;
  z-index: 1001;
}
.megapanel--3col { grid-template-columns: repeat(3, minmax(180px, 1fr)); min-width: 640px; }
.megapanel--4col { grid-template-columns: repeat(4, minmax(180px, 1fr)); min-width: 820px; }
.megapanel--right { left: auto; right: 0; }
.site-nav > .nav-item:hover .megapanel,
.site-nav > .nav-item:focus-within .megapanel { opacity: 1; visibility: visible; transform: translateY(0); }
.megapanel h6 {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-400); margin: 0 0 12px;
}
.megapanel ul { display: flex; flex-direction: column; gap: 2px; }
.megapanel ul li a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: var(--radius-xs);
  color: var(--ink-700); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: background .12s, color .12s;
}
.megapanel ul li a:hover { background: var(--ink-50); color: var(--ink-1000); }
.megapanel ul li a strong { font-weight: 700; color: var(--ink-1000); }
.megapanel ul li a small { color: var(--ink-400); font-size: 12px; margin-left: auto; }
.megapanel .panel-cta {
  grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--ink-100);
  display: flex; gap: 10px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.megapanel .panel-cta a { color: var(--brand); font-size: 14px; font-weight: 700; text-decoration: none; }
.megapanel .panel-cta a:hover { text-decoration: underline; }
.site-header__cta { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.85);
  text-decoration: none; padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xs);
  transition: background .15s, border-color .15s;
}
.lang-toggle:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
@media (min-width: 992px) {
  .site-nav { display: flex; }
}
.burger {
  display: inline-flex; flex-direction: column; gap: 5px; width: 28px; height: 28px;
  align-items: center; justify-content: center; cursor: pointer; background: none; border: 0;
}
.burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 992px) { .burger { display: none; } }

.mobile-drawer {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--ink-1000); padding: 16px 20px;
  transform: translateY(-110%); transition: transform .25s ease;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer > ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.mobile-drawer a { display: block; padding: 12px 8px; color: var(--white); font-size: 15px; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.04); }
.mobile-drawer .mobile-cta { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 32px; }
.mobile-drawer details { border-bottom: 1px solid rgba(255,255,255,.04); }
.mobile-drawer details summary {
  list-style: none; padding: 12px 8px; color: var(--white); font-size: 15px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.mobile-drawer details summary::-webkit-details-marker { display: none; }
.mobile-drawer details summary::after { content: "+"; color: var(--brand); font-size: 22px; transition: transform .2s; line-height: 1; }
.mobile-drawer details[open] summary::after { transform: rotate(45deg); }
.mobile-drawer details ul { padding: 4px 0 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.mobile-drawer details ul li a { padding: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); border: 0; }
.mobile-drawer details ul li a:hover { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(180deg, #050505 0%, #0E0E0E 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(223,49,20,.18), transparent 60%),
    radial-gradient(600px 300px at 15% 90%, rgba(223,49,20,.08), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 992px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero__title { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.05; color: var(--white); margin-bottom: 20px; }
.hero__title em { font-style: normal; color: var(--brand); position: relative; }
.hero__lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.78); max-width: 56ch; margin-bottom: 24px; }
.hero__lead strong { color: var(--white); }
.hero__usps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 0 0 28px; }
.hero__usps li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.hero__usps li::before {
  content: ""; flex: 0 0 18px; height: 18px; margin-top: 2px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center/contain no-repeat;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 10px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-pill); }
.hero__stars { color: #ffb400; font-size: 14px; letter-spacing: 1px; }
.hero__rating-text { font-size: 13px; color: rgba(255,255,255,.85); }

/* Hero booking card */
.book-card {
  background: var(--white); color: var(--ink-1000);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.book-card::after {
  content: ""; position: absolute; top: -12px; right: -12px; width: 80px; height: 80px;
  background: var(--brand); border-radius: var(--radius-pill); z-index: -1; opacity: .4; filter: blur(28px);
}
.book-card__title { font-size: 18px; margin-bottom: 4px; }
.book-card__sub { font-size: 13px; color: var(--ink-500); margin: 0 0 20px; }
.book-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.book-card__row--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--ink-1000);
  background: var(--ink-50); border: 1px solid transparent; border-radius: var(--radius-xs);
  transition: border-color .15s, background .15s;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; background: var(--white); border-color: var(--brand);
}
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23555'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.book-card__trust { font-size: 12px; color: var(--ink-500); margin-top: 14px; display: flex; flex-wrap: wrap; gap: 14px; }
.book-card__trust span { display: inline-flex; align-items: center; gap: 6px; }
.book-card__trust span::before { content: "✓"; color: var(--success); font-weight: 800; }

/* ---------- Google Reviews badge ---------- */
.google-reviews {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink-1000);
  transition: transform .15s, opacity .15s;
  max-width: 360px; margin: 0 auto;
  padding: 24px 32px;
}
.google-reviews:hover { transform: translateY(-2px); }
.google-reviews__stars {
  color: #FBBC04;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 1;
}
.google-reviews__meta {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 15px; color: var(--ink-500);
  flex-wrap: wrap; justify-content: center;
}
.google-reviews__rating {
  font-size: 22px; font-weight: 800; color: var(--ink-1000);
}
.google-wordmark {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -.01em;
}
.g-b { color: #4285F4; }
.g-r { color: #EA4335; }
.g-y { color: #FBBC04; }
.g-g { color: #34A853; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--white); border-bottom: 1px solid var(--ink-100);
  padding: 28px 0;
}
.stat-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
@media (min-width: 768px) { .stat-strip__grid { grid-template-columns: repeat(5, 1fr); } }
.stat { text-align: center; min-height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat__num { font-size: 32px; font-weight: 800; color: var(--ink-1000); letter-spacing: -.02em; line-height: 1; }
.stat__label { display: block; font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

/* ---------- Section heading ---------- */
.section-head { max-width: 760px; margin: 0 auto var(--s-7); text-align: center; }
.section-head--start { text-align: left; margin-left: 0; }
.section-head h2 { margin: 16px 0 12px; }
.section-head p { font-size: 17px; color: var(--ink-500); margin: 0; }

/* ---------- Fleet grid ---------- */
.fleet-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1100px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.car-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ink-100);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.car-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.car-card__img { aspect-ratio: 16 / 11; background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%); overflow: hidden; padding: 22px; display: flex; align-items: center; justify-content: center; }
.car-card__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.car-card:hover .car-card__img img { transform: scale(1.06); }
.car-card__body { padding: 24px; }
.car-card__name { font-size: 22px; }
.car-card__class { font-size: 14px; margin-bottom: 18px; }
.car-card__price { font-size: 26px; }
.car-card__cta { padding: 12px 18px; font-size: 14px; }
.car-card__spec { font-size: 13px; padding: 5px 12px; }
.car-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--success); color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 9px; border-radius: var(--radius-xs);
}
.car-card__badge--brand { background: var(--brand); }
.car-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.car-card__name { font-size: 19px; margin: 0 0 4px; }
.car-card__name a { color: inherit; text-decoration: none; }
.car-card__class { font-size: 13px; color: var(--ink-500); margin-bottom: 14px; }
.car-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.car-card__spec {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--ink-700);
  background: var(--ink-50); padding: 4px 10px; border-radius: var(--radius-xs);
}
.car-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--ink-100); }
.car-card__price { font-size: 22px; font-weight: 800; color: var(--ink-1000); }
.car-card__price small { font-size: 12px; font-weight: 600; color: var(--ink-500); }
.car-card__cta { font-size: 13px; font-weight: 700; color: var(--ink-1000); text-decoration: none; padding: 8px 14px; border-radius: var(--radius-xs); border: 1px solid var(--ink-200); transition: background .15s, color .15s, border-color .15s; }
.car-card__cta:hover { background: var(--ink-1000); color: var(--white); border-color: var(--ink-1000); }
.car-card--invite {
  background: linear-gradient(135deg, #0E0E0E 0%, #1f1f1f 60%, #2a2a2a 100%);
  border: 0; color: var(--white); align-items: center; justify-content: center; text-align: center;
  padding: 32px 20px; min-height: 320px;
}
.car-card--invite h3 { color: var(--white); margin-bottom: 10px; }
.car-card--invite p { color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 992px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.why-list { display: grid; grid-template-columns: 1fr; gap: 12px 20px; }
@media (min-width: 600px) { .why-list { grid-template-columns: 1fr 1fr; } }
.why-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-700); align-items: flex-start; }
.why-list li::before {
  content: ""; flex: 0 0 18px; height: 18px; margin-top: 2px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center/contain no-repeat;
}
.steps {
  background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 100%);
  color: var(--white); padding: 40px; border-radius: var(--radius-lg);
}
.steps h3 { color: var(--white); margin-bottom: 28px; }
.step { display: flex; gap: 16px; margin-bottom: 22px; }
.step:last-of-type { margin-bottom: 28px; }
.step__num {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.step strong { color: var(--white); display: block; margin-bottom: 4px; }
.step span { color: rgba(255,255,255,.7); font-size: 14px; }

/* ---------- Locations ---------- */
.loc-section { background: var(--ink-50); }
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-card {
  background: var(--white); padding: 22px; border-radius: var(--radius-md);
  text-decoration: none; color: var(--ink-1000); display: block;
  border: 1px solid var(--ink-100);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.loc-card:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-md); }
.loc-card__tag { font-size: 12px; font-weight: 800; color: var(--brand); letter-spacing: .04em; margin-bottom: 6px; display: inline-flex; align-items: center; gap: 6px; }
.loc-card__name { font-size: 16px; font-weight: 700; }
.loc-card__sub { font-size: 13px; color: var(--ink-500); margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 992px) { .faq-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.faq details { padding: 22px 0; border-bottom: 1px solid var(--ink-100); cursor: pointer; }
.faq details:first-of-type { border-top: 1px solid var(--ink-100); }
.faq summary {
  font-size: 17px; font-weight: 700; color: var(--ink-1000);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--brand); font-size: 24px; font-weight: 600;
  transition: transform .2s ease; line-height: 1; flex: 0 0 auto;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-answer { margin: 14px 0 0; color: var(--ink-500); font-size: 15px; line-height: 1.65; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--ink-1000); color: var(--white); padding: var(--s-9) 0; }
.cta-strip__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 992px) { .cta-strip__grid { grid-template-columns: 7fr 5fr; gap: 64px; } }
.cta-strip h2 { color: var(--white); }
.cta-strip__text { color: rgba(255,255,255,.75); font-size: 18px; margin: 0; }
.cta-strip__buttons { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-1000); color: rgba(255,255,255,.75);
  padding: var(--s-8) 0 var(--s-5);
}
.site-footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.site-footer__brand img { height: 42px; margin-bottom: 18px; }
.site-footer__brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); margin: 0 0 14px; }
.site-footer__brand .footer-tel { color: var(--white); font-weight: 700; font-size: 18px; text-decoration: none; }
.site-footer h6 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; transition: color .15s; }
.site-footer a:hover { color: var(--white); }
.site-footer__bottom {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.site-footer__bottom a { color: rgba(255,255,255,.7); }

/* ---------- Floating CTAs ---------- */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 990; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.float-btn:hover { transform: scale(1.06); }
.float-btn--wa { background: var(--green); animation: wapulse 2s infinite; }
.float-btn--phone { background: var(--brand); }
@keyframes wapulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 8px 24px rgba(0,0,0,.25); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,.25); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,.25); }
}

/* Hero with full-bleed background image (homepage) */
.hero.hero-with-image {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 160px) 0 160px;
  min-height: 92vh; display: flex; align-items: center;
  color: var(--white);
  isolation: isolate;
}
.hero.hero-with-image .hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero.hero-with-image .hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero.hero-with-image::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.85) 100%),
    radial-gradient(900px 500px at 25% 50%, rgba(0,0,0,.55), transparent 60%);
}
.hero-simple { max-width: 720px; }
.hero-simple__title { font-size: clamp(48px, 7vw, 84px); line-height: 1.02; color: var(--white); margin: 0 0 40px; letter-spacing: -.025em; font-weight: 800; }
.hero-simple__title em { font-style: normal; color: var(--brand); }
.hero-brand { font-style: normal; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.hero-brand__plan {
  background: linear-gradient(180deg, #ffffff 0%, #b5b5b5 55%, #8a8a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-brand__b { color: var(--brand); }
.hero-simple__sub { font-size: clamp(17px, 1.6vw, 21px); color: #ffffff; margin: 0 0 36px; line-height: 1.5; max-width: 56ch; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.hero-simple__scroll {
  display: inline-block; margin-top: 20px;
  font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none;
  letter-spacing: .04em; transition: color .15s;
}
.hero-simple__scroll:hover { color: var(--white); }
@media (max-width: 767px) {
  .hero.hero-with-image { min-height: 0; padding: calc(var(--header-h) + 80px) 0 200px; text-align: center; }
  .hero.hero-with-image .container { padding: 0 24px; }
  .hero-simple { max-width: 100%; margin: 0 auto; }
  .hero-simple__title { font-size: clamp(32px, 8.5vw, 44px); margin-bottom: 28px; }
  .hero-simple__sub { font-size: 15px; margin: 0 auto 24px; max-width: 38ch; line-height: 1.5; }
  .hero-simple__scroll { display: none; }
  .hero.hero-with-image::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.85) 100%);
  }
  .hero.hero-with-image .hero__bg img { object-position: 75% center; }
}

/* Big pulsing CTA for hero — "Pozovite odmah" */
.btn-pulse {
  position: relative; overflow: visible;
  background: var(--brand); color: var(--white);
  font-size: 18px; font-weight: 800; letter-spacing: .02em;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px rgba(223,49,20,.35), 0 0 0 0 rgba(223,49,20,.5);
  animation: brandpulse 2.2s ease-out infinite;
}
.btn-pulse:hover { background: var(--brand-dark); box-shadow: 0 12px 36px rgba(223,49,20,.45); animation-play-state: paused; }
.btn-pulse svg { width: 22px; height: 22px; }
@keyframes brandpulse {
  0% { box-shadow: 0 10px 28px rgba(223,49,20,.35), 0 0 0 0 rgba(223,49,20,.55); }
  70% { box-shadow: 0 10px 28px rgba(223,49,20,.35), 0 0 0 22px rgba(223,49,20,0); }
  100% { box-shadow: 0 10px 28px rgba(223,49,20,.35), 0 0 0 0 rgba(223,49,20,0); }
}

/* Booking widget — horizontal, sits overlapping the hero (like old template) */
.booking-wrap { position: relative; margin-top: -90px; z-index: 5; padding: 0 24px; }
@media (max-width: 991px) { .booking-wrap { margin-top: -40px; padding: 0 16px; } }

/* Sticky booking shrinks into a slim search bar at top once user scrolls past it */
.sticky-search {
  position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(14,14,14,.96); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  z-index: 990;
  transform: translateY(-110%); transition: transform .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.sticky-search.is-visible { transform: translateY(0); }
.sticky-search__inner {
  max-width: var(--container); margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sticky-search__text { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; flex: 1; min-width: 200px; }
.sticky-search__text strong { color: var(--brand); }
.sticky-search__cta {
  background: var(--brand); color: var(--white); font-weight: 800;
  padding: 10px 20px; border-radius: var(--radius-sm); text-decoration: none;
  font-size: 14px; letter-spacing: .01em; white-space: nowrap;
  transition: background .15s;
}
.sticky-search__cta:hover { background: var(--brand-dark); }
.sticky-search__phone {
  color: var(--white); text-decoration: none; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.sticky-search__phone svg { width: 14px; height: 14px; }
@media (max-width: 767px) { .sticky-search { display: none; } }

/* Sticky booking pill — appears at bottom of viewport on scroll */
.sticky-booking {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(120%);
  background: var(--ink-1000); color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 20px 48px rgba(0,0,0,.5), 0 4px 12px rgba(223,49,20,.3);
  border: 1px solid rgba(255,255,255,.1);
  z-index: 994;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  max-width: calc(100% - 40px);
}
.sticky-booking.is-visible { transform: translateX(-50%) translateY(0); }
.sticky-booking__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 10px 22px; white-space: nowrap;
}
.sticky-booking__hint { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--white); }
.sticky-booking__hint svg { color: var(--brand); }
.sticky-booking__btn {
  background: var(--brand); color: var(--white); text-decoration: none;
  padding: 12px 22px; border-radius: 999px; font-weight: 800; font-size: 14px;
  transition: background .15s;
}
.sticky-booking__btn:hover { background: var(--brand-dark); }
@media (max-width: 600px) {
  .sticky-booking { bottom: 88px; }
  .sticky-booking__inner { padding: 8px 8px 8px 14px; gap: 8px; }
  .sticky-booking__hint { font-size: 12px; }
  .sticky-booking__hint svg { display: none; }
  .sticky-booking__btn { padding: 10px 16px; font-size: 12px; }
}

/* Tighter spacing between hero CTA and booking widget */
.booking-wrap { margin-top: -130px !important; }
@media (max-width: 991px) { .booking-wrap { margin-top: -40px !important; padding: 0 12px !important; } }

/* Persistent bottom CTA bar — visible on all devices */
.bottom-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 995;
  background: rgba(14,14,14,.96); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 7px 10px; gap: 8px;
  box-shadow: 0 -10px 28px rgba(0,0,0,.3);
  display: flex;
}
.bottom-cta-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 800; text-decoration: none;
  letter-spacing: .01em; min-height: 42px;
  transition: background .15s, transform .1s;
}
.bottom-cta-bar a:active { transform: scale(.98); }
.bottom-cta-bar svg { width: 15px; height: 15px; flex-shrink: 0; }
.bottom-cta-bar .bcta-call { background: var(--brand); color: var(--white); }
.bottom-cta-bar .bcta-call:hover { background: var(--brand-dark); }
.bottom-cta-bar .bcta-book { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.15); }
.bottom-cta-bar .bcta-book:hover { background: rgba(255,255,255,.18); }
body { padding-bottom: 62px; }
@media (min-width: 768px) {
  .bottom-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* Sixt-style sticky search bar at top on scroll (desktop only) */
.sticky-top-search {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
  background: rgba(14,14,14,.98); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transform: translateY(-110%); transition: transform .3s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 36px rgba(0,0,0,.4);
}
.sticky-top-search.is-visible { transform: translateY(0); }
.sticky-top-search__inner {
  display: flex; align-items: center; gap: 10px;
  max-width: var(--container); margin: 0 auto;
  padding: 10px 24px;
}
.sticky-top-search__logo { flex: 0 0 auto; }
.sticky-top-search__logo img { height: 32px; width: auto; display: block; }
.sticky-top-search__fields {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0; flex: 1; align-items: stretch;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sticky-top-search__field {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,.06);
  min-width: 0;
}
.sticky-top-search__field label {
  font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .06em;
}
.sticky-top-search__field select,
.sticky-top-search__field input {
  background: transparent; border: 0;
  color: var(--white); font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 0; appearance: none; -webkit-appearance: none;
  width: 100%; cursor: pointer;
}
.sticky-top-search__field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%23ffffff' fill-opacity='.6'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 16px; }
.sticky-top-search__field select option { background: #1a1a1a; color: var(--white); }
.sticky-top-search__field input:focus, .sticky-top-search__field select:focus { outline: 0; }
.sticky-top-search__field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; cursor: pointer; padding: 0; }
.sticky-top-search__submit {
  background: var(--brand); color: var(--white); border: 0;
  padding: 0 24px; font-family: inherit; font-weight: 800; font-size: 14px;
  letter-spacing: .01em; cursor: pointer; transition: background .15s;
  white-space: nowrap;
}
.sticky-top-search__submit:hover { background: var(--brand-dark); }
@media (max-width: 991px) { .sticky-top-search { display: none; } }

/* Step-by-step booking form */
.booking-step { display: none; padding: 24px 28px; animation: bookStep .25s ease-out; }
@media (max-width: 575px) { .booking-step { padding: 18px 16px; } .booking-step__title { font-size: 16px !important; } }
.booking-step.is-active { display: block; }
@keyframes bookStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.booking-step__title { color: var(--white); font-size: 18px; font-weight: 800; margin: 0 0 18px; letter-spacing: -.01em; }
.booking-bar__inner--contact { grid-template-columns: 1fr; }
@media (min-width: 768px) { .booking-bar__inner--contact { grid-template-columns: 1fr 1fr 1fr; } }

/* Progress dots in top bar */
.booking-progress {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.booking-progress__dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  transition: all .2s ease;
}
.booking-progress__dot.is-active { background: var(--brand); color: var(--white); box-shadow: 0 0 0 3px rgba(223,49,20,.25); }
.booking-progress__dot.is-done { background: var(--brand-dark); color: var(--white); }
.booking-progress__line { width: 16px; height: 2px; background: rgba(255,255,255,.1); transition: background .2s; }
.booking-progress__line.is-done { background: var(--brand-dark); }
@media (max-width: 575px) { .booking-progress { display: none; } }

/* Booking actions row (Back / Next / Submit) */
.booking-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-top: 20px; margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.booking-actions__hint { color: rgba(255,255,255,.6); font-size: 13px; flex: 1; min-width: 200px; }
.booking-actions__hint strong { color: var(--brand); }
.booking-btn-next, .booking-btn-submit {
  background: var(--brand); color: var(--white); border: 0;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; font-weight: 800; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, transform .1s;
}
.booking-btn-next:hover, .booking-btn-submit:hover { background: var(--brand-dark); }
.booking-btn-next:active, .booking-btn-submit:active { transform: translateY(1px); }
.booking-btn-submit[disabled] { opacity: .6; pointer-events: none; }
.booking-btn-prev {
  background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15);
  padding: 13px 20px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .15s;
}
.booking-btn-prev:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

/* Vehicle picker (step 2) */
.booking-vehicles {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 600px) { .booking-vehicles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .booking-vehicles { grid-template-columns: 1fr 1fr 1fr; } }
.booking-veh {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 14px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; transition: all .15s;
  font-family: inherit; color: rgba(255,255,255,.85);
  text-align: center;
}
.booking-veh:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.25); color: var(--white); }
.booking-veh.is-selected { background: rgba(223,49,20,.12); border-color: var(--brand); color: var(--white); }
.booking-veh img { max-width: 130px; height: 60px; object-fit: contain; margin-bottom: 4px; }
.booking-veh__icon { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; font-size: 36px; color: var(--brand); margin-bottom: 4px; }
.booking-veh__name { font-size: 14px; font-weight: 800; color: inherit; }
.booking-veh__meta { font-size: 12px; color: rgba(255,255,255,.55); }
.booking-veh.is-selected .booking-veh__meta { color: rgba(255,255,255,.75); }
.booking-veh__specs { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-top: 8px; }
.booking-veh__specs span { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); padding: 2px 7px; border-radius: 999px; white-space: nowrap; line-height: 1.4; }
.booking-veh.is-selected .booking-veh__specs span { color: rgba(255,255,255,.9); background: rgba(223,49,20,.18); border-color: rgba(223,49,20,.3); }

/* Summary mini (step 3) */
.booking-summary-mini {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: 14px 18px;
  display: grid; grid-template-columns: 1fr; gap: 6px;
  margin-bottom: 18px; font-size: 13px;
}
.bsm-row { display: flex; justify-content: space-between; gap: 12px; }
.bsm-row span { color: rgba(255,255,255,.55); }
.bsm-row strong { color: var(--white); font-weight: 700; text-align: right; }

/* Addons */
.booking-addons { margin-bottom: 22px; }
.booking-addons__hint { color: rgba(255,255,255,.65); font-size: 13px; margin: 0 0 14px; }
.addon {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-xs);
  cursor: pointer; transition: background .15s;
  color: rgba(255,255,255,.85);
}
.addon:hover { background: rgba(255,255,255,.04); }
.addon input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.04);
  cursor: pointer; flex-shrink: 0; position: relative;
  transition: all .15s;
}
.addon input[type="checkbox"]:checked { background: var(--brand); border-color: var(--brand); }
.addon input[type="checkbox"]:checked::after {
  content: "✓"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; font-weight: 900;
}
.addon__name { flex: 1; font-size: 14px; font-weight: 600; }
.addon__price { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600; }

.booking-contact { display: grid; gap: 10px; margin-bottom: 18px; }
.booking-contact textarea {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  color: var(--white); border-radius: var(--radius-xs);
  padding: 11px 14px; font-family: inherit; font-size: 14px;
  resize: vertical; min-height: 60px;
}
.booking-contact textarea:focus { outline: 0; border-color: var(--brand); background: rgba(255,255,255,.06); }
.booking-contact textarea::placeholder { color: rgba(255,255,255,.4); }
.booking-fineprint { font-size: 12px; color: rgba(255,255,255,.5); margin: 12px 0 0; text-align: center; }

/* Success state */
.booking-success {
  padding: 60px 28px; text-align: center; color: var(--white);
}
.booking-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; margin-bottom: 18px;
}
.booking-success h3 { color: var(--white); font-size: 24px; margin: 0 0 10px; }
.booking-success p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 480px; margin: 0 auto 24px; }

/* Step-by-step inquiry flow */
.booking-bar { position: relative; }
.booking-progress {
  display: flex; align-items: center; gap: 4px; padding: 18px 28px 0;
  font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding-bottom: 14px;
}
.booking-progress__dot {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.5);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  transition: all .2s;
}
.booking-progress__dot.is-active { background: var(--brand); color: var(--white); box-shadow: 0 0 0 4px rgba(223,49,20,.2); }
.booking-progress__dot.is-done { background: rgba(223,49,20,.4); color: var(--white); }
.booking-progress__line { flex: 1; height: 2px; background: rgba(255,255,255,.08); margin: 0 4px; transition: background .2s; }
.booking-progress__line.is-done { background: var(--brand); }
.booking-progress__label { color: rgba(255,255,255,.85); font-weight: 700; font-size: 13px; margin-left: 8px; text-transform: uppercase; letter-spacing: .06em; }

.booking-step-pane {
  display: none; padding: 24px 28px 8px;
  flex-direction: column; gap: 18px;
  animation: stepFadeIn .25s ease-out;
}
.booking-step-pane.is-active { display: flex; }
@keyframes stepFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.booking-step-pane__title { color: var(--white); font-size: 18px; font-weight: 800; margin: 0; }
.booking-step-pane__sub { color: rgba(255,255,255,.65); font-size: 14px; margin: -10px 0 0; }

.booking-options { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 600px) { .booking-options { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .booking-options { grid-template-columns: repeat(3, 1fr); } }
.booking-option {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 16px 18px; cursor: pointer;
  transition: all .15s; color: rgba(255,255,255,.85);
  text-align: left;
}
.booking-option:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); color: var(--white); }
.booking-option.is-selected { background: rgba(223,49,20,.12); border-color: var(--brand); color: var(--white); }
.booking-option__icon { flex: 0 0 32px; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; }
.booking-option__icon svg { width: 22px; height: 22px; color: var(--brand); }
.booking-option__body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.booking-option__title { font-size: 14px; font-weight: 700; color: inherit; }
.booking-option__meta { font-size: 12px; color: rgba(255,255,255,.55); }
.booking-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

.booking-fields { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .booking-fields { grid-template-columns: 1fr 1fr; } }
.booking-fields .field label { color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.booking-fields .field input,
.booking-fields .field select,
.booking-fields .field textarea {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1); color: var(--white);
}
.booking-fields .field input:focus,
.booking-fields .field select:focus,
.booking-fields .field textarea:focus { border-color: var(--brand); background: rgba(255,255,255,.06); }
.booking-fields .field input::placeholder { color: rgba(255,255,255,.4); }

.booking-summary {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.booking-summary h4 { color: var(--white); font-size: 14px; font-weight: 800; margin: 0 0 10px; letter-spacing: .04em; text-transform: uppercase; }
.booking-summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: 13px; }
.booking-summary dt { color: rgba(255,255,255,.55); font-weight: 600; }
.booking-summary dd { color: var(--white); margin: 0; font-weight: 700; }

.booking-nav {
  display: flex; gap: 10px; align-items: center; justify-content: flex-end;
  padding: 14px 28px 22px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.booking-nav .booking-prev,
.booking-nav .booking-next,
.booking-nav .booking-submit-btn {
  font-family: inherit; font-size: 14px; font-weight: 800; letter-spacing: .01em;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 0; cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.booking-nav .booking-prev {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.15);
}
.booking-nav .booking-prev:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.booking-nav .booking-prev[disabled] { opacity: .3; pointer-events: none; }
.booking-nav .booking-next,
.booking-nav .booking-submit-btn { background: var(--brand); color: var(--white); }
.booking-nav .booking-next:hover,
.booking-nav .booking-submit-btn:hover { background: var(--brand-dark); }
.booking-nav .booking-submit-btn { padding: 12px 28px; }
.booking-nav__spacer { flex: 1; font-size: 12px; color: rgba(255,255,255,.45); }

/* Floating booking widget (appears on scroll) */
.float-booking {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%) translateX(120%); z-index: 988;
  background: var(--brand); color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.float-booking.is-visible { transform: translateY(-50%) translateX(0); }
.float-booking a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 12px; text-decoration: none; color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.float-booking a svg { width: 18px; height: 18px; transform: rotate(180deg); }
.float-booking a:hover { background: var(--brand-dark); border-radius: var(--radius-md); }
@media (max-width: 767px) { .float-booking { display: none; } }

/* Booking widget tabs — Dnevni / Mesečni / Mini Lease */
.booking-tabs {
  display: flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,.05); border-radius: 999px;
  flex: 0 0 auto;
}
.booking-tabs button {
  background: none; border: 0; color: rgba(255,255,255,.7);
  font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: .01em;
  padding: 8px 18px; border-radius: 999px;
  cursor: pointer; transition: all .15s ease; white-space: nowrap;
}
.booking-tabs button:hover { color: var(--white); }
.booking-tabs button.is-active {
  background: var(--brand); color: var(--white);
  box-shadow: 0 4px 12px rgba(223,49,20,.3);
}
@media (max-width: 575px) { .booking-tabs { flex-wrap: wrap; } .booking-tabs button { font-size: 12px; padding: 7px 14px; } }
.booking-bar {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 6px 16px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.06);
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.booking-bar__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.booking-tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: .005em;
  padding: 10px 22px; border-radius: 999px;
  text-decoration: none; cursor: default;
}
.booking-help {
  font-size: 13px; color: rgba(255,255,255,.65);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color .15s;
}
.booking-help:hover { color: var(--white); }
.booking-help svg { width: 16px; height: 16px; }
.booking-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0;
  padding: 0;
  border-radius: 0;
}
.booking-field {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  min-width: 0;
}
.booking-field:last-of-type { border-right: 0; }
.booking-field label {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .005em;
}
.booking-field select, .booking-field input {
  background: transparent; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xs);
  color: var(--white); font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 11px 14px;
  width: 100%; appearance: none; -webkit-appearance: none;
  transition: border-color .15s, background .15s;
}
.booking-field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23ffffff' fill-opacity='.6'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.booking-field select option { background: #1a1a1a; color: var(--white); }
.booking-field input:focus, .booking-field select:focus { outline: 0; border-color: var(--brand); background: rgba(255,255,255,.04); }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; cursor: pointer; }
.booking-submit { padding: 22px 24px; display: flex; align-items: center; }
.booking-submit button {
  background: var(--brand); color: var(--white);
  font-size: 15px; font-weight: 800; letter-spacing: .01em;
  padding: 14px 28px; border: 0; border-radius: var(--radius-sm);
  cursor: pointer; transition: background .15s, transform .15s;
  white-space: nowrap; height: 100%; min-height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
}
.booking-submit button:hover { background: var(--brand-dark); }
.booking-submit button:active { transform: translateY(1px); }

.booking-bar__status {
  background: #0f0f0f;
  padding: 14px 28px;
  font-size: 13px; color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.04);
}
.booking-bar__status strong { color: var(--brand); font-weight: 700; }

@media (max-width: 991px) {
  .booking-bar__inner { grid-template-columns: 1fr 1fr; }
  .booking-field:nth-child(2n) { border-right: 0; }
  .booking-field { border-bottom: 1px solid rgba(255,255,255,.06); }
  .booking-submit { grid-column: 1 / -1; padding: 18px 24px; }
  .booking-submit button { width: 100%; }
}
@media (max-width: 575px) {
  .booking-bar__inner { grid-template-columns: 1fr; }
  .booking-field { border-right: 0; }
  .booking-bar__top { padding: 16px 20px; }
}

/* Banner cards — HIT PONUDA style */
.hit-section { background: var(--ink-1000); color: var(--white); padding: var(--s-9) 0; }
.hit-section .section-head h2 { color: var(--white); }
.hit-section .section-head p { color: rgba(255,255,255,.65); }
.hit-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .hit-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.hit-card {
  position: relative; min-height: 360px; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink-900) center/cover no-repeat;
  isolation: isolate;
}
.hit-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.85) 100%);
}
.hit-card__body { position: relative; z-index: 1; padding: 32px; }
.hit-card__title { font-size: 24px; color: var(--white); margin: 0 0 6px; line-height: 1.15; }
.hit-card__price { color: var(--brand); font-weight: 800; font-size: 32px; }
.hit-card__price small { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; margin-left: 6px; }
.hit-card__notes { color: rgba(255,255,255,.75); font-size: 13px; margin: 14px 0 18px; }
.hit-card__notes p { margin: 0; }
.hit-card .btn { background: var(--white); color: var(--ink-1000); font-weight: 700; }
.hit-card .btn:hover { background: var(--brand); color: var(--white); }

/* Map section */
.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; background: var(--ink-100); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Improved stat strip — desktop + mobile */
.stat-strip { background: var(--white); border-bottom: 1px solid var(--ink-100); padding: 36px 0; }
.stat-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
@media (min-width: 600px) { .stat-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .stat-strip__grid { grid-template-columns: repeat(5, 1fr); gap: 24px; } }
.stat { text-align: center; padding: 6px 8px; border-right: 1px solid var(--ink-100); }
.stat:last-child { border-right: 0; }
@media (max-width: 991px) { .stat { border-right: 0; } }
.stat__num { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--ink-1000); letter-spacing: -.02em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--brand); }
.stat__label { display: block; font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; font-weight: 700; }

/* FAQ cards grid — Europcar/Sixt style */
.faq-cards-section { background: var(--ink-50); padding: var(--s-9) 0; }
.faq-cards-section .section-head { max-width: 880px; margin: 0 auto var(--s-6); }
.faq-cards { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-card {
  background: var(--white); border: 1px solid var(--ink-100);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.faq-card[open], .faq-card:hover { border-color: var(--brand); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.faq-card > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-size: 16px; font-weight: 700; color: var(--ink-1000); line-height: 1.4;
}
.faq-card > summary::-webkit-details-marker { display: none; }
.faq-card > summary::after {
  content: ""; flex: 0 0 24px; width: 24px; height: 24px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.5 7l5 5-5 5'/></svg>") center/16px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.5 7l5 5-5 5'/></svg>") center/16px no-repeat;
  transition: transform .25s ease;
}
.faq-card[open] > summary::after { transform: rotate(90deg); }
.faq-card .faq-card__body { padding: 0 24px 22px; color: var(--ink-500); font-size: 15px; line-height: 1.65; }
.faq-card .faq-card__body strong { color: var(--ink-1000); }
.faq-card .faq-card__body a { color: var(--brand); font-weight: 700; text-decoration: none; }
.faq-card .faq-card__body a:hover { text-decoration: underline; }

/* ---------- Sixt-style polish: bold typography + premium animations ---------- */
.section h2 { font-weight: 900; letter-spacing: -.025em; }
.section-head h2 { letter-spacing: -.025em; }
.car-card { transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .2s ease; }
.car-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.12); border-color: var(--brand); }
.car-card__img { transition: filter .25s ease; }
.car-card:hover .car-card__img img { transform: scale(1.04); }
.car-card__img img { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.car-card__cta { transition: background .15s, color .15s, border-color .15s, transform .15s; }
.car-card:hover .car-card__cta { background: var(--brand); color: var(--white); border-color: var(--brand); }
.hit-card { transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease; }
.hit-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,.4); }
.loc-card { transition: all .25s cubic-bezier(.2,.8,.2,1); }
.loc-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(0,0,0,.1); }

/* Subtle scroll-aware header (gets more solid on scroll) */
.site-header.is-scrolled { background: rgba(14,14,14,.98); border-bottom-color: rgba(255,255,255,.1); }

/* Sticky mobile CTA bar — visible on phones below 768px, fixed at bottom */
.mobile-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 995;
  background: rgba(14,14,14,.96); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 12px; gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.3);
}
.mobile-cta-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 800; text-decoration: none;
  letter-spacing: .02em; min-height: 48px;
  transition: background .15s, transform .15s;
}
.mobile-cta-bar a:active { transform: scale(.97); }
.mobile-cta-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta-bar .mcta-call { background: var(--brand); color: var(--white); }
.mobile-cta-bar .mcta-call:hover { background: var(--brand-dark); }
.mobile-cta-bar .mcta-book { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.15); }
.mobile-cta-bar .mcta-wa { background: var(--green); color: var(--white); }
@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
  .float-actions { bottom: 92px; }
}

/* Persistent "RENT A CAR" call CTA (desktop floater above phone) */
.rent-floater {
  position: fixed; right: 18px; bottom: 88px; z-index: 989;
  background: var(--brand); color: var(--white);
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
  padding: 12px 18px 12px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 10px 28px rgba(223,49,20,.4), 0 0 0 0 rgba(223,49,20,.5);
  animation: brandpulse 2.2s ease-out infinite;
  transition: background .15s;
}
.rent-floater:hover { background: var(--brand-dark); animation-play-state: paused; }
.rent-floater svg { width: 18px; height: 18px; }
@media (max-width: 767px) { .rent-floater { display: none; } }

/* Firme / Mini Lease section */
.firme-section { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); color: var(--white); padding: var(--s-9) 0; position: relative; overflow: hidden; }
.firme-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 75% 50%, rgba(223,49,20,.15), transparent 60%); z-index: 0; }
.firme-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 992px) { .firme-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.firme-section h2 { color: var(--white); font-size: clamp(32px, 4vw, 52px); margin: 14px 0 20px; }
.firme-section .eyebrow-light { background: rgba(223,49,20,.15); color: var(--brand); border-color: rgba(223,49,20,.35); }
.firme-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 24px 0 28px; }
.firme-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.firme-feature::before { content: "✓"; color: var(--brand); font-weight: 800; font-size: 16px; }
.firme-card-pricing {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  padding: 28px; border-radius: var(--radius-lg); backdrop-filter: blur(8px);
}
.firme-card-pricing h3 { color: var(--white); margin: 0 0 8px; font-size: 18px; }
.firme-tier { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.firme-tier:last-of-type { border-bottom: 0; }
.firme-tier__period { font-size: 14px; color: rgba(255,255,255,.7); }
.firme-tier__price { font-size: 20px; font-weight: 800; color: var(--brand); }
.firme-tier__price small { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 500; margin-left: 4px; }
.firme-cta-row { display: flex; gap: 10px; margin-top: 8px; align-items: stretch; flex-wrap: wrap; }
.firme-cta-row .btn { flex: 1 1 200px; text-align: center; justify-content: center; padding-left: 14px; padding-right: 14px; min-width: 0; }
@media (max-width: 575px) {
  .firme-section { padding: 56px 0; overflow-x: hidden; }
  .firme-grid { gap: 28px; }
  .firme-section h2 { font-size: 26px; margin: 10px 0 14px; }
  .firme-section .container > .firme-grid > div > p { font-size: 15px; }
  .firme-features { grid-template-columns: 1fr; gap: 8px 14px; margin: 18px 0 20px; }
  .firme-feature { font-size: 13.5px; }
  .firme-card-pricing { padding: 20px; }
  .firme-card-pricing h3 { font-size: 16px; }
  .firme-cta-row { flex-direction: column; gap: 8px; }
  .firme-cta-row .btn { flex: none; width: 100%; font-size: 14px; padding: 12px 14px; }
}

/* ---------- Utility ---------- */
.aeo-answer { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.85); }
.text-center { text-align: center; }
.muted { color: var(--ink-500); }
.mt-6 { margin-top: var(--s-6); }
.mb-0 { margin-bottom: 0; }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- Page header for inner pages ---------- */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: linear-gradient(180deg, #050505 0%, #0E0E0E 100%);
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(34px, 4.6vw, 52px); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 18px; margin-top: 12px; max-width: 64ch; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ========================================================================
   BOOKING WIDGET TWEAKS — keep dark form, center CTA, fullscreen on steps 2/3
   ======================================================================== */

/* Lift the dark card up over hero for prominence */
.booking-wrap { margin-top: -110px !important; padding: 0 24px; z-index: 10; }
@media (max-width: 991px) { .booking-wrap { margin-top: -50px !important; padding: 0 14px; } }

/* Center the action button row in every step (CTA centered, hint above) */
.booking-actions {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  gap: 14px !important;
}
.booking-actions__hint {
  flex: none !important;
  text-align: center;
  min-width: 0 !important;
}
.booking-btn-next, .booking-btn-submit {
  min-width: 280px;
  justify-content: center;
  padding: 16px 36px !important;
  font-size: 15px !important;
}
.booking-btn-prev { min-width: 140px; justify-content: center; }
/* When both Prev + Next visible (steps 2/3), put them on same row centered */
.booking-step[data-step="2"] .booking-actions,
.booking-step[data-step="3"] .booking-actions {
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 12px !important;
}

/* ===== Sticky top search — MUCH BIGGER, Sixt-style ===== */
.sticky-top-search {
  background: rgba(14,14,14,.98);
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 44px rgba(0,0,0,.5);
}
.sticky-top-search__inner {
  padding: 14px 24px !important;
  gap: 16px !important;
}
.sticky-top-search__logo img { height: 40px !important; }
.sticky-top-search__fields {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 14px !important;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr auto !important;
}
.sticky-top-search__field {
  padding: 14px 20px !important;
  gap: 4px !important;
}
.sticky-top-search__field label {
  font-size: 11px !important;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55) !important;
}
.sticky-top-search__field select,
.sticky-top-search__field input {
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 2px 0 !important;
}
.sticky-top-search__submit {
  padding: 0 32px !important;
  font-size: 15px !important;
  border-radius: 0 !important;
  letter-spacing: .015em;
  min-width: 160px;
}

/* ===== Fullscreen booking mode (active on steps 2 & 3) ===== */
body.booking-fullscreen { overflow: hidden; }
body.booking-fullscreen .site-header,
body.booking-fullscreen .sticky-top-search,
body.booking-fullscreen .bottom-cta-bar,
body.booking-fullscreen main > section,
body.booking-fullscreen .site-footer,
body.booking-fullscreen .sticky-booking { display: none !important; }
body.booking-fullscreen .booking-wrap {
  position: fixed !important;
  inset: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 9999 !important;
  background: linear-gradient(180deg, #050505 0%, #0E0E0E 100%);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto;
}
body.booking-fullscreen .booking-bar {
  margin: 24px auto !important;
  max-width: 1080px;
  width: calc(100% - 32px);
  max-height: none;
}
@media (max-width: 768px) {
  body.booking-fullscreen .booking-bar { margin: 12px auto !important; }
}

/* Close X in fullscreen mode */
.booking-close {
  display: none;
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: var(--white); font-size: 18px; cursor: pointer;
  align-items: center; justify-content: center;
  z-index: 20; transition: background .15s, transform .15s;
}
.booking-close:hover { background: rgba(255,255,255,.18); transform: scale(1.05); }
body.booking-fullscreen .booking-close { display: inline-flex; }
/* Add right padding to the top bar in fullscreen so tabs don't collide with the X */
body.booking-fullscreen .booking-bar__top { padding-right: 70px !important; }
@media (max-width: 575px) {
  body.booking-fullscreen .booking-bar__top { padding-right: 60px !important; }
  .booking-close { top: 10px; right: 10px; width: 36px; height: 36px; }
}


/* ========================================================================
   END booking widget tweaks
   ======================================================================== */

/* Center the progress dots in the booking top bar — use 3-column grid:
   [tabs left] [dots centered] [empty right] */
.booking-bar__top {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.booking-tabs { justify-self: start; }
.booking-progress {
  justify-self: center !important;
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .booking-bar__top { grid-template-columns: 1fr; gap: 12px; justify-items: center; }
  .booking-tabs { justify-self: center; flex-wrap: wrap; justify-content: center; }
  .booking-progress { justify-self: center !important; justify-content: center; width: 100%; }
}

/* Center the stat-strip on desktop — 4 columns (not 5), constrained width */
@media (min-width: 992px) {
  .stat-strip__grid {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 980px;
    margin: 0 auto;
    gap: 32px !important;
  }
}

/* Bigger vehicle images in booking form step 2 */
.booking-veh {
  padding: 20px 16px 16px !important;
  gap: 10px !important;
  min-height: 200px;
  justify-content: flex-start;
}
.booking-veh img {
  max-width: 200px !important;
  width: 100% !important;
  height: 110px !important;
  object-fit: contain !important;
  margin-bottom: 6px !important;
}
.booking-veh__icon {
  width: 110px !important;
  height: 110px !important;
  font-size: 60px !important;
  margin-bottom: 6px !important;
}
.booking-veh__name { font-size: 15px !important; font-weight: 800; }
.booking-veh__meta { font-size: 12.5px !important; }
.booking-vehicles { gap: 14px !important; }
@media (max-width: 575px) {
  .booking-veh { padding: 16px 14px 14px !important; min-height: 170px; }
  .booking-veh img { height: 90px !important; max-width: 170px !important; }
  .booking-veh__icon { width: 90px !important; height: 90px !important; font-size: 48px !important; }
}
