/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary palette: Blue / White / Crimson */
  --blue:        #1554d6;          /* deeper, richer royal blue */
  --blue-bright: #2d72ff;          /* highlight blue for gradients */
  --blue-dark:   #0a3a9c;
  --blue-soft:   rgba(21, 84, 214, 0.10);
  --navy:        #08214d;          /* deeper navy for premium feel */
  --navy-deep:   #04122e;          /* near-black navy for hero, footer */

  --red:         #c1121f;          /* deep crimson — premium, not alarmy */
  --red-dark:    #8b0a14;
  --red-soft:    rgba(193, 18, 31, 0.10);
  --red-glow:    rgba(193, 18, 31, 0.32);

  --gold:        #d4af37;          /* luxury hairline accent (use sparingly) */

  --text:        #0b1f3f;
  --muted:       #5a6b85;
  --border:      #e2eaf6;
  --soft-bg:     #f5f8fd;
  --soft-bg-2:   #eef3fb;

  /* Secondary accents (used sparingly) */
  --green:       #20b26b;
  --orange:      #ff9f1c;
  --yellow:      #f5c518;

  /* Typography */
  --font-display: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Premium shadows */
  --shadow-sm:   0 2px 6px rgba(8, 33, 77, 0.06);
  --shadow-md:   0 8px 24px rgba(8, 33, 77, 0.10);
  --shadow-lg:   0 18px 48px rgba(8, 33, 77, 0.18);
  --shadow-xl:   0 28px 70px rgba(8, 33, 77, 0.22);
  --shadow-blue: 0 14px 36px rgba(21, 84, 214, 0.32);
  --shadow-red:  0 14px 32px rgba(193, 18, 31, 0.32);
}

/* ===== CONTAINER OVERRIDE ===== */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1380px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-h2,
.section-eyebrow,
.cta-banner .cta-title,
.cta-banner__title,
.booking-card__title,
.car-name,
.step-title,
.why-title,
.faq-question,
.ins-name {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.utility-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35) 50%, transparent);
}

.utility-bar a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 22px;
  transition: color 0.18s ease;
}

.utility-bar a:hover {
  color: #fff;
}

.utility-bar .right-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-bar .lang-sel {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #b8cce8;
}

.utility-bar .lang-sel:hover {
  color: #fff;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(8, 33, 77, 0.06);
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-text-block {
  line-height: 1.1;
}

.logo-text-block .logo-elite {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-text-block .logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
  letter-spacing: -0.005em;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav a.active {
  color: var(--blue);
}

.site-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff !important;
  border-radius: 999px;
  padding: 11px 22px !important;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: 0;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(21, 84, 214, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.06);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ===== HERO ===== */
.hero-section {
  /* Mobile-first: portrait/square crop. WebP first, JPG fallback via image-set(). */
  background: url('/assets/img/naslovna-mob.jpg') center center / cover no-repeat;
  background-image: image-set(
    url('/assets/img/naslovna-mob.webp') type('image/webp'),
    url('/assets/img/naslovna-mob.jpg')  type('image/jpeg')
  );
  min-height: 720px;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section {
    background-image: url('/assets/img/naslovna-desk.jpg');
    background-image: image-set(
      url('/assets/img/naslovna-desk.webp') type('image/webp'),
      url('/assets/img/naslovna-desk.jpg')  type('image/jpeg')
    );
    min-height: 760px;
    padding: 80px 0 60px;
  }
}

/* Hero overlay — samo dovoljno tamno za čitljivost teksta lijevo */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(4, 18, 46, 0.62) 0%, rgba(4, 18, 46, 0.35) 35%, rgba(4, 18, 46, 0.10) 65%, rgba(4, 18, 46, 0.05) 100%),
    linear-gradient(180deg, rgba(4, 18, 46, 0.10) 0%, rgba(4, 18, 46, 0) 40%, rgba(4, 18, 46, 0.30) 100%);
  z-index: 1;
}

.hero-section::after { display: none; }

/* monogram & badge tag uklonjeni — slika je dovoljno bogata */

.hero-section > .container-xl {
  position: relative;
  z-index: 2;
}

/* Mountain overlay vise nije potreban */
.hero-mountain {
  display: none;
}

/* Hero Google review kartica (lijeva strana, ispod chips) */
.hero-google-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  margin-top: 4px;
}

.hero-google-card .hgc-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Slova Google idu inline (G o o g l e) */
.hero-google-card .hgc-logo > span:not(.hgc-reviews-label) {
  display: inline;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.5px;
}

.hero-google-card .hgc-reviews-label {
  display: block;
  font-size: 9px;
  color: #6b7890;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-google-card .hgc-divider {
  width: 1px;
  align-self: stretch;
  background: #e2e8f0;
  margin: 2px 0;
}

.hero-google-card .hgc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.hero-google-card .hgc-stars {
  color: #f5b400;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-google-card .hgc-score {
  font-size: 13px;
  color: #0b1f3f;
  font-weight: 500;
  margin-top: 3px;
}

.hero-google-card .hgc-score strong {
  font-size: 17px;
  font-weight: 800;
  color: #042b5c;
}

.hero-google-card .hgc-count {
  display: block;
  font-size: 11px;
  color: #6b7890;
  margin-top: 2px;
}

/* Forma desno — gornji margin nula da ne dupla razmak */
.hero-section .booking-card {
  margin-top: 0;
}

/* Hero tekst — premium tipografija, bogati kontrast na fotki */
.hero-section .hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero-section .hero-headline .line1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  display: block;
}

.hero-section .hero-headline .line2 {
  display: block;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-section .hero-subtext {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  max-width: 480px;
  margin-bottom: 28px;
}

/* Trust chips — premium glassmorphism */
.hero-section .trust-chip {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.hero-section .trust-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.hero-section .trust-chip svg {
  stroke: #fff !important;
  fill: #fff !important;
}

.trusted-badge {
  position: absolute;
  bottom: 30px;
  right: 3%;
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.trusted-badge .badge-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 1px;
}

.trusted-badge .badge-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.trusted-badge .badge-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.hero-headline {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-headline .line1 {
  color: var(--navy);
  display: block;
}

.hero-headline .line2 {
  color: var(--blue);
  display: block;
}

.hero-subtext {
  color: #3a5070;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 440px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

/* ===== BOOKING FORM ===== */
.booking-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(4, 18, 46, 0.45),
    0 4px 14px rgba(4, 18, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  padding: 28px 28px 26px;
  max-width: 540px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Tanka plava→crvena linija na vrhu */
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 50%, var(--red) 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Glass mode: bijeli tekst u formi */
.booking-card .booking-card__title { color: #fff; }
.booking-card .booking-card__lock {
  background: rgba(32, 178, 107, 0.18);
  color: #d8f5e6;
  border: 1px solid rgba(32, 178, 107, 0.38);
}
.booking-card .form-label-sm { color: rgba(255, 255, 255, 0.78); }
.booking-card .booking-tabs {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.booking-card .booking-tab { color: rgba(255, 255, 255, 0.68); }
.booking-card .booking-tab:hover { color: #fff; }
.booking-card .booking-tab.active {
  color: var(--navy-deep);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.booking-card .form-input-group {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
}
.booking-card .form-input-group:hover { border-color: rgba(255, 255, 255, 0.85); }
.booking-card .form-input-group:focus-within {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}
/* Flatpickr altInput dobija klasu .form-control → globalni .form-control:focus
   ring (!important) bi inače obojio polje plavo. Suzbij ga unutar booking-card. */
.booking-card .form-input-group .form-control:focus,
.booking-card .form-input-group input:focus,
.booking-card .form-input-group select:focus {
  border-color: transparent !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

/* ── pickadate (date + time): brand accents on the default theme ──────────
   The picker root is rendered in <body> (container:'body' in JS) so it escapes
   the booking-card's backdrop-filter containing block and centers over the
   whole screen like a proper modal. Here we just tint the default theme to the
   Elite blue. */
.picker__box {
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(8, 22, 51, 0.45);
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: var(--blue) !important;
  color: #fff !important;
}
.picker__day--highlighted {
  border-color: var(--blue) !important;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  color: var(--blue);
}
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  color: var(--blue);
  background: rgba(45, 114, 255, 0.12);
}
.booking-card .free-cancel {
  color: rgba(255, 255, 255, 0.85);
}
.booking-card .age-surcharge-note {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.92);
}

.booking-tabs {
  display: flex;
  gap: 6px;
  background: var(--soft-bg);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 22px;
}

.booking-tab {
  flex: 1;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}

.booking-tab:hover { color: var(--text); }

.booking-tab.active {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 33, 77, 0.08);
  font-weight: 700;
}

.form-label-sm {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.form-input-group {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  height: 50px;
  box-sizing: border-box;
}

.form-input-group:hover {
  border-color: #c2d1e8;
}

.form-input-group:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.form-input-group select,
.form-input-group input {
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  flex: 1;
  height: 100%;
  line-height: 44px;
  padding: 0;
  margin: 0;
}

.form-input-group select option {
  font-weight: 400;
}

.form-input-group svg {
  color: var(--muted);
  flex-shrink: 0;
}

.driver-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.driver-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--blue);
  border-radius: 24px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
  transform: translateX(20px);
}

.toggle-slider.off {
  background: #ccc;
}

.toggle-slider.off::before {
  transform: translateX(0);
}

.btn-search {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-search:hover {
  background: var(--blue-dark);
}

.free-cancel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
  justify-content: center;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 30px 0;
  background: #fff;
}

.proof-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(4, 43, 92, 0.06);
  padding: 28px 32px;
}

.divider-v {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 24px;
}

.proof-stars {
  color: var(--yellow);
  font-size: 18px;
}

.proof-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.proof-meta {
  font-size: 11px;
  color: var(--muted);
}

.proof-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.review-snippet {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 170px;
}

.review-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}

/* ===== SECTION HELPERS ===== */
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-header .view-all {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.section-header .view-all:hover {
  gap: 10px;
}

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 90px 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(21, 84, 214, 0.06) 0%, transparent 60%),
    var(--soft-bg);
  position: relative;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(21, 84, 214, 0.18);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.25s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.06);
}

.why-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== STEPS ===== */
.steps-section {
  padding: 70px 0;
  background: #fff;
}

.step-card {
  background: var(--soft-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  flex: 1;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon {
  margin-bottom: 14px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.step-arrow {
  color: var(--blue);
  font-size: 28px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ===== CAR CARDS ===== */
.cars-section {
  padding: 90px 0 100px;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
}

.car-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: rgba(21, 84, 214, 0.30);
}

.car-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.badge-blue {
  background: #e0eaff;
  color: var(--blue);
}

.badge-green {
  background: #d4f5e5;
  color: #15804d;
}

.badge-orange {
  background: #fff0d4;
  color: #b45309;
}

.badge-purple {
  background: #ede9fe;
  color: #6d28d9;
}

.badge-premium {
  background: #fef3c7;
  color: #92400e;
}

.badge-red {
  background: #fee2e2;
  color: #b91c1c;
}

.car-img-block {
  height: 160px;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(21, 84, 214, 0.16) 0%, transparent 70%),
    linear-gradient(180deg, #f5f8fd 0%, #e1ebfa 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* When a real photo is set as the block background, drop the inset padding so
   the image bleeds edge-to-edge as a proper cover image. */
.car-img-block.has-photo {
  padding: 0;
}

.car-img-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 84, 214, 0.18), transparent);
  z-index: 1;
}

.car-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-img-block .car-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.car-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}

.car-specs {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.car-specs span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.car-price {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  margin-top: auto;
}

.car-price strong {
  font-size: 20px;
  color: var(--text);
  font-weight: 800;
}

.car-price-crossed {
  text-decoration: line-through;
  color: var(--muted);
}

.car-price-discount {
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
}

.btn-view {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-view:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* ===== VEHICLE LISTING PAGE ===== */
.vehicles-page {
  padding: 40px 0 60px;
  background: var(--soft-bg);
  min-height: 100vh;
}

.vozila-count {
  font-size: 13px;
  color: var(--muted);
}

.vozila-count strong {
  color: var(--text);
}

.vehicles-grid .vehicle-col {
  display: flex;
}

.vehicle-col.hidden {
  display: none !important;
}

.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-results.visible {
  display: block;
}

/* ── Filter & Sort bar (Good Choice pattern) ── */
.gc-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
  flex-wrap: wrap;
}

.gc-pills-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.gc-pills-wrap::-webkit-scrollbar {
  display: none;
}

.gc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  padding: 9px 16px;
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}
.gc-pill svg { color: var(--muted); transition: color .2s ease; }

.gc-pill:hover {
  border-color: rgba(21, 84, 214, 0.32);
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21, 84, 214, 0.12);
}
.gc-pill:hover svg { color: var(--blue); }

.gc-pill.active,
.gc-pill.active:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.32);
}
.gc-pill.active svg { color: #fff; }

.gc-pill .gc-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: rgba(11, 99, 246, 0.10);
  color: var(--blue);
  border-radius: 999px;
}
.gc-pill.active .gc-pill-count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.gc-filter-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.gc-sort-btn {
  display: inline-flex;
  align-items: center;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}

.gc-sort-btn:hover {
  background: var(--blue-dark);
}

.gc-sort-menu {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 0.4rem;
  min-width: 200px;
  overflow: hidden;
}

.gc-sort-menu .dropdown-item {
  border-radius: 8px;
  font-size: 0.85rem;
}

.gc-sort-menu .dropdown-item.active,
.gc-sort-menu .dropdown-item:active {
  background: #e0eaff;
  color: var(--blue);
}

.gc-filter-btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.gc-filter-btn:hover,
.gc-filter-btn.has-filters {
  background: var(--blue);
  color: #fff;
}

.gc-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
}
.gc-filter-btn.has-filters .gc-filter-count {
  background: #fff;
  color: var(--blue);
}

@media (max-width: 575px) {
  .gc-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .gc-pills-wrap {
    padding-bottom: 4px;
  }

  .gc-filter-actions {
    justify-content: flex-start;
  }
}

/* Vehicle card extended */
.car-restriction {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #856404;
}

.car-discount-tag {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

/* Filter button in controls bar */


/* Filter offcanvas */
.filter-offcanvas {
  width: 320px !important;
}

.filter-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}

.filter-offcanvas .offcanvas-body {
  padding: 20px;
  overflow-y: auto;
}

.offcanvas-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.fo-group {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.fo-group:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.fo-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.fo-group-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.fo-group-meta {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--soft-bg);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

/* ── Dual-thumb price range slider ────────────────────────────────────── */
.fo-range {
  position: relative;
  padding: 4px 8px 4px;
  margin-top: 4px;
}

.fo-range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.fo-range-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  background: var(--soft-bg);
  padding: 6px 12px;
  border-radius: 8px;
  min-width: 70px;
  text-align: center;
}
.fo-range-divider {
  color: var(--muted);
  font-weight: 700;
}

.fo-range-track {
  position: relative;
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin: 0 8px;
}
.fo-range-fill {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--blue);
  border-radius: 999px;
}

.fo-range-input {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: calc(100% - 16px);
  margin: 0 8px;
  height: 24px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  /* approximate vertical alignment with the track */
  transform: translateY(0px);
}
.fo-range-input--min { z-index: 3; }
.fo-range-input--max { z-index: 4; }

/* WebKit thumb */
.fo-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 2px 8px rgba(11, 99, 246, 0.30);
  cursor: grab;
  margin-top: -7px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fo-range-input::-webkit-slider-thumb:hover { transform: scale(1.12); }
.fo-range-input::-webkit-slider-thumb:active {
  cursor: grabbing;
  box-shadow: 0 0 0 6px rgba(11, 99, 246, 0.18), 0 2px 8px rgba(11, 99, 246, 0.30);
}
.fo-range-input::-webkit-slider-runnable-track {
  background: transparent;
  height: 4px;
}

/* Firefox thumb */
.fo-range-input::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 2px 8px rgba(11, 99, 246, 0.30);
  cursor: grab;
}
.fo-range-input::-moz-range-thumb:active {
  cursor: grabbing;
  box-shadow: 0 0 0 6px rgba(11, 99, 246, 0.18), 0 2px 8px rgba(11, 99, 246, 0.30);
}
.fo-range-input::-moz-range-track { background: transparent; height: 4px; }

.fo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fo-pills--inline {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.fo-pill {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.15s;
  user-select: none;
}

.fo-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.fo-pill.active {
  border-color: var(--blue);
  background: #e0eaff;
  color: var(--blue);
  font-weight: 600;
}

.fo-apply-btn {
  flex: 1;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.fo-apply-btn:hover {
  background: var(--blue-dark);
}

.fo-reset-btn {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s;
}

.fo-reset-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 575px) {
  .filter-offcanvas {
    width: 100vw !important;
  }
}

/* ===== BOOKING PROGRESS BAR ===== */
.booking-progress {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.bs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.bs-item.active {
  color: var(--blue);
}

.bs-item.done {
  color: var(--green);
}

.bs-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.bs-item.active .bs-num {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.bs-item.done .bs-num {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.bs-arrow {
  color: var(--border);
  margin: 0 12px;
  font-size: 16px;
}

/* ===== BOOKING NAV (minimal header for booking flow) ===== */
.booking-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(4, 43, 92, 0.06);
}

.booking-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bn-steps {
  display: flex;
  align-items: center;
}

.bn-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.bn-step.active {
  color: var(--blue);
}

.bn-step.done {
  color: var(--green);
}

.bn-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.bn-step.active .bn-step-num {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.bn-step.done .bn-step-num {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.bn-step-line {
  width: 36px;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  flex-shrink: 0;
}

.bn-step-line.done {
  background: var(--green);
}

.bn-home {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.bn-home:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* ===== BOOKING SUMMARY BAR ===== */
.booking-bar {
  background: var(--navy);
  color: #fff;
  height: 62px;
  position: sticky;
  top: 56px;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bb-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.bb-cols {
  display: flex;
  align-items: center;
  margin-right: auto;   /* compress to natural width, push right side to edge */
  min-width: 0;
  gap: 2px;
}

.bb-col {
  padding: 0 11px;
  min-width: 0;
  flex: 0 1 auto;       /* natural width — no stretching */
}

/* Vehicle column: thumbnail + text side by side */
.bb-col--vehicle {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  flex: 0 1 auto;
}

.bb-col--vehicle .bb-col-text {
  min-width: 0;
  flex: 1;
}

.bb-vehicle-thumb {
  width: 46px;
  height: 32px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 2px;
}

.bb-vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bb-vehicle-thumb svg {
  width: 100%;
  height: auto;
  max-height: 28px;
}

.bb-col-label {
  font-size: 8.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
}

.bb-col-main {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.bb-col-sub {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  line-height: 1.2;
}

.bb-arrow {
  color: rgba(255, 255, 255, 0.32);
  font-size: 13px;
  flex-shrink: 0;
  padding: 0 1px;
}

.bb-col-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  margin: 0 3px;
}

.bb-mobile-info {
  flex: 1;
  min-width: 0;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-price {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.bb-cart-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}

.bb-cart-link:hover {
  color: #fff;
}

.bb-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  padding: 0 24px;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.bb-continue-btn:hover {
  background: #c1121f;
  color: #fff !important;
}

.bb-continue-btn.w-100 {
  padding: 14px 24px;
  border-radius: 8px;
  justify-content: center;
}

.bb-modify-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 18px;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  flex-shrink: 0;
  transition: color 0.15s;
}

.bb-modify-btn:hover {
  color: #fff;
}

/* Cart offcanvas */
.cart-offcanvas {
  background: #fff;
  color: var(--text);
  width: 440px !important;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}

.cart-offcanvas .offcanvas-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.cart-offcanvas .btn-close-white {
  filter: none;
  opacity: .5;
}

.cart-offcanvas .btn-close-white:hover {
  opacity: 1;
}

.co-vehicle {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--soft-bg);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.co-vehicle-thumb {
  width: 72px;
  height: 48px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.co-vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.co-vehicle-thumb svg {
  width: 100%;
  height: auto;
  max-height: 36px;
}

/* Order summary on page-rezervacija — vehicle header */
.summary-vehicle {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, var(--soft-bg) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 18px;
  overflow: hidden;
}

.summary-vehicle-thumb {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 22px;
}

.summary-vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}

.summary-vehicle:hover .summary-vehicle-thumb img {
  transform: scale(1.04);
}

.summary-vehicle-thumb svg {
  width: 60%;
  max-width: 180px;
  height: auto;
}

.summary-vehicle-info {
  padding: 14px 16px 16px;
  text-align: center;
}

.summary-vehicle-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.summary-vehicle-group {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.co-car-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.co-or-similar {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.co-car-group {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.co-dates {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 4px;
}

.co-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.co-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.co-sep {
  border-color: var(--border);
  margin: 14px 0;
}

.co-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.co-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.co-line-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.co-line-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.co-line-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.co-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 8px;
}

.co-total-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--muted);
  text-transform: uppercase;
}

.co-total-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.co-deposit-note {
  font-size: 11px;
  color: var(--muted);
}

/* ===== VEHICLE CARD (redesigned) ===== */
.car-img-block {
  height: 195px;
}
/* Taller image tile on desktop so the cars read better */
@media (min-width: 992px) {
  .car-img-block {
    height: 240px;
  }
}

.car-class-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(8, 33, 77, 0.10);
}

.car-deal-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(193, 18, 31, 0.36);
}

.car-age-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.car-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin-bottom: 2px;
}

.car-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.car-spec-pill {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.car-spec-pill svg {
  color: var(--blue);
}

.car-price-block {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 10px;
}

.car-price-days {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 2px;
}

.car-price-big {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
}

.car-price-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.car-price-was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 600;
}

.btn-select-car {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: 100%;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin-top: auto;
}

.btn-select-car:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.06);
}

/* ===== INSURANCE ===== */
.insurance-section {
  padding: 90px 0;
  background: #fff;
}

.ins-card {
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 24px 20px;
  height: 100%;
  position: relative;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.ins-card:hover {
  border-color: #93b4f5;
  box-shadow: 0 4px 20px rgba(11, 99, 246, 0.10);
}

.ins-card.selected {
  border-color: var(--blue);
  background: #f0f6ff;
  box-shadow: 0 8px 30px rgba(11, 99, 246, 0.15);
}

.ins-card.featured {
  border-color: var(--blue);
}

.ins-most-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.ins-radio {
  display: none;
}

.ins-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.ins-price-line {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.ins-price-line strong {
  font-size: 18px;
  color: var(--text);
  font-weight: 800;
}

.ins-excess-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.ins-excess-box {
  flex: 1;
  background: var(--soft-bg);
  border-radius: 8px;
  padding: 8px 10px;
}

.ins-excess-box .exc-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ins-excess-box .exc-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.ins-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 13px;
}

.ins-feature.included {
  color: var(--text);
}

.ins-feature.excluded {
  color: var(--muted);
}

.ins-feature svg.chk {
  color: var(--blue);
  flex-shrink: 0;
}

.ins-feature svg.x {
  color: #ccc;
  flex-shrink: 0;
}

.ins-selected-mark {
  position: absolute;
  top: 14px;
  right: 14px;
}

.ins-selected-mark svg {
  color: var(--blue);
}

.ins-moreinfo-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

/* ===== EXTRAS ===== */
.card-border-blue {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.15s, background 0.15s;
}

.extra-card.selected {
  border-color: var(--blue);
  background: #f0f6ff;
}

.card-border-blue .card-body {
  gap: 16px;
}

.btn-circle-minus,
.btn-circle-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  line-height: 1;
  flex-shrink: 0;
}

.btn-circle-minus:hover,
.btn-circle-plus:hover {
  opacity: 0.85;
}

.btn-circle-plus:disabled,
.btn-circle-minus:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== CHECKOUT ===== */
.checkout-section {
  padding: 56px 0 96px;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.03) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    var(--soft-bg);
  min-height: 80vh;
}

.checkout-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
}

.checkout-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.form-group-lg label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.form-group-lg input,
.form-group-lg select,
.form-group-lg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}

.form-group-lg input:focus,
.form-group-lg select:focus,
.form-group-lg textarea:focus {
  border-color: var(--blue);
}

.form-group-lg input.error,
.form-group-lg select.error,
.form-group-lg input.is-invalid,
.form-group-lg select.is-invalid,
.form-group-lg textarea.is-invalid {
  border-color: #dc3545;
}

.error-msg {
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}

.error-msg.visible {
  display: block;
}

.form-group-lg .error-msg {
  margin-top: 4px;
}

.order-summary {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  position: sticky;
  top: 140px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.summary-line:last-child {
  border-bottom: none;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  border-top: 2px solid var(--border);
  margin-top: 8px;
}

.summary-total .price {
  font-size: 22px;
  color: var(--blue);
}

.btn-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--blue-dark);
}

.btn-submit:disabled {
  background: #93b4f5;
  cursor: default;
}

.price-change-warn {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #856404;
  display: none;
  margin-bottom: 16px;
}

.price-change-warn.visible {
  display: block;
}

/* ===== CONFIRMATION PAGE ===== */
.confirm-section {
  padding: 60px 0;
  background: var(--soft-bg);
  min-height: 80vh;
}

.confirm-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d4f5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.confirm-booking-no {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
}

.confirm-detail-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.confirm-detail-row:last-child {
  border-bottom: none;
}

.confirm-detail-row svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.confirm-detail-row .label {
  color: var(--muted);
  font-size: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 0;
  background: var(--soft-bg);
  min-height: 80vh;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
}

/* ===== INSURANCE LANDING ===== */
.ins-assist-card {
  background: #042b5c;
  color: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ins-assist-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.ins-assist-desc {
  font-size: 13px;
  color: #a0bcd8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ins-assist-link {
  color: #7eb3f5;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ===== DELIVERY SECTION ===== */
.delivery-section {
  padding: 70px 0;
  background: var(--soft-bg);
}

.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.delivery-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.delivery-list li:last-child {
  border-bottom: none;
}

.delivery-list li svg {
  color: var(--blue);
  flex-shrink: 0;
}

.delivery-img {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, #4a8fc8 0%, #2060a0 40%, #5a8060 70%, #3d6040 100%);
  position: relative;
}

.delivery-img::after {
  content: '✈';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.15;
  color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.testi-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 28px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -18px;
  right: 12px;
  font-size: 110px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--blue-soft);
  line-height: 1;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 84, 214, 0.18);
}

.testi-stars {
  color: #f5b400;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
}

.testi-quote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
}

.testi-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 90px 0;
  background: var(--soft-bg);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(21, 84, 214, 0.22);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(21, 84, 214, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
  letter-spacing: -0.005em;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-chevron {
  transition: transform 0.25s;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    radial-gradient(60% 80% at 80% 100%, rgba(193, 18, 31, 0.32) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 0%, rgba(45, 114, 255, 0.28) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue-dark) 100%);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.cta-banner .cta-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cta-banner .cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  line-height: 1.6;
}

.btn-cta-white {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-cta-white:hover {
  background: #0752d6;
  color: #fff;
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  letter-spacing: 0.01em;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-1px);
}

.cta-trust-chips {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a0c4f0;
  font-size: 13px;
}

/* ===== FOOTER ===== */
.site-footer {
  background:
    radial-gradient(60% 50% at 80% 100%, rgba(193, 18, 31, 0.16) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 0%, rgba(45, 114, 255, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.62);
  padding: 70px 0 30px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.40) 50%, transparent);
}

.footer-logo .logo-elite {
  color: #fff;
}

.footer-logo .logo-sub {
  color: #5a7a9a;
}

.footer-brand-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 200px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9bbe;
  transition: background 0.15s;
  cursor: pointer;
}

.footer-social-icon {
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.85);
}

.footer-social-icon:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.40);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--red));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.18s ease, padding-left 0.18s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  margin-bottom: 12px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-contact-item svg {
  color: var(--blue-bright);
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.10);
  margin: 36px 0 22px;
}

.footer-bottom {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== GOOGLE / TP LOGOS ===== */
.google-logo {
  color: #4285f4;
  font-weight: 800;
  font-size: 18px;
}

.tp-green {
  color: #00b67a;
}

/* ===== ALERTS / TOASTS ===== */
.alert-success {
  background: #d4f5e5;
  border: 1px solid #20b26b;
  color: #0d6639;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}

.alert-error {
  background: #fee2e2;
  border: 1px solid #dc3545;
  color: #b91c1c;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===== SPINNER ===== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== NEXT BUTTON ===== */
.btn-next {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-next:hover {
  background: var(--blue-dark);
  color: #fff;
}

.btn-back {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-back:hover {
  border-color: var(--text);
  color: var(--text);
  background: var(--soft-bg);
}

/* Mobile menu always hidden by default — shown only via .open class */
.mobile-menu {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-mountain {
    width: 100%;
    clip-path: none;
    opacity: 0.15;
  }

  .booking-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 26px;
  }

  .cta-banner .cta-title {
    font-size: 26px;
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(4, 43, 92, 0.95);
    z-index: 200;
    padding: 80px 30px 30px;
    display: none;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .bs-label {
    display: none;
  }

  .step-arrow {
    display: none;
  }

  .step-card {
    margin-bottom: 12px;
  }

  /* Booking nav: hide step labels on small screens */
  .bn-step-label {
    display: none;
  }

  .bn-step-line {
    width: 20px;
    margin: 0 4px;
  }

  /* Booking summary bar: fixed to bottom on mobile */
  .booking-bar {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    z-index: 95;
    height: 58px;
  }

  .booking-page {
    padding-bottom: 66px;
  }

  .bb-price {
    font-size: 22px;
  }

  .bb-price-block {
    padding: 0 12px;
  }

  .bb-continue-btn {
    padding: 0 18px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .proof-card {
    padding: 20px;
  }

  .divider-v {
    display: none !important;
  }

  .cart-offcanvas {
    width: 100vw !important;
  }
}

/* ===== ELITE OVERRIDES (Marija edits) ===== */

/* Booking-flow: stepper fixed na vrhu + booking-bar odmah ispod */
.booking-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

body.booking-flow {
  padding-top: 57px; /* tačno visina stepper navbara: 36px logo + 2×10px padding + 1px border */
}

body.booking-flow .booking-bar {
  position: sticky;
  top: 57px;
  z-index: 1020;
  margin-top: 0;
}

@media (max-width: 767px) {
  body.booking-flow {
    padding-top: 102px;
    padding-bottom: 70px;
  }
  body.booking-flow .booking-bar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1020;
  }

  /* Mobilni booking-nav: logo+home u prvom redu, stepper u novi red */
  .booking-nav {
    padding: 10px 0 12px;
  }
  .booking-nav-inner {
    flex-wrap: wrap;
    align-items: center;
  }
  .booking-nav-inner .logo-mark {
    order: 1;
  }
  .booking-nav-inner .bn-home {
    order: 2;
  }
  .bn-steps {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
  .bn-step {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
  }
  .bn-step-label {
    display: block;
    font-size: 10.5px;
    line-height: 1.1;
  }
  .bn-step-line {
    flex: 1 1 auto;
    width: auto;
    min-width: 14px;
    margin: 11px 4px 0;
    align-self: flex-start;
  }
}

/* Mobile/tablet: bez bb-cols, cijena+Korpa lijevo a Continue desno */
@media (max-width: 991.98px) {
  .booking-bar .bb-price-block {
    flex: 1 1 auto;
    align-items: flex-start;
    border-left: 0;
    padding-left: 18px;
  }
}

/* Slike auta — contain + padding, manje vozilo u card-u */
.car-img-block {
  padding: 10px 14px;
}

/* Bočni padding na stranici sa vozilima (ne lijepi cards na ivice) */
.vozila-section {
  padding-top: 48px;
  padding-bottom: 96px;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.03) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    #f5f8fd;
}

.vozila-section > .container-xl,
.vozila-section .gc-filter-bar {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 992px) {
  .vozila-section > .container-xl {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Booking flow generalno — više vazduha između sekcija */
body.booking-flow main > section {
  padding-top: 56px;
  padding-bottom: 72px;
}

body.booking-flow main > section:last-child {
  padding-bottom: 96px;
}

/* Insurance page koristi .container-xl direktno bez <section> */
body.booking-flow main > .container-xl {
  padding-top: 56px;
  padding-bottom: 72px;
}

.insurance-page-wrap,
.checkout-page-wrap {
  padding-top: 72px !important;
  padding-bottom: 96px !important;
}

.insurance-page-head,
.checkout-page-head {
  margin-bottom: 40px;
}

.insurance-page-title,
.checkout-page-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.insurance-page-sub,
.checkout-page-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 767.98px) {
  .insurance-page-wrap,
  .checkout-page-wrap {
    padding-top: 48px !important;
    padding-bottom: 72px !important;
  }

  /* Insurance cards full-width na mobilnoj */
  .insurance-page-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .insurance-page-wrap > .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 12px;
    margin-left: 0;
    margin-right: 0;
  }
  .insurance-page-wrap .row > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }
  .insurance-page-wrap .ins-card {
    width: 100%;
    padding: 20px 16px;
  }
}

/* Checkout (rezervacija) — uža forma + razmak do korpe */
@media (min-width: 992px) {
  .checkout-page-row > .col-lg-8 { flex: 0 0 62%; max-width: 62%; }
  .checkout-page-row > .col-lg-4 { flex: 0 0 34%; max-width: 34%; margin-left: 4%; }
}

body.booking-flow .gc-filter-bar {
  padding-top: 8px;
  padding-bottom: 28px;
  margin-bottom: 12px;
}

.car-img-block img,
.car-img-block .car-photo {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.car-img-block .car-svg-placeholder {
  max-width: 60%;
  height: auto;
}

/* =====================================================================
   SHARED SECTION HELPERS  (koriste se i na About i ostalim stranicama)
   ===================================================================== */
.section-pad {
  padding: 88px 0;
}
@media (max-width: 991.98px) {
  .section-pad { padding: 64px 0; }
}
@media (max-width: 575.98px) {
  .section-pad { padding: 48px 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 6px 14px;
  background: var(--blue-soft);
  border-radius: 999px;
}
.section-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
}

.section-h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.section-h2--inverted { color: #fff; }

.section-sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 44px;
  font-weight: 400;
}
.section-sub--inverted { color: rgba(255,255,255,.78); }

.section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 14px;
}

/* Scroll reveal (CSS-only, tranzicije bez AOS-a) */
.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* Buttons (shared) */
.btn-wa,
.btn-light,
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover {
  background: #1fbf5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.36);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(4, 43, 92, 0.18);
}
.btn-light:hover {
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(4, 43, 92, 0.24);
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */

/* ---- HERO ---- */
.about-hero {
  position: relative;
  min-height: clamp(420px, 64vh, 620px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  animation: aboutHeroZoom 14s ease-out forwards;
}
@keyframes aboutHeroZoom {
  to { transform: scale(1); }
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(11,99,246,0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(4,43,92,0.55) 0%, rgba(4,43,92,0.85) 100%);
  z-index: -1;
}
.about-hero__content {
  position: relative;
  padding: 96px 0 72px;
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 22px;
  color: #fff;
}
.about-badge svg { color: #fff; }
.about-badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-hero__title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.about-hero__subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.92);
}
.about-hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.about-hero__chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.about-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.about-hero__scroll span {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: aboutHeroScroll 1.6s ease-in-out infinite;
}
@keyframes aboutHeroScroll {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}
@media (max-width: 575.98px) {
  .about-hero__scroll { display: none; }
}

/* ---- STORY ---- */
.about-story {
  background: #fff;
}
.about-story__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(4, 43, 92, 0.18);
}
.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.about-story__media:hover img { transform: scale(1.04); }
.about-story__media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(4, 43, 92, 0.18);
}
.about-story__media-shape {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(11,99,246,0.35) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.about-quote {
  position: relative;
  margin: 28px 0 0;
  padding: 24px 24px 24px 28px;
  background: var(--soft-bg);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
}
.about-quote__mark {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(11, 99, 246, 0.18);
}
.about-quote p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px;
  font-weight: 500;
}
.about-quote footer {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ---- STATS ---- */
.about-stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-stats::before,
.about-stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.about-stats::before {
  width: 360px; height: 360px;
  background: rgba(11, 99, 246, 0.55);
  top: -120px; left: -120px;
}
.about-stats::after {
  width: 320px; height: 320px;
  background: rgba(255, 159, 28, 0.18);
  bottom: -120px; right: -120px;
}
.about-stats__head {
  position: relative;
  margin-bottom: 40px;
}
.about-stats__head .section-eyebrow {
  color: rgba(255,255,255,0.65);
}
.stat-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.24);
}
.stat-card__value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-card__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- TIMELINE ---- */
.about-timeline {
  background: var(--soft-bg);
}
.about-timeline__head {
  margin-bottom: 56px;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 32px;
}
.timeline__line {
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 10%, var(--blue) 90%, transparent 100%);
  opacity: 0.35;
}
.timeline__item {
  position: relative;
  text-align: center;
  padding-top: 36px;
}
.timeline__dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(11, 99, 246, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.timeline__item:hover .timeline__dot {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 0 10px rgba(11, 99, 246, 0.18);
}
.timeline__year {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.timeline__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  height: calc(100% - 48px);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.timeline__item:hover .timeline__card {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(4, 43, 92, 0.10);
  border-color: rgba(11, 99, 246, 0.25);
}
.timeline__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}
.timeline__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 767.98px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 28px;
    padding-top: 0;
  }
  .timeline__line {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent 0%, var(--blue) 10%, var(--blue) 90%, transparent 100%);
  }
  .timeline__item {
    text-align: left;
    padding-top: 0;
    padding-left: 16px;
  }
  .timeline__dot {
    top: 6px;
    left: -28px;
    transform: none;
  }
  .timeline__item:hover .timeline__dot { transform: scale(1.15); }
  .timeline__card { height: auto; }
}

/* ---- VALUES ---- */
.about-values {
  background: #fff;
}
.about-values__head {
  margin-bottom: 40px;
}
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 99, 246, 0.12);
  border-color: rgba(11, 99, 246, 0.4);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d4e3fb 100%);
  color: var(--blue);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform .25s ease;
}
.value-card:hover .value-card__icon {
  transform: scale(1.08) rotate(-4deg);
}
.value-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}
.value-card__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---- COVERAGE ---- */
.about-coverage {
  background: var(--soft-bg);
  position: relative;
  overflow: hidden;
}
.about-coverage::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,99,246,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.about-coverage__head {
  margin-bottom: 40px;
  position: relative;
}
.coverage-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.coverage-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.coverage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 99, 246, 0.3);
  box-shadow: 0 22px 48px rgba(4, 43, 92, 0.10);
}
.coverage-card:hover::before { transform: scaleX(1); }
.coverage-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.coverage-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f0fe 0%, #c9dcf9 100%);
  color: var(--blue);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.coverage-card__badge {
  background: rgba(32, 178, 107, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.coverage-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
}
.coverage-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---- REVIEWS ---- */
.about-reviews {
  background: #fff;
}
.about-reviews__head {
  margin-bottom: 40px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(4, 43, 92, 0.10);
  border-color: rgba(245, 197, 24, 0.45);
}
.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 18px;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.review-card__origin {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ---- CTA ---- */
.about-cta {
  background: #fff;
  padding-top: 0;
}
.cta-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,159,28,0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(32,178,107,0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 56px;
  color: #fff;
}
.cta-banner__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cta-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 520px;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 575.98px) {
  .cta-banner__inner { padding: 36px 24px; }
}

/* =====================================================================
   FLEET CARD — dual button row (View Details + Book Now)
   ===================================================================== */
.vehicle-card-actions {
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.btn-vc {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.btn-vc--ghost {
  background: #fff;
  color: var(--blue);
  border-color: var(--border);
}
.btn-vc--ghost:hover {
  background: var(--soft-bg);
  border-color: rgba(11, 99, 246, 0.4);
  color: var(--blue);
}

.btn-vc--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(11, 99, 246, 0.22);
}
.btn-vc--primary:hover {
  background: #094fc6;
  border-color: #094fc6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 99, 246, 0.28);
}

/* =====================================================================
   VEHICLE DETAILS MODAL
   ===================================================================== */
.vehicle-modal .modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(4, 43, 92, 0.28);
  position: relative;
}

.vehicle-modal .vm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  padding: 8px;
  opacity: 1;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 360px;
}

.vm-image {
  background: linear-gradient(160deg, var(--soft-bg) 0%, #e3ecf9 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 260px;
}
.vm-image img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
}
.vm-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.vm-acriss-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 999px;
}

.vm-info {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}
.vm-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.vm-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.vm-models {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}

.vm-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.vm-specs {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.vm-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.vm-spec-label {
  color: var(--muted);
}
.vm-spec-value {
  color: var(--text);
  font-weight: 700;
}

.vm-included {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.10);
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.vm-book {
  margin-top: auto;
  width: 100%;
  padding: 13px 18px;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .vm-image {
    min-height: 200px;
    padding: 28px 20px;
  }
  .vm-image img { max-height: 200px; }
  .vm-info { padding: 24px 22px 22px; }
}

/* =====================================================================
   EXTRAS PAGE (Booking step 3)
   ===================================================================== */
.extras-page {
  padding: 72px 0 96px;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.03) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    var(--soft-bg);
}

@media (max-width: 767.98px) {
  .extras-page { padding: 48px 0 72px; }
}

.extras-head {
  margin-bottom: 40px;
}
.extras-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 8px;
}
.extras-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Forma uža + više vazduha do korpe (desktop only) */
@media (min-width: 992px) {
  .extras-page > .container-xl > .row > .col-lg-8 { flex: 0 0 62%; max-width: 62%; }
  .extras-page > .container-xl > .row > .col-lg-4 { flex: 0 0 34%; max-width: 34%; margin-left: 4%; }
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Extra card ---- */
.extra-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.extra-card:hover {
  border-color: rgba(11, 99, 246, 0.30);
  box-shadow: 0 6px 22px rgba(4, 43, 92, 0.06);
}
.extra-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 6px 22px rgba(11, 99, 246, 0.14);
  background: linear-gradient(180deg, #fff 0%, rgba(11,99,246,0.03) 100%);
}

.extra-card__info {
  flex: 1;
  min-width: 0;
}
.extra-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin: 0 0 4px;
}
.extra-card__price {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.extra-card__price strong {
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}
.extra-card__price-note {
  margin-left: 4px;
}
.extra-card__included {
  display: inline-block;
  background: rgba(32, 178, 107, 0.12);
  color: #166534;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.extra-card__desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* ---- Counter (+ / − ) ---- */
.extras-counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  flex-shrink: 0;
}
.extras-counter__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 1px 3px rgba(4, 43, 92, 0.08);
}
.extras-counter__btn svg { pointer-events: none; }
.extras-counter__btn:hover:not(:disabled) {
  background: var(--blue);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(11, 99, 246, 0.28);
}
.extras-counter__btn:active:not(:disabled) {
  transform: scale(0.94);
}
.extras-counter__btn:disabled {
  background: transparent;
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.45;
}
.extras-counter__btn--plus:not(:disabled) {
  background: var(--blue);
  color: #fff;
}
.extras-counter__btn--plus:not(:disabled):hover {
  background: #094fc6;
}

.extras-counter__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 34px;
  padding: 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.extras-counter__value.is-bump {
  animation: counterBump .3s ease;
}
@keyframes counterBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ---- Empty state ---- */
.extras-empty {
  text-align: center;
  background: #fff;
  border: 1.5px dashed var(--border);
  border-radius: 16px;
  padding: 56px 24px;
  color: var(--muted);
}
.extras-empty svg { color: var(--blue); opacity: 0.35; margin-bottom: 14px; }
.extras-empty h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.extras-empty p  { font-size: 14px; margin: 0 0 22px; }
.extras-empty .btn-vc { display: inline-flex; max-width: none; padding: 13px 22px; }

/* ---- Aside cart ---- */
.extras-aside {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
}

.extras-aside__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.extras-aside__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.extras-aside__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  padding: 0 9px;
  background: var(--soft-bg);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.extras-aside__body {
  padding: 6px 8px;
  min-height: 160px;
  flex: 1;
}

.extras-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.extras-aside__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .15s ease;
  animation: extrasItemIn .25s ease both;
}
.extras-aside__item:hover {
  background: var(--soft-bg);
}
@keyframes extrasItemIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: none; }
}
.extras-aside__item-info {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}
.extras-aside__item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.extras-aside__item-qty {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.extras-aside__item-cost {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.extras-aside__empty {
  text-align: center;
  padding: 24px 16px;
  color: var(--muted);
}
.extras-aside__empty svg { color: var(--blue); opacity: 0.35; margin-bottom: 10px; }
.extras-aside__empty-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}
.extras-aside__empty-sub {
  font-size: 12.5px;
  margin: 0;
  line-height: 1.5;
}

.extras-aside__foot {
  border-top: 1px solid var(--border);
  background: var(--soft-bg);
  padding: 14px 20px 16px;
}
.extras-aside__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.extras-aside__total {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.extras-aside__foot-note {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 0;
}

@media (max-width: 991.98px) {
  .extras-aside { position: static; }
}

@media (max-width: 575.98px) {
  .extra-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .extras-counter {
    align-self: flex-start;
    padding: 3px;
    gap: 2px;
  }
  .extras-counter__btn {
    width: 28px;
    height: 28px;
  }
  .extras-counter__value {
    min-width: 24px;
    height: 28px;
    font-size: 13px;
    padding: 0 4px;
  }
}

/* =====================================================================
   ABOUT PAGE — COLOR ENHANCEMENTS  (više boja, izraženija "kockastost")
   ===================================================================== */

/* Proširena paleta — 6 brand boja za kartice */
:root {
  --c1-blue:    #0b63f6;
  --c2-green:   #20b26b;
  --c3-orange:  #ff9f1c;
  --c4-purple:  #8b5cf6;
  --c5-teal:    #14b8a6;
  --c6-pink:    #ec4899;

  --c1-soft:    rgba(11, 99, 246, 0.10);
  --c2-soft:    rgba(32, 178, 107, 0.12);
  --c3-soft:    rgba(255, 159, 28, 0.14);
  --c4-soft:    rgba(139, 92, 246, 0.12);
  --c5-soft:    rgba(20, 184, 166, 0.14);
  --c6-soft:    rgba(236, 72, 153, 0.12);
}

/* ── STORY: vraća se u "kockicu" sa light gradient bg ── */
.about-story {
  background: linear-gradient(180deg, #f5f8fc 0%, #e8f0fe 100%);
}
.about-story .container-xl > .row {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(4, 43, 92, 0.08);
  position: relative;
}
.about-story .container-xl > .row::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.18) 0%, transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .about-story .container-xl > .row { padding: 20px; }
}

/* ── TIMELINE: alternating colored milestones ── */
.about-timeline {
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
}
.timeline__line {
  background: linear-gradient(90deg, transparent 0%, var(--c1-blue) 25%, var(--c3-orange) 50%, var(--c2-green) 75%, transparent 100%) !important;
  opacity: 0.45 !important;
}
.timeline__item:nth-child(2) .timeline__year { color: var(--c1-blue); }
.timeline__item:nth-child(3) .timeline__year { color: var(--c3-orange); }
.timeline__item:nth-child(4) .timeline__year { color: var(--c2-green); }
.timeline__item:nth-child(5) .timeline__year { color: var(--c4-purple); }

.timeline__item:nth-child(2) .timeline__dot { border-color: var(--c1-blue); box-shadow: 0 0 0 6px var(--c1-soft); }
.timeline__item:nth-child(3) .timeline__dot { border-color: var(--c3-orange); box-shadow: 0 0 0 6px var(--c3-soft); }
.timeline__item:nth-child(4) .timeline__dot { border-color: var(--c2-green); box-shadow: 0 0 0 6px var(--c2-soft); }
.timeline__item:nth-child(5) .timeline__dot { border-color: var(--c4-purple); box-shadow: 0 0 0 6px var(--c4-soft); }

.timeline__item:nth-child(2):hover .timeline__card { border-color: var(--c1-blue); box-shadow: 0 14px 32px var(--c1-soft); }
.timeline__item:nth-child(3):hover .timeline__card { border-color: var(--c3-orange); box-shadow: 0 14px 32px var(--c3-soft); }
.timeline__item:nth-child(4):hover .timeline__card { border-color: var(--c2-green);  box-shadow: 0 14px 32px var(--c2-soft); }
.timeline__item:nth-child(5):hover .timeline__card { border-color: var(--c4-purple); box-shadow: 0 14px 32px var(--c4-soft); }

/* ── VALUES: 6 unique colored cards ── */
.about-values {
  background: linear-gradient(180deg, #fff 0%, #f0f4fa 100%);
  position: relative;
}
.about-values::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 246, 0.08) 0%, transparent 70%);
  top: 10%; left: -120px;
  pointer-events: none;
}
.about-values::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.10) 0%, transparent 70%);
  bottom: 10%; right: -100px;
  pointer-events: none;
}

/* nth-child color rotations */
.about-values .row > div:nth-child(1) .value-card__icon {
  background: linear-gradient(135deg, #e8f0fe 0%, #c9dcf9 100%);
  color: var(--c1-blue);
}
.about-values .row > div:nth-child(1) .value-card:hover {
  border-color: var(--c1-blue);
  box-shadow: 0 18px 40px var(--c1-soft);
}

.about-values .row > div:nth-child(2) .value-card__icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: var(--c2-green);
}
.about-values .row > div:nth-child(2) .value-card:hover {
  border-color: var(--c2-green);
  box-shadow: 0 18px 40px var(--c2-soft);
}

.about-values .row > div:nth-child(3) .value-card__icon {
  background: linear-gradient(135deg, #fff4d6 0%, #ffe2a8 100%);
  color: #d97706;
}
.about-values .row > div:nth-child(3) .value-card:hover {
  border-color: var(--c3-orange);
  box-shadow: 0 18px 40px var(--c3-soft);
}

.about-values .row > div:nth-child(4) .value-card__icon {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: var(--c4-purple);
}
.about-values .row > div:nth-child(4) .value-card:hover {
  border-color: var(--c4-purple);
  box-shadow: 0 18px 40px var(--c4-soft);
}

.about-values .row > div:nth-child(5) .value-card__icon {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: var(--c5-teal);
}
.about-values .row > div:nth-child(5) .value-card:hover {
  border-color: var(--c5-teal);
  box-shadow: 0 18px 40px var(--c5-soft);
}

.about-values .row > div:nth-child(6) .value-card__icon {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: var(--c6-pink);
}
.about-values .row > div:nth-child(6) .value-card:hover {
  border-color: var(--c6-pink);
  box-shadow: 0 18px 40px var(--c6-soft);
}

.value-card {
  position: relative;
  overflow: hidden;
}
/* Suptilan dijagonalni "stripe" u uglu kartice */
.value-card::after {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.04;
  pointer-events: none;
}

/* ── COVERAGE: 3 cards with bigger color blocks ── */
.about-coverage {
  background: linear-gradient(180deg, #f0f4fa 0%, #e0eaff 100%);
}
.coverage-card {
  position: relative;
  overflow: hidden;
}
.coverage-card::before {
  height: 5px !important; /* deblji top accent */
  transform: scaleX(1) !important; /* uvijek vidljiv */
}
.about-coverage .row > div:nth-child(1) .coverage-card::before {
  background: linear-gradient(90deg, var(--c1-blue) 0%, #4f46e5 100%);
}
.about-coverage .row > div:nth-child(1) .coverage-card__icon {
  background: linear-gradient(135deg, #e8f0fe 0%, #c9dcf9 100%);
  color: var(--c1-blue);
}
.about-coverage .row > div:nth-child(1) .coverage-card__badge {
  background: var(--c1-soft);
  color: var(--c1-blue);
}

.about-coverage .row > div:nth-child(2) .coverage-card::before {
  background: linear-gradient(90deg, var(--c2-green) 0%, #059669 100%);
}
.about-coverage .row > div:nth-child(2) .coverage-card__icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: var(--c2-green);
}
.about-coverage .row > div:nth-child(2) .coverage-card__badge {
  background: var(--c2-soft);
  color: #047857;
}

.about-coverage .row > div:nth-child(3) .coverage-card::before {
  background: linear-gradient(90deg, var(--c3-orange) 0%, #dc2626 100%);
}
.about-coverage .row > div:nth-child(3) .coverage-card__icon {
  background: linear-gradient(135deg, #fff4d6 0%, #ffe2a8 100%);
  color: #d97706;
}
.about-coverage .row > div:nth-child(3) .coverage-card__badge {
  background: var(--c3-soft);
  color: #d97706;
}

/* ── REVIEWS: warmer cream tinted bg + colored quote dots ── */
.about-reviews {
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}
.review-card {
  position: relative;
}
.review-card::before {
  content: """;
  position: absolute;
  top: 4px; right: 14px;
  font-size: 60px;
  font-family: Georgia, serif;
  line-height: 1;
  color: currentColor;
  opacity: 0.10;
  pointer-events: none;
}
.about-reviews .row > div:nth-child(1) .review-card { color: var(--c1-blue); }
.about-reviews .row > div:nth-child(2) .review-card { color: var(--c2-green); }
.about-reviews .row > div:nth-child(3) .review-card { color: var(--c4-purple); }
.about-reviews .row > div:nth-child(4) .review-card { color: var(--c3-orange); }

.about-reviews .row > div:nth-child(1) .review-card__avatar { background: linear-gradient(135deg, var(--c1-blue) 0%, #1e3a8a 100%); }
.about-reviews .row > div:nth-child(2) .review-card__avatar { background: linear-gradient(135deg, var(--c2-green) 0%, #047857 100%); }
.about-reviews .row > div:nth-child(3) .review-card__avatar { background: linear-gradient(135deg, var(--c4-purple) 0%, #5b21b6 100%); }
.about-reviews .row > div:nth-child(4) .review-card__avatar { background: linear-gradient(135deg, var(--c3-orange) 0%, #b45309 100%); }

.review-card__text { color: var(--text); } /* override boje od currentColor */
.review-card__name { color: var(--navy); }
.review-card__origin { color: var(--muted); }
.review-card:hover {
  border-color: currentColor;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* ── STATS: malo življi accent ── */
.about-stats::after {
  background: rgba(255, 159, 28, 0.30) !important; /* bolji glow */
}
.stat-card:nth-child(1) .stat-card__value,
.about-stats .row > div:nth-child(1) .stat-card__value { color: #fff; }
.about-stats .row > div:nth-child(2) .stat-card__value { color: #fef3c7; }
.about-stats .row > div:nth-child(3) .stat-card__value { color: #ffd6a5; }
.about-stats .row > div:nth-child(4) .stat-card__value { color: #d1fae5; }

/* =====================================================================
   HOMEPAGE — NEW SECTIONS  (Trust strip, 3 steps, Coverage, Age note)
   ===================================================================== */

/* ── Driver age surcharge note (in booking form) ── */
.age-surcharge-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 12px;
  background: rgba(255, 159, 28, 0.10);
  border: 1px solid rgba(255, 159, 28, 0.25);
  color: #b45309;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 8px;
  line-height: 1.3;
}
.age-surcharge-note[hidden] { display: none; }
.age-surcharge-note svg { color: var(--orange); flex-shrink: 0; }
.age-surcharge-note strong { font-weight: 800; }

/* ── TRUST STRIP ── */
.trust-strip {
  padding: 36px 0 30px;
  background:
    linear-gradient(180deg, #fff 0%, var(--soft-bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.30) 50%, transparent);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1199.98px) {
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
}
@media (max-width: 767.98px) {
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
}

.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 12px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: 0; }
@media (max-width: 1199.98px) {
  .trust-item { border-right: 0; }
}

.trust-google-logo {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-tp-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 14px;
  color: #00b67a;
  margin-bottom: 6px;
  line-height: 1;
}
.trust-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
.trust-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.trust-rating-text {
  font-size: 13px;
  color: var(--text);
}
.trust-rating-text strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.trust-meta {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

.trust-item--renters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
  flex-shrink: 0;
}
.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.trust-avatar:first-child { margin-left: 0; }

.trust-renters-num strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.trust-mini-review {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 12px;
}
.trust-mini-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--avb);
  color: var(--avc);
  border: 2px solid var(--avc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.trust-mini-body { min-width: 0; }
.trust-mini-stars { color: var(--yellow); font-size: 11px; letter-spacing: 1px; line-height: 1; margin-bottom: 4px; }
.trust-mini-text {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 4px;
  font-style: italic;
}
.trust-mini-name {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* ── 3 SIMPLE STEPS ── */
.steps-section {
  background: linear-gradient(180deg, #fff 0%, var(--soft-bg) 100%);
  padding: 90px 0 100px;
}
.steps-section .section-title { margin-bottom: 40px; }

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 84, 214, 0.25);
  box-shadow: var(--shadow-lg);
}

.step-card:hover::after {
  opacity: 1;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(21, 84, 214, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  position: relative;
  z-index: 2;
}
.step-card:nth-child(3) .step-num {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 8px 20px rgba(193, 18, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.step-card:nth-child(5) .step-num {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 8px 20px rgba(8, 33, 77, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.step-icon {
  color: var(--blue);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.step-card:nth-child(3) .step-icon { color: var(--red); }
.step-card:nth-child(5) .step-icon { color: var(--navy); }

.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}
.step-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.step-arrow {
  align-self: center;
  color: var(--border);
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .step-arrow { display: none; }
  .step-card { width: 100%; min-width: 0; }
}

/* ── COVERAGE / DELIVERY (homepage) ── */
.coverage-home {
  padding: 64px 0 72px;
  background: var(--soft-bg);
}

.coverage-home__panel {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 14px 40px rgba(4, 43, 92, 0.06);
}
.coverage-home__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.coverage-home__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.coverage-home__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.coverage-home__list li:last-child { border-bottom: 0; }

.btn-cta-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(11, 99, 246, 0.22);
}
.btn-cta-small:hover {
  background: #094fc6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 99, 246, 0.28);
}

.coverage-home__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 14px 40px rgba(4, 43, 92, 0.10);
}
.coverage-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coverage-home__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,43,92,0.05) 0%, rgba(4,43,92,0.30) 100%);
  pointer-events: none;
}
.coverage-home__pins {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .coverage-home__pins { flex-wrap: wrap; padding: 16px; }
}

.cov-pin {
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(4, 43, 92, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.cov-pin__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cov-pin--1 .cov-pin__icon { background: rgba(11, 99, 246, 0.12); color: var(--blue); }
.cov-pin--2 .cov-pin__icon { background: rgba(32, 178, 107, 0.14); color: var(--green); }
.cov-pin--3 .cov-pin__icon { background: rgba(255, 159, 28, 0.16); color: #d97706; }

.cov-pin__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.cov-pin__sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── COVERAGE HOME 2 (čist 3-card layout, bez velike pozadinske slike) ── */
.coverage-home2 {
  padding: 72px 0;
  background: linear-gradient(180deg, #f5f8fc 0%, #e8f0fe 100%);
  position: relative;
  overflow: hidden;
}
.coverage-home2::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 246, 0.08) 0%, transparent 70%);
  top: -120px; left: -120px;
  pointer-events: none;
}
.coverage-home2::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.10) 0%, transparent 70%);
  bottom: -120px; right: -120px;
  pointer-events: none;
}
.coverage-home2 .container-xl { position: relative; z-index: 1; }

.coverage-home2__head {
  margin-bottom: 40px;
}

.coverage2-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 26px;
  height: 100%;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.coverage2-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.coverage2-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 99, 246, 0.30);
  box-shadow: 0 22px 46px rgba(4, 43, 92, 0.10);
}

/* boje po kartici — unified blue/navy/red premium palette */
.coverage-home2 .row > div:nth-child(1) .coverage2-card::before {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
}
.coverage-home2 .row > div:nth-child(1) .coverage2-card__icon {
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.15);
  color: var(--blue);
}
.coverage-home2 .row > div:nth-child(1) .coverage2-card__badge {
  background: var(--blue-soft); color: var(--blue);
}

.coverage-home2 .row > div:nth-child(2) .coverage2-card::before {
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
}
.coverage-home2 .row > div:nth-child(2) .coverage2-card__icon {
  background: linear-gradient(135deg, rgba(8, 33, 77, 0.08) 0%, rgba(8, 33, 77, 0.02) 100%);
  border: 1px solid rgba(8, 33, 77, 0.14);
  color: var(--navy);
}
.coverage-home2 .row > div:nth-child(2) .coverage2-card__badge {
  background: rgba(8, 33, 77, 0.08); color: var(--navy);
}

.coverage-home2 .row > div:nth-child(3) .coverage2-card::before {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
}
.coverage-home2 .row > div:nth-child(3) .coverage2-card__icon {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.02) 100%);
  border: 1px solid rgba(193, 18, 31, 0.15);
  color: var(--red);
}
.coverage-home2 .row > div:nth-child(3) .coverage2-card__badge {
  background: var(--red-soft); color: var(--red);
}

.coverage2-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.coverage2-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.coverage2-card__badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.coverage2-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.coverage2-card__code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: var(--soft-bg);
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.coverage2-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.coverage-home2__cta {
  text-align: center;
  margin-top: 32px;
}

/* =====================================================================
   ENGLISH-FIRST REDESIGN  (Blue / White / RED palette modernization)
   ===================================================================== */

/* ── Hero tag pill (Family-run since 2006) ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.22) 0%, rgba(193, 18, 31, 0.10) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 18px rgba(193, 18, 31, 0.20);
}
.hero-tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.30);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.32); }
  50%      { box-shadow: 0 0 0 9px rgba(193, 18, 31, 0.08); }
}

/* ── Booking card head ── */
.booking-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.booking-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.018em;
}
.booking-card__lock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(32, 178, 107, 0.10);
  border: 1px solid rgba(32, 178, 107, 0.22);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ── Search button → RED, modern ── */
.btn-search {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 14px 24px;
  width: 100%;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(193, 18, 31, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  margin-top: 4px;
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(193, 18, 31, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.06);
}
.btn-search:active { transform: translateY(0); }

/* ── Car cards v2 (premium, dark image stage, plavo/crvena paleta) ── */
.car-card--v2 {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(8, 33, 77, 0.08);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 18px 44px rgba(8, 33, 77, 0.10), 0 2px 6px rgba(8, 33, 77, 0.04);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, border-color .32s ease;
  isolation: isolate;
}

.car-card--v2:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 84, 214, 0.30);
  box-shadow:
    0 36px 80px rgba(8, 33, 77, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.car-card--v2:hover .car-photo { transform: scale(1.08); }
.car-card--v2 .car-photo { transition: transform .5s cubic-bezier(.2,.8,.2,1); }

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}
.car-badge--red    { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); box-shadow: 0 6px 14px rgba(193, 18, 31, 0.32); }
.car-badge--blue   { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); box-shadow: 0 6px 14px rgba(21, 84, 214, 0.30); }
.car-badge--navy   { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); box-shadow: 0 6px 14px rgba(8, 33, 77, 0.36); }
.car-badge--green  { background: var(--green); }
.car-badge--orange { background: var(--orange); color: #5a3a00; }
.car-badge--purple { background: #8b5cf6; }

.car-card--v2 .car-img-block {
  background:
    radial-gradient(60% 70% at 50% 100%, rgba(21, 84, 214, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f1f5fb 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.car-card--v2 .car-img-block::before { display: none; }

.car-card--v2 .car-img-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 84, 214, 0.18), transparent);
}

.car-card--v2 .car-photo {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 14px 18px rgba(8, 33, 77, 0.18));
}

.car-card--v2 .car-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.car-card--v2 .car-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}
.car-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.car-spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--soft-bg);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.car-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
}
.car-price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.car-price-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.car-price-amount span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(21, 84, 214, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: box-shadow .2s ease, transform .2s ease, filter .2s ease;
  margin-top: 4px;
}
.btn-view-details:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(21, 84, 214, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.06);
}

/* ── Insurance section v2 (with featured red highlight) ── */
.insurance-section .ins-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 24px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.insurance-section .ins-card {
  box-shadow: var(--shadow-sm);
}
.insurance-section .ins-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 84, 214, 0.32);
  box-shadow: var(--shadow-lg);
}
.insurance-section .ins-card.is-featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
  box-shadow: 0 22px 56px rgba(21, 84, 214, 0.22);
  transform: translateY(-6px);
  position: relative;
}
.insurance-section .ins-card.is-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(180deg, var(--blue) 0%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ins-most-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(193, 18, 31, 0.36);
}
.ins-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.ins-price {
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 16px;
}
.ins-card.is-featured .ins-price { color: var(--red); }
.ins-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ins-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  padding: 7px 0;
  border-top: 1px dashed var(--border);
}
.ins-features li:first-child { border-top: 0; }

/* ── Insurance side card (24/7 assistance) ── */
.ins-side-card {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ins-side-card::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,18,31,0.30) 0%, transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}
.ins-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.14);
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
}
.ins-side-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  position: relative;
}
.ins-side-text {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin-bottom: auto;
  padding-bottom: 18px;
  position: relative;
}
.ins-side-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  position: relative;
  transition: transform .18s ease;
}
.ins-side-link:hover { color: #fff; transform: translateX(3px); }

/* ── Testimonials with score ── */
.testi-score {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-left: 6px;
}

/* ── CTA Banner — premium crimson button ── */
.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 14px 32px rgba(21, 84, 214, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  letter-spacing: 0.02em;
  border: 0;
}
.btn-cta-red:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(21, 84, 214, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.06);
}

/* ── Section header alignment ── */
.cars-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.cars-section .section-header .section-eyebrow { display: inline-flex; }
.cars-section .view-all {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap .2s ease;
}
.cars-section .view-all:hover {
  gap: 10px;
  color: var(--blue);
}

/* =====================================================================
   TERMS / RENTAL CONDITIONS PAGE
   ===================================================================== */
.terms-hero {
  background: linear-gradient(180deg, #f5f8fc 0%, #e8f0fe 100%);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.terms-hero::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,18,31,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.terms-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 18, 31, 0.12);
  border: 1px solid rgba(193, 18, 31, 0.30);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.terms-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.terms-hero__subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms-content {
  padding: 48px 0 64px;
  background: #fff;
}

.terms-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.terms-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 99, 246, 0.30);
  box-shadow: 0 18px 40px rgba(4, 43, 92, 0.10);
}

.terms-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.terms-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e8f0fe 0%, #c9dcf9 100%);
  color: var(--blue);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.terms-card:nth-child(odd) .terms-card__icon {
  background: linear-gradient(135deg, #fde8ea 0%, #fbb4bc 100%);
  color: var(--red);
}
.terms-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.005em;
}

.terms-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.terms-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.terms-card__list li:last-child { border-bottom: 0; }
.terms-card__list svg { flex-shrink: 0; margin-top: 3px; }

.terms-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.terms-cta::before {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,18,31,0.30) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}
.terms-cta__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  position: relative;
}
.terms-cta__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.terms-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

/* =====================================================================
   V3 SECTIONS — premium ribbon / cards / steps / cars
   ===================================================================== */

/* ── TRUST RIBBON (premium replacement for trust-strip) ── */
.trust-ribbon {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
}

.trust-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.40) 50%, transparent);
}

.trust-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.tr-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 4px 8px;
}

.tr-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.tr-num span {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}

.tr-stars {
  color: #f5b400;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.tr-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}
.tr-label--big {
  font-size: 13px;
  color: var(--text);
}

.tr-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .tr-divider { display: none; }
  .trust-ribbon__inner { gap: 24px 12px; }
  .tr-item { flex: 0 0 calc(33.333% - 12px); }
}
@media (max-width: 575.98px) {
  .tr-item { flex: 0 0 calc(50% - 8px); }
}

/* ── WHY US v3 — 3 velike feature kartice ── */
.why-v3 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    var(--soft-bg);
}

.why-v3__head {
  text-align: center;
  margin-bottom: 56px;
}

.why-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .why-v3__grid { grid-template-columns: 1fr; gap: 16px; }
  .why-v3 { padding: 70px 0; }
}

.why-feature {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.why-feature--accent::before {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.why-feature--navy::before {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.why-feature::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  pointer-events: none;
  transition: transform .35s ease;
}

.why-feature--accent::after {
  background: radial-gradient(circle, rgba(193, 18, 31, 0.08) 0%, transparent 70%);
}

.why-feature--navy::after {
  background: radial-gradient(circle, rgba(8, 33, 77, 0.10) 0%, transparent 70%);
}

.why-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.why-feature:hover::after {
  transform: scale(1.2);
}

.why-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 12px 24px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 2;
}

.why-feature--accent .why-feature__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 12px 24px rgba(193, 18, 31, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.why-feature--navy .why-feature__icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 12px 24px rgba(8, 33, 77, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.why-feature__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.why-feature__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.why-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.why-feature__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  border-top: 1px dashed var(--border);
}

.why-feature__list li:first-child { border-top: 0; }

.why-feature__list li svg {
  color: var(--blue);
  flex-shrink: 0;
}

.why-feature--accent .why-feature__list li svg { color: var(--red); }
.why-feature--navy .why-feature__list li svg { color: var(--navy); }

/* ── STEPS v3 — premium timeline sa velikim brojevima ── */
.steps-v3 {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.steps-v3__head {
  text-align: center;
  margin-bottom: 64px;
}

.steps-v3__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* connecting line desktop */
.steps-v3__track::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--blue) 50%, transparent 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  opacity: 0.35;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .steps-v3__track {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps-v3__track::before { display: none; }
  .steps-v3 { padding: 70px 0; }
}

.step-v3 {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.step-v3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21, 84, 214, 0.25);
}

.step-v3__num-bg {
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 900;
  color: var(--blue-soft);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.step-v3:nth-child(2) .step-v3__num-bg { color: rgba(8, 33, 77, 0.06); }
.step-v3:nth-child(3) .step-v3__num-bg { color: rgba(193, 18, 31, 0.07); }

.step-v3__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  position: relative;
  z-index: 2;
}

.step-v3:nth-child(2) .step-v3__icon-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 14px 30px rgba(8, 33, 77, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.step-v3:nth-child(3) .step-v3__icon-wrap {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 14px 30px rgba(193, 18, 31, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.step-v3__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.step-v3__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* ── POPULAR CARS v3 — veće kartice, 3 kolone desktop ── */
.cars-v3 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
}

.cars-v3__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.cars-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991.98px) {
  .cars-v3__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cars-v3 { padding: 70px 0; }
}
@media (max-width: 575.98px) {
  .cars-v3__grid { grid-template-columns: 1fr; }
}

.car-v3 {
  position: relative;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.car-v3:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21, 84, 214, 0.30);
}

.car-v3__img {
  position: relative;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(21, 84, 214, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, #f5f8fd 0%, #e1ebfa 100%);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
}

.car-v3__img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform .35s ease;
  filter: drop-shadow(0 14px 24px rgba(8, 33, 77, 0.22));
}

.car-v3:hover .car-v3__img img {
  transform: scale(1.05);
}

.car-v3__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
}

.car-v3__badge--red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 8px 18px rgba(193, 18, 31, 0.36);
}
.car-v3__badge--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.34);
}
.car-v3__badge--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 8px 18px rgba(8, 33, 77, 0.40);
}

.car-v3__class {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(8, 33, 77, 0.10);
}

.car-v3__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.car-v3__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

.car-v3__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.car-v3__spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.car-v3__spec svg {
  color: var(--blue);
  flex-shrink: 0;
}

.car-v3__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.car-v3__cta-row {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}

.car-v3__cta--full {
  width: 100%;
}

.car-v3__price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.car-v3__price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.car-v3__price-day {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.car-v3__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(21, 84, 214, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all .2s ease;
}

.car-v3__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.06);
}

/* =====================================================================
   ABOUT US v3 — premium redesign
   ===================================================================== */

/* ── HERO ── */
.about-hero-v3 {
  position: relative;
  min-height: clamp(480px, 64vh, 660px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.about-hero-v3__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero-v3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  animation: aboutHeroV3Zoom 18s ease-out forwards;
}

@keyframes aboutHeroV3Zoom {
  to { transform: scale(1); }
}

.about-hero-v3__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 20% 30%, rgba(21, 84, 214, 0.35) 0%, transparent 65%),
    radial-gradient(50% 40% at 90% 80%, rgba(193, 18, 31, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, rgba(4, 18, 46, 0.55) 0%, rgba(4, 18, 46, 0.85) 100%);
  z-index: -1;
}

.about-hero-v3::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
  z-index: 1;
}

.about-hero-v3__inner {
  position: relative;
  padding: 100px 0 80px;
}

.about-hero-v3__content {
  max-width: 820px;
}

.about-hero-v3__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.22) 0%, rgba(193, 18, 31, 0.10) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 18px rgba(193, 18, 31, 0.20);
}

.about-hero-v3__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.30);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.about-hero-v3__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 22px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.about-hero-v3__title span {
  display: block;
}

.about-hero-v3__title-grad {
  background: linear-gradient(135deg, #fff 0%, #b9d3ff 55%, #6cb1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 16px rgba(45, 114, 255, 0.35));
}

.about-hero-v3__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.about-hero-v3__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Stat strip — apsolutno na dnu hero-a, prelazi preko story sekcije */
.about-hero-v3__stats {
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  z-index: 5;
}

.about-hero-v3__stats-card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(4, 18, 46, 0.25),
    0 4px 12px rgba(4, 18, 46, 0.10);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.about-hero-v3__stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 50%, var(--red) 100%);
  border-radius: 20px 20px 0 0;
}

.ahs-item {
  flex: 1;
  text-align: center;
}

.ahs-v {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.ahs-l {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ahs-divider {
  width: 1px;
  align-self: stretch;
  margin: 8px 0;
  background: linear-gradient(180deg, transparent 0%, #c9d4e8 25%, #c9d4e8 75%, transparent 100%);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .about-hero-v3__stats-card { flex-wrap: wrap; gap: 14px 8px; }
  .ahs-item { flex: 0 0 calc(50% - 4px); }
  .ahs-divider { display: none; }
}

/* ── STORY ── */
.about-story-v3 {
  padding: 100px 0;
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    var(--soft-bg);
  position: relative;
}

.story-v3__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.story-v3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.story-v3__media:hover img {
  transform: scale(1.06);
}

.story-v3__media-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(4, 18, 46, 0.20);
}

.story-v3__media-pill svg {
  color: #f5b400;
}

.story-v3__media-stamp {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(21, 84, 214, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-v3__media-stamp-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.story-v3__media-stamp-num small {
  font-size: 22px;
  font-weight: 700;
}

.story-v3__media-stamp-l {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.story-v3__lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 16px;
  font-weight: 400;
}

.story-v3__quote {
  position: relative;
  margin: 32px 0 0;
  padding: 28px 28px 24px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.story-v3__quote::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.story-v3__quote-mark {
  color: rgba(193, 18, 31, 0.20);
  margin-bottom: 8px;
  position: relative;
}

.story-v3__quote p {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
}

.story-v3__quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.story-v3__quote-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.story-v3__quote-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── STATS BAND ── */
.about-stats-v3 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 100% 100%, rgba(193, 18, 31, 0.20) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 0%, rgba(45, 114, 255, 0.20) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--blue-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-stats-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.about-stats-v3::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4) 50%, transparent);
}

.about-stats-v3 .container-xl { position: relative; z-index: 2; }

.about-stats-v3__head {
  margin-bottom: 56px;
}

.section-eyebrow--inverted {
  background: rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.section-eyebrow--inverted::before {
  background: linear-gradient(90deg, var(--blue-bright), var(--red)) !important;
}

.about-stats-v3__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .about-stats-v3__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .about-stats-v3__grid { grid-template-columns: 1fr; }
}

.stat-v3 {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  overflow: hidden;
}

.stat-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--red));
  opacity: 0.7;
}

.stat-v3:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.stat-v3__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-v3__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}

.stat-v3__sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ── JOURNEY / TIMELINE ── */
.about-journey-v3 {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.about-journey-v3__head {
  margin-bottom: 64px;
}

.journey-v3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.journey-v3__line {
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--blue) 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  opacity: 0.35;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .journey-v3 { grid-template-columns: 1fr; gap: 28px; }
  .journey-v3__line { display: none; }
  .about-journey-v3 { padding: 70px 0; }
}

.journey-v3__item {
  position: relative;
  text-align: center;
  z-index: 1;
}

.journey-v3__year {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 14px;
  background: var(--blue-soft);
  border-radius: 10px;
}

.journey-v3__item:nth-child(2) .journey-v3__year { color: var(--blue); background: var(--blue-soft); }
.journey-v3__item:nth-child(3) .journey-v3__year { color: var(--navy); background: rgba(8, 33, 77, 0.08); }
.journey-v3__item:nth-child(4) .journey-v3__year { color: var(--navy); background: rgba(8, 33, 77, 0.08); }
.journey-v3__item:nth-child(5) .journey-v3__year { color: var(--red);  background: var(--red-soft); }

.journey-v3__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px var(--blue-soft);
  margin: 0 auto 18px;
}

.journey-v3__item:nth-child(3) .journey-v3__dot,
.journey-v3__item:nth-child(4) .journey-v3__dot {
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(8, 33, 77, 0.10);
}

.journey-v3__item:nth-child(5) .journey-v3__dot {
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.journey-v3__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  height: 100%;
}

.journey-v3__item:hover .journey-v3__card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 84, 214, 0.25);
}

.journey-v3__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.journey-v3__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── PROMISE (3 commitment kartice) ── */
.about-promise-v3 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 0% 100%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
  position: relative;
}

.about-promise-v3__head {
  margin-bottom: 56px;
}

.promise-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .promise-v3__grid { grid-template-columns: 1fr; gap: 16px; }
  .about-promise-v3 { padding: 70px 0; }
}

.promise-v3 {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 38px 30px 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.promise-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.promise-v3--navy::before { background: linear-gradient(90deg, var(--navy), var(--blue)); }
.promise-v3--red::before  { background: linear-gradient(90deg, var(--red), var(--red-dark)); }

.promise-v3::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  pointer-events: none;
}

.promise-v3--navy::after { background: radial-gradient(circle, rgba(8, 33, 77, 0.08) 0%, transparent 70%); }
.promise-v3--red::after  { background: radial-gradient(circle, rgba(193, 18, 31, 0.08) 0%, transparent 70%); }

.promise-v3:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.promise-v3__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 2;
}

.promise-v3--navy .promise-v3__badge { background: rgba(8, 33, 77, 0.10); color: var(--navy); }
.promise-v3--red  .promise-v3__badge { background: var(--red-soft); color: var(--red); }

.promise-v3__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 14px 28px rgba(21, 84, 214, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  position: relative;
  z-index: 2;
}

.promise-v3--navy .promise-v3__icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 14px 28px rgba(8, 33, 77, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.promise-v3--red .promise-v3__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 14px 28px rgba(193, 18, 31, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.promise-v3__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.promise-v3__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ── VALUES (6 kartica, premium grid) ── */
.about-values-v3 {
  padding: 100px 0;
  background: #fff;
}

.about-values-v3__head {
  margin-bottom: 56px;
}

.values-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 991.98px) {
  .values-v3__grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-v3 { padding: 70px 0; }
}
@media (max-width: 575.98px) {
  .values-v3__grid { grid-template-columns: 1fr; }
}

.value-v3 {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}

.value-v3:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 84, 214, 0.22);
  box-shadow: var(--shadow-md);
}

.value-v3__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.12);
  color: var(--blue);
  margin-bottom: 16px;
}

.value-v3:nth-child(2) .value-v3__icon {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.04) 100%);
  border-color: rgba(193, 18, 31, 0.15);
  color: var(--red);
}

.value-v3:nth-child(3) .value-v3__icon,
.value-v3:nth-child(6) .value-v3__icon {
  background: linear-gradient(135deg, rgba(8, 33, 77, 0.08) 0%, rgba(8, 33, 77, 0.02) 100%);
  border-color: rgba(8, 33, 77, 0.14);
  color: var(--navy);
}

.value-v3:nth-child(5) .value-v3__icon {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.04) 100%);
  border-color: rgba(193, 18, 31, 0.15);
  color: var(--red);
}

.value-v3__title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}

.value-v3__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── TEAM ── */
.about-team-v3 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
}

.about-team-v3__head {
  margin-bottom: 56px;
}

.team-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .team-v3__grid { grid-template-columns: 1fr; gap: 16px; }
  .about-team-v3 { padding: 70px 0; }
}

.team-v3 {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.team-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  z-index: 0;
}

.team-v3--navy::before {
  background: linear-gradient(135deg, rgba(8, 33, 77, 0.10) 0%, rgba(8, 33, 77, 0.02) 100%);
}

.team-v3--red::before {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.04) 100%);
}

.team-v3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-v3__avatar {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.team-v3--navy .team-v3__avatar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 14px 30px rgba(8, 33, 77, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.team-v3--red .team-v3__avatar {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 14px 30px rgba(193, 18, 31, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.team-v3__name {
  position: relative;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  z-index: 1;
}

.team-v3__role {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 14px;
  z-index: 1;
}

.team-v3--navy .team-v3__role { color: var(--navy); }
.team-v3--red  .team-v3__role { color: var(--red); }

.team-v3__bio {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  z-index: 1;
}

/* ── COVERAGE ── */
.about-coverage-v3 {
  padding: 100px 0;
  background: #fff;
}

.about-coverage-v3__head {
  margin-bottom: 56px;
}

.coverage-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .coverage-v3__grid { grid-template-columns: 1fr; gap: 16px; }
  .about-coverage-v3 { padding: 70px 0; }
}

.coverage-v3 {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .3s ease;
}

.coverage-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.coverage-v3--navy::before { background: linear-gradient(90deg, var(--navy), var(--blue)); }
.coverage-v3--red::before  { background: linear-gradient(90deg, var(--red), var(--red-dark)); }

.coverage-v3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 84, 214, 0.22);
}

.coverage-v3__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.coverage-v3__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.15);
  color: var(--blue);
}

.coverage-v3--navy .coverage-v3__icon {
  background: linear-gradient(135deg, rgba(8, 33, 77, 0.08) 0%, rgba(8, 33, 77, 0.02) 100%);
  border-color: rgba(8, 33, 77, 0.15);
  color: var(--navy);
}

.coverage-v3--red .coverage-v3__icon {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.04) 100%);
  border-color: rgba(193, 18, 31, 0.15);
  color: var(--red);
}

.coverage-v3__badge {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}

.coverage-v3--navy .coverage-v3__badge { background: rgba(8, 33, 77, 0.08); color: var(--navy); }
.coverage-v3--red  .coverage-v3__badge { background: var(--red-soft); color: var(--red); }

.coverage-v3__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  line-height: 1.25;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.coverage-v3__code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: var(--soft-bg);
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.coverage-v3__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── REVIEWS ── */
.about-reviews-v3 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    var(--soft-bg);
}

.about-reviews-v3__head {
  margin-bottom: 56px;
}

.reviews-v3__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1199.98px) {
  .reviews-v3__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .reviews-v3__grid { grid-template-columns: 1fr; }
  .about-reviews-v3 { padding: 70px 0; }
}

.review-v3 {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all .3s ease;
}

.review-v3::before {
  content: '"';
  position: absolute;
  top: -18px;
  right: 14px;
  font-size: 110px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--blue-soft);
  line-height: 1;
  pointer-events: none;
}

.review-v3:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 84, 214, 0.22);
}

.review-v3__stars {
  display: flex;
  gap: 2px;
  color: #f5b400;
  margin-bottom: 12px;
  position: relative;
}

.review-v3__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 18px;
  font-weight: 500;
  flex: 1;
  position: relative;
}

.review-v3__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  position: relative;
}

.review-v3__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(21, 84, 214, 0.30);
}

.review-v3:nth-child(2) .review-v3__avatar {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 6px 14px rgba(193, 18, 31, 0.30);
}

.review-v3:nth-child(3) .review-v3__avatar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 6px 14px rgba(8, 33, 77, 0.40);
}

.review-v3:nth-child(4) .review-v3__avatar {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  box-shadow: 0 6px 14px rgba(45, 114, 255, 0.32);
}

.review-v3__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.review-v3__origin {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ── CTA (about) ── */
.about-cta-v3 {
  background:
    radial-gradient(60% 80% at 80% 100%, rgba(193, 18, 31, 0.32) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 0%, rgba(45, 114, 255, 0.28) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue-dark) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.about-cta-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.about-cta-v3::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.about-cta-v3 .cta-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.about-cta-v3 .cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  line-height: 1.6;
}

/* =====================================================================
   TERMS / RENTAL CONDITIONS v3 — premium redesign
   ===================================================================== */

/* ── HERO ── */
.terms-hero-v3 {
  position: relative;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.12) 0%, transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(21, 84, 214, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #f5f8fd 0%, #eaf0fb 100%);
  padding: 80px 0 70px;
  overflow: hidden;
}

.terms-hero-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.terms-hero-v3__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.terms-hero-v3__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.14) 0%, rgba(193, 18, 31, 0.06) 100%);
  border: 1px solid rgba(193, 18, 31, 0.30);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.terms-hero-v3__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.28);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.terms-hero-v3__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 18px;
}

.terms-hero-v3__title span {
  display: block;
}

.terms-hero-v3__title-grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 60%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-hero-v3__sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ── HIGHLIGHT STRIP (4 quick wins) ── */
.terms-highlights {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  margin-top: -1px;
}

.terms-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 991.98px) {
  .terms-highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .terms-highlights__grid { grid-template-columns: 1fr; }
}

.terms-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.terms-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 84, 214, 0.22);
  box-shadow: var(--shadow-md);
}

.terms-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.terms-highlight:nth-child(2) .terms-highlight__icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 8px 18px rgba(8, 33, 77, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.terms-highlight:nth-child(3) .terms-highlight__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 8px 18px rgba(193, 18, 31, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.terms-highlight:nth-child(4) .terms-highlight__icon {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  box-shadow: 0 8px 18px rgba(45, 114, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.terms-highlight__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 2px;
}

.terms-highlight__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* ── 6 GROUPED CARDS ── */
.terms-content-v3 {
  padding: 90px 0 100px;
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    var(--soft-bg);
}

.terms-content-v3__head {
  text-align: center;
  margin-bottom: 56px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .terms-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .terms-content-v3 { padding: 70px 0; }
}
@media (max-width: 575.98px) {
  .terms-grid { grid-template-columns: 1fr; }
}

.terms-v3 {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.terms-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.terms-v3--navy::before { background: linear-gradient(90deg, var(--navy), var(--blue)); }
.terms-v3--red::before  { background: linear-gradient(90deg, var(--red), var(--red-dark)); }

.terms-v3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 84, 214, 0.22);
}

.terms-v3--red:hover  { border-color: rgba(193, 18, 31, 0.22); }
.terms-v3--navy:hover { border-color: rgba(8, 33, 77, 0.22); }

.terms-v3__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.terms-v3__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.12);
  color: var(--blue);
}

.terms-v3--navy .terms-v3__icon {
  background: linear-gradient(135deg, rgba(8, 33, 77, 0.08) 0%, rgba(8, 33, 77, 0.02) 100%);
  border-color: rgba(8, 33, 77, 0.14);
  color: var(--navy);
}

.terms-v3--red .terms-v3__icon {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.04) 100%);
  border-color: rgba(193, 18, 31, 0.15);
  color: var(--red);
}

.terms-v3__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-soft);
  letter-spacing: -0.04em;
  line-height: 1;
}

.terms-v3--navy .terms-v3__num { color: rgba(8, 33, 77, 0.10); }
.terms-v3--red .terms-v3__num  { color: rgba(193, 18, 31, 0.14); }

.terms-v3__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 6px;
}

.terms-v3__lead {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.terms-v3__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-v3__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  border-top: 1px dashed var(--border);
}

.terms-v3__list li:first-child { border-top: 0; padding-top: 4px; }

.terms-v3__list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue);
}

.terms-v3--navy .terms-v3__list li svg { color: var(--navy); }
.terms-v3--red  .terms-v3__list li svg { color: var(--red); }

.terms-v3__list strong {
  font-weight: 800;
  color: var(--navy);
}

/* ── IMPORTANT NOTICE (police record) ── */
.terms-notice {
  background: var(--soft-bg);
  padding: 0 0 80px;
}

.terms-notice__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.terms-notice__card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .terms-notice__card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
}

.terms-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(193, 18, 31, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .terms-notice__icon { margin: 0 auto; }
}

.terms-notice__body {
  position: relative;
  z-index: 1;
}

.terms-notice__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.terms-notice__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  line-height: 1.3;
  margin: 0 0 8px;
}

.terms-notice__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.terms-notice__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all .2s ease;
  position: relative;
  z-index: 1;
}

.terms-notice__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.06);
}

/* ── CTA ── */
.terms-cta-v3 {
  background:
    radial-gradient(60% 80% at 80% 100%, rgba(193, 18, 31, 0.32) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 0%, rgba(45, 114, 255, 0.28) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue-dark) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.terms-cta-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.terms-cta-v3::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.terms-cta-v3 .cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.terms-cta-v3 .cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  line-height: 1.6;
}

/* =====================================================================
   FLEET PAGE v3 — premium redesign (page-flota-vozila)
   ===================================================================== */

/* ── HERO ── */
.fleet-hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}

/* Premium image hero */
.fleet-hero--image {
  background: url('/assets/img/slika3.jpg') center center / cover no-repeat;
  background-image: image-set(
    url('/assets/img/slika3.webp') type('image/webp'),
    url('/assets/img/slika3.jpg')  type('image/jpeg')
  );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 460px;
  padding: 110px 0 90px;
}
.fleet-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 18, 46, 0.78) 0%, rgba(4, 18, 46, 0.55) 50%, rgba(4, 18, 46, 0.40) 100%),
    linear-gradient(180deg, rgba(4, 18, 46, 0.20) 0%, rgba(4, 18, 46, 0) 50%, rgba(4, 18, 46, 0.45) 100%);
  z-index: 1;
}
.fleet-hero--image > .container-xl {
  position: relative;
  z-index: 2;
}

.fleet-hero--image .fleet-hero__title { color: #fff; }
.fleet-hero--image .fleet-hero__title-grad {
  background: linear-gradient(135deg, #b9d3ff 0%, #6cb1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fleet-hero--image .fleet-hero__sub { color: rgba(255, 255, 255, 0.88); }

/* Stats row */
.fleet-hero__stats {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px 20px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.fleet-hero__stats li {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 6px;
}
.fleet-hero__stats li:last-child { border-right: 0; }

.fleet-hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.fleet-hero__stat-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 720px) {
  .fleet-hero--image { padding: 80px 0 60px; min-height: 0; }
  .fleet-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    padding: 18px 16px;
  }
  .fleet-hero__stats li { border-right: 0; }
  .fleet-hero__stats li:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.14); }
}

.fleet-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.fleet-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(21, 84, 214, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.22);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.fleet-hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 84, 214, 0.20);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.fleet-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 0.12em;
}

.fleet-hero__title span { display: block; }

.fleet-hero__title-grad {
  display: inline-block;
  padding-bottom: 0.18em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 60%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fleet-hero__sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ── FLEET GRID ── */
.fleet-section {
  padding: 90px 0 100px;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.03) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    var(--soft-bg);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991.98px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .fleet-section { padding: 70px 0 80px; }
}

@media (max-width: 575.98px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

.fleet-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.fleet-empty svg {
  color: #cbd5e1;
  margin-bottom: 14px;
}

.fleet-empty p {
  font-size: 15px;
  margin: 0;
}

/* ── FLEET CARD ── */
.fleet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21, 84, 214, 0.30);
}

.fleet-card__img {
  position: relative;
  height: 220px;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(21, 84, 214, 0.16) 0%, transparent 70%),
    linear-gradient(180deg, #f5f8fd 0%, #e1ebfa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}

.fleet-card__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 84, 214, 0.18), transparent);
}

.fleet-card__img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(8, 33, 77, 0.20));
  transition: transform .35s ease;
}

.fleet-card:hover .fleet-card__img img {
  transform: scale(1.05);
}

.fleet-card__acriss {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 6px;
  letter-spacing: 1px;
  box-shadow: 0 6px 14px rgba(8, 33, 77, 0.40);
}

.fleet-card__count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(21, 84, 214, 0.18);
}

.fleet-card__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.fleet-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.fleet-card__models {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
  margin-top: -10px;
}

/* GoRental-style 2x2 specs grid sa ikonama */
.fleet-card__specs-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--soft-bg);
  border-radius: 14px;
  padding: 16px 18px;
}

.fleet-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  grid-template-rows: auto auto;
}

.fleet-spec svg {
  grid-row: 1 / 3;
  color: var(--blue);
  flex-shrink: 0;
}

.fleet-spec__l {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.fleet-spec__v {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 2px;
}

.fleet-card__foot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.fleet-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--soft-bg);
  color: var(--navy);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}

.fleet-card__details:hover {
  background: #fff;
  border-color: rgba(21, 84, 214, 0.32);
  color: var(--blue);
}

.fleet-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all .2s ease;
}

.fleet-card__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.06);
}

.btn-fleet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-fleet--ghost {
  background: var(--soft-bg);
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-fleet--ghost:hover {
  background: #fff;
  border-color: rgba(21, 84, 214, 0.32);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn-fleet--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.btn-fleet--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.06);
}

/* ── CTA ── */
.fleet-cta {
  background:
    radial-gradient(60% 80% at 80% 100%, rgba(193, 18, 31, 0.32) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 0%, rgba(45, 114, 255, 0.28) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue-dark) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.fleet-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.fleet-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.fleet-cta .cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.fleet-cta .cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  line-height: 1.6;
}

/* =====================================================================
   DRIVE MONTENEGRO  (editorial image + text alternating)
   ===================================================================== */
.drive-mne {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    #fff;
  position: relative;
  overflow: hidden;
}

.drive-mne__head {
  margin-bottom: 72px;
}

.dmne-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 100px;
}

.dmne-block:last-child {
  margin-bottom: 0;
}

.dmne-block--reverse .dmne-img {
  order: 2;
}

@media (max-width: 991.98px) {
  .drive-mne { padding: 70px 0; }
  .drive-mne__head { margin-bottom: 48px; }
  .dmne-block {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 64px;
  }
  .dmne-block--reverse .dmne-img { order: 0; }
}

/* ── IMAGE side ── */
.dmne-img {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}

.dmne-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.dmne-block:hover .dmne-img img {
  transform: scale(1.05);
}

/* Suptilan dark gradient na dnu slike za bolji kontrast overlay-a */
.dmne-img-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 18, 46, 0.30) 100%);
  z-index: 1;
}

/* Plutajuća kartica preko slike — premium overlap */
.dmne-overlay-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow:
    0 24px 60px rgba(4, 18, 46, 0.30),
    0 4px 12px rgba(4, 18, 46, 0.10);
  min-width: 200px;
  max-width: 280px;
}

.dmne-overlay-card--blue {
  bottom: -28px;
  right: -28px;
}

.dmne-overlay-card--red {
  top: -24px;
  left: -28px;
  border-left: 4px solid var(--red);
}

@media (max-width: 991.98px) {
  .dmne-overlay-card--blue { bottom: -18px; right: 16px; }
  .dmne-overlay-card--red  { top: -18px; left: 16px; }
}

.dmne-oc-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.dmne-oc-num small {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}

.dmne-oc-l {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dmne-oc-stars {
  color: #f5b400;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  line-height: 1;
}

.dmne-oc-q {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.dmne-oc-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* ── TEXT side ── */
.dmne-text-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.dmne-text-tag--red {
  background: var(--red-soft);
  color: var(--red);
}

.dmne-text-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 18px;
}

.dmne-text-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 24px;
}

.dmne-text-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.dmne-text-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  font-size: 15px;
  color: var(--text);
  border-top: 1px dashed var(--border);
}

.dmne-text-list li:first-child { border-top: 0; }
.dmne-text-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.dmne-text-list li strong { font-weight: 800; color: var(--navy); margin-right: 4px; }

/* Routes mini-table */
.dmne-routes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.dmne-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .2s ease;
}

.dmne-route:hover {
  background: #fff;
  border-color: rgba(193, 18, 31, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.dmne-route svg {
  color: var(--red);
  flex-shrink: 0;
}

.dmne-route-from,
.dmne-route-to {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.dmne-route-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .dmne-route {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 10px;
  }
  .dmne-route-time { grid-column: 1 / -1; justify-self: start; }
}

/* =====================================================================
   DESTINATIONS GRID  (image-driven cards)
   ===================================================================== */
.dest-grid-section {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
}

.dest-grid-section__head {
  margin-bottom: 56px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 991.98px) {
  .dest-grid { grid-template-columns: 1fr; gap: 18px; }
  .dest-grid-section { padding: 70px 0; }
}

.dest-card {
  position: relative;
  display: block;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.dest-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.07);
}

.dest-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 18, 46, 0.10) 0%, rgba(4, 18, 46, 0.20) 40%, rgba(4, 18, 46, 0.85) 100%);
  z-index: 1;
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 26px 26px;
  color: #fff;
}

.dest-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dest-card__badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.dest-card__badge--red {
  background: var(--red);
  box-shadow: 0 8px 18px rgba(193, 18, 31, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.dest-card__badge--navy {
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(8, 33, 77, 0.50), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dest-card__code {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 6px;
}

.dest-card__bottom {
  position: relative;
}

.dest-card__bottom::before {
  content: '';
  position: absolute;
  top: -16px; left: 0;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--red));
  border-radius: 3px;
}

.dest-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 8px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.dest-card__desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0 0 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.dest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: gap .25s ease, border-color .25s ease;
}

.dest-card:hover .dest-card__cta {
  gap: 12px;
  border-color: #fff;
}

/* =====================================================================
   WHY ELITE v4  (split: image + overlay cards | feature rows)
   ===================================================================== */
.why-v4 {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 0% 100%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
  position: relative;
}

.why-v4__split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .why-v4 { padding: 70px 0; }
  .why-v4__split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ── MEDIA side ── */
.why-v4__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}

@media (max-width: 991.98px) {
  .why-v4__media { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
}

.why-v4__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}

.why-v4:hover .why-v4__media img {
  transform: scale(1.04);
}

.why-v4__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 46, 0.10) 0%, transparent 35%, rgba(4, 18, 46, 0.45) 100%);
  z-index: 1;
}

.why-v4__corner {
  position: absolute;
  top: 16px; right: 16px;
  width: 80px; height: 80px;
  border-top: 2px solid rgba(212, 175, 55, 0.55);
  border-right: 2px solid rgba(212, 175, 55, 0.55);
  border-radius: 0 12px 0 0;
  z-index: 2;
  pointer-events: none;
}

/* Floating overlay cards */
.why-v4__overlay {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow:
    0 24px 60px rgba(4, 18, 46, 0.30),
    0 4px 12px rgba(4, 18, 46, 0.10);
}

.why-v4__overlay--top {
  top: 22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.why-v4__overlay--bottom {
  bottom: -28px;
  right: -28px;
  border-left: 4px solid var(--blue);
  min-width: 200px;
}

@media (max-width: 991.98px) {
  .why-v4__overlay--top    { top: 16px; left: 16px; }
  .why-v4__overlay--bottom { bottom: -18px; right: 16px; }
}

.why-v4-oc__icon {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.why-v4-oc__body {
  line-height: 1.2;
}

.why-v4-oc__stars {
  color: #f5b400;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.why-v4-oc__score {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.why-v4-oc__score strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.why-v4-stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.why-v4-stat__num small {
  font-size: 18px;
  color: var(--muted);
  font-weight: 700;
  margin-left: 2px;
  letter-spacing: 0;
}

.why-v4-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.why-v4-stat__label strong {
  color: var(--navy);
  font-weight: 800;
}

/* ── CONTENT side ── */
.why-v4__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 18px;
}

.why-v4__lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 580px;
}

.why-v4__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.why-v4-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-v4-row:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 84, 214, 0.22);
}

.why-v4-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
  color: #fff;
}

.why-v4-row__icon--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.why-v4-row__icon--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 8px 18px rgba(8, 33, 77, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.why-v4-row__icon--red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 8px 18px rgba(193, 18, 31, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.why-v4-row__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin: 0 0 4px;
}

.why-v4-row__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.why-v4__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--blue-soft);
  transition: gap .25s ease, border-color .25s ease;
}

.why-v4__link:hover {
  gap: 12px;
  border-color: var(--blue);
  color: var(--blue);
}

/* =====================================================================
   STEPS v4  (banner image + clean horizontal flow without cards)
   ===================================================================== */
.steps-v4 {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.steps-v4__head {
  text-align: center;
  margin-bottom: 56px;
}

@media (max-width: 991.98px) {
  .steps-v4 { padding: 70px 0; }
  .steps-v4__head { margin-bottom: 40px; }
}

/* ── BANNER ── */
.steps-v4__banner {
  position: relative;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}

@media (max-width: 767.98px) {
  .steps-v4__banner { height: 220px; margin-bottom: 48px; }
}

.steps-v4__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps-v4__banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 18, 46, 0.78) 0%, rgba(4, 18, 46, 0.45) 50%, rgba(4, 18, 46, 0.20) 100%),
    radial-gradient(50% 60% at 80% 90%, rgba(193, 18, 31, 0.20) 0%, transparent 70%);
  z-index: 1;
}

.steps-v4__banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 48px;
  z-index: 2;
  color: #fff;
}

@media (max-width: 767.98px) {
  .steps-v4__banner-content { padding: 24px 28px; }
}

.steps-v4__banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 18px;
}

.steps-v4__banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 178, 107, 0.28);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.steps-v4__banner-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 520px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.30);
}

/* ── FLOW (no isolated cards) ── */
.steps-v4__flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
}

@media (max-width: 991.98px) {
  .steps-v4__flow {
    flex-direction: column;
    gap: 28px;
  }
}

.step-v4 {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.step-v4__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--blue-soft);
  border-radius: 999px;
}

.step-v4:nth-child(3) .step-v4__num {
  color: var(--navy);
  background: rgba(8, 33, 77, 0.08);
}

.step-v4:nth-child(5) .step-v4__num {
  color: var(--red);
  background: var(--red-soft);
}

.step-v4__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  position: relative;
}

.step-v4__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(21, 84, 214, 0.28);
  pointer-events: none;
}

.step-v4:nth-child(3) .step-v4__icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 14px 30px rgba(8, 33, 77, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.step-v4:nth-child(3) .step-v4__icon::after {
  border-color: rgba(8, 33, 77, 0.30);
}

.step-v4:nth-child(5) .step-v4__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 14px 30px rgba(193, 18, 31, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.step-v4:nth-child(5) .step-v4__icon::after {
  border-color: rgba(193, 18, 31, 0.30);
}

.step-v4__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.step-v4__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto 14px;
}

.step-v4__time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--soft-bg);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
}

.step-v4__time::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* Connector arrows between steps */
.step-v4__connect {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  align-self: center;
  margin-top: 50px;          /* line up with the icon (76px / 2 + spacing above) */
  opacity: 0.45;
}

@media (max-width: 991.98px) {
  .step-v4__connect {
    transform: rotate(90deg);
    margin: 0;
  }
}

/* =====================================================================
   POPULAR CATEGORIES  (6 quick browse-by-type tiles)
   ===================================================================== */
.cats-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.cats-section__head {
  margin-bottom: 56px;
}

@media (max-width: 991.98px) {
  .cats-section { padding: 70px 0; }
  .cats-section__head { margin-bottom: 40px; }
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 991.98px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 575.98px) {
  .cats-grid { grid-template-columns: 1fr; }
}

.cat-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.cat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.cat-tile--navy::before { background: linear-gradient(90deg, var(--navy), var(--blue)); }
.cat-tile--red::before  { background: linear-gradient(90deg, var(--red), var(--red-dark)); }

.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 84, 214, 0.25);
}

.cat-tile--red:hover  { border-color: rgba(193, 18, 31, 0.25); }
.cat-tile--navy:hover { border-color: rgba(8, 33, 77, 0.25); }

.cat-tile:hover::before {
  transform: scaleX(1);
}

.cat-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(45, 114, 255, 0.04) 100%);
  border: 1px solid rgba(21, 84, 214, 0.14);
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.cat-tile--navy .cat-tile__icon {
  background: linear-gradient(135deg, rgba(8, 33, 77, 0.08) 0%, rgba(8, 33, 77, 0.02) 100%);
  border-color: rgba(8, 33, 77, 0.14);
  color: var(--navy);
}

.cat-tile--red .cat-tile__icon {
  background: linear-gradient(135deg, var(--red-soft) 0%, rgba(193, 18, 31, 0.04) 100%);
  border-color: rgba(193, 18, 31, 0.16);
  color: var(--red);
}

.cat-tile:hover .cat-tile__icon {
  transform: scale(1.06);
}

.cat-tile__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin: 0 0 2px;
  line-height: 1.2;
}

.cat-tile__meta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.cat-tile__arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: color .25s ease, transform .25s ease;
}

.cat-tile:hover .cat-tile__arrow {
  color: var(--blue);
  transform: translateX(4px);
}

.cat-tile--red:hover .cat-tile__arrow  { color: var(--red); }
.cat-tile--navy:hover .cat-tile__arrow { color: var(--navy); }

/* =====================================================================
   WHY CHOOSE US  (4 small feature cards — GoRental style)
   ===================================================================== */
.wcu-section {
  padding: 100px 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    var(--soft-bg);
}

.wcu-section__head {
  margin-bottom: 56px;
}

@media (max-width: 991.98px) {
  .wcu-section { padding: 70px 0; }
  .wcu-section__head { margin-bottom: 40px; }
}

.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1199.98px) {
  .wcu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .wcu-grid { grid-template-columns: 1fr; }
}

.wcu-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}

.wcu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 0 0 4px 4px;
  transition: transform .35s ease;
}

.wcu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 84, 214, 0.22);
}

.wcu-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.wcu-card__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--blue-soft);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color .3s ease;
  pointer-events: none;
}

.wcu-card:nth-child(2) .wcu-card__num { color: rgba(8, 33, 77, 0.06); }
.wcu-card:nth-child(3) .wcu-card__num { color: rgba(193, 18, 31, 0.10); }
.wcu-card:nth-child(4) .wcu-card__num { color: rgba(45, 114, 255, 0.10); }

.wcu-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 14px 28px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  position: relative;
  z-index: 1;
}

.wcu-card:nth-child(2) .wcu-card__icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 14px 28px rgba(8, 33, 77, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.wcu-card:nth-child(3) .wcu-card__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 14px 28px rgba(193, 18, 31, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.wcu-card:nth-child(4) .wcu-card__icon {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  box-shadow: 0 14px 28px rgba(45, 114, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.wcu-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}

.wcu-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   TRUST STRIP — photo avatari u mini reviewima
   ===================================================================== */
.trust-renters-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(21, 84, 214, 0.32);
}

.trust-mini-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(8, 33, 77, 0.10);
}

/* =====================================================================
   WE DELIVER WHERE YOU NEED US — split text + image with floating pins
   ===================================================================== */
.deliver-section {
  padding: 90px 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(193, 18, 31, 0.04) 0%, transparent 60%),
    var(--soft-bg);
}

.deliver-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .deliver-section { padding: 64px 0; }
  .deliver-grid { grid-template-columns: 1fr; gap: 36px; }
}

.deliver-text {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.deliver-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.deliver-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.deliver-list li:last-child { border-bottom: 0; }
.deliver-list li svg { flex-shrink: 0; }

.deliver-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(21, 84, 214, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all .2s ease;
  margin-top: 8px;
}

.deliver-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 84, 214, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.06);
}

.deliver-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  min-height: 320px;
}

.deliver-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deliver-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 46, 0.10) 0%, rgba(4, 18, 46, 0.35) 100%);
  z-index: 1;
}

/* Floating pin cards over the image */
.deliver-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 14px 32px rgba(4, 18, 46, 0.25);
  min-width: 200px;
  transition: transform .25s ease;
}

.deliver-pin:hover {
  transform: translateY(-3px);
}

.deliver-pin--1 { top: 18%; left: 4%; }
.deliver-pin--2 { top: 50%; right: 4%; transform: translateY(-50%); }
.deliver-pin--2:hover { transform: translateY(calc(-50% - 3px)); }
.deliver-pin--3 { bottom: 14%; left: 18%; }

@media (max-width: 767.98px) {
  .deliver-pin { min-width: 160px; padding: 8px 12px; }
  .deliver-pin--1 { top: 6%; left: 4%; }
  .deliver-pin--2 { top: auto; bottom: 38%; right: 4%; transform: none; }
  .deliver-pin--2:hover { transform: translateY(-3px); }
  .deliver-pin--3 { bottom: 4%; left: 4%; }
}

.deliver-pin__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(21, 84, 214, 0.34);
}

.deliver-pin--3 .deliver-pin__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 6px 14px rgba(193, 18, 31, 0.34);
}

.deliver-pin__title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.deliver-pin__sub {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
  line-height: 1.3;
}

/* =====================================================================
   FAQ — 4 in horizontal grid (collapsible)
   ===================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.faq-grid .faq-item {
  margin-bottom: 0;
}

.faq-grid .faq-question {
  font-size: 14px;
  padding: 16px 18px;
  gap: 10px;
}

.faq-grid .faq-answer {
  padding: 0 18px 16px;
  font-size: 13.5px;
}

@media (max-width: 991.98px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   CTA banner trust chips row (ispod dugmadi)
   ===================================================================== */
.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 24px;
  position: relative;
}

.cta-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
}

.cta-trust-chip svg {
  color: #6cb1ff;
  flex-shrink: 0;
}

/* ===== UTILITY: section heads & driver row tweaks ===== */
.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.cta-banner > .container-xl {
  position: relative;
  z-index: 2;
}

.driver-row__col {
  flex: 1;
}

.driver-row .form-label-sm--inline {
  margin-bottom: 0;
}

.driver-row .form-input-group--narrow {
  max-width: 280px;
}

.car-svg-placeholder {
  opacity: 0.4;
}

.trust-stars--tp {
  color: #00b67a;
}

/* ===== TRUST STRIP COMPACT (Google + Trustpilot only) ===== */
.trust-strip--compact {
  padding: 22px 0;
  background:
    linear-gradient(180deg, #fff 0%, #f8fafd 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.trust-strip--compact::before,
.trust-strip--compact::after { display: none; }

.trust-strip__inner--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 48px;
}

.trust-strip__divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

@media (max-width: 600px) {
  .trust-strip__divider { display: none; }
  .trust-strip__inner--centered { gap: 18px; }
}

/* ============================================================
   PREMIUM SECTION THEMES — alternating navy / light + gold dividers
============================================================ */

/* Section themes — apply via class on <section> */
.section-light {
  background: #fff;
  position: relative;
}

.section-soft {
  background:
    radial-gradient(70% 50% at 0% 0%, rgba(21, 84, 214, 0.04) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(193, 18, 31, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #f5f8fd 100%);
  position: relative;
}

.section-dark {
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(45, 114, 255, 0.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(193, 18, 31, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--blue-dark) 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid pattern for dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.section-dark > .container-xl,
.section-dark > div {
  position: relative;
  z-index: 1;
}

/* Gold hairline separator between sections */
.section-dark + .section-light::before,
.section-light + .section-dark::before,
.section-soft + .section-dark::before,
.section-dark + .section-soft::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.55) 50%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* Section eyebrow — uniform plavo/crveno */
.section-eyebrow {
  color: var(--blue);
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: #6cb1ff; }

/* Section h2 on dark */
.section-dark .section-h2 { color: #fff; }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.75); }

/* Insurance cards on dark */
.section-dark .ins-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.section-dark .ins-card.is-featured {
  background: rgba(193, 18, 31, 0.10);
  border-color: rgba(193, 18, 31, 0.55);
  box-shadow: 0 24px 60px rgba(193, 18, 31, 0.22);
}
.section-dark .ins-name { color: #fff; }
.section-dark .ins-price { color: #fff; }
.section-dark .ins-features li { color: rgba(255, 255, 255, 0.82); }
.section-dark .ins-most-popular {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
}
.section-dark .ins-side-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}
.section-dark .ins-side-icon {
  background: linear-gradient(135deg, rgba(45, 114, 255, 0.18), rgba(45, 114, 255, 0.04));
  color: #6cb1ff;
}
.section-dark .ins-side-title { color: #fff; }
.section-dark .ins-side-text { color: rgba(255, 255, 255, 0.75); }
.section-dark .ins-side-link { color: #6cb1ff; }

/* Accent — plavi gradient u naslovima sekcija */
.section-h2 .accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.section-dark .section-h2 .accent {
  background: linear-gradient(135deg, #b9d3ff 0%, #6cb1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== RATING SUMMARY (Google + Trustpilot — odmah ispod hero) ===== */
.rating-summary-section {
  padding: 28px 0;
  background: #f5f8fd;
}
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px 56px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(8, 33, 77, 0.06);
  margin-bottom: 0;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .rating-summary-section { padding: 20px 0; }
  .rating-summary {
    gap: 12px 20px;
    padding: 14px 16px;
    border-radius: 12px;
  }
}

.rating-summary__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-summary__brand {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  line-height: 1;
}

.rating-summary__brand--tp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00b67a;
  font-size: 18px;
}

.rating-summary__stars {
  position: relative;
  display: inline-block;
  color: #d9dee6;            /* empty (track) stars */
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 1;
  white-space: nowrap;
}
.rating-summary__stars > i {
  position: absolute;
  inset: 0;
  width: var(--rate, 100%);  /* fractional fill, e.g. 3.7/5 = 74% */
  overflow: hidden;
  white-space: nowrap;
  font-style: normal;
  color: #f5b400;            /* Google gold fill */
}
.rating-summary__stars--tp > i { color: #00b67a; }   /* Trustpilot green fill */

.rating-summary__score {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
}
.rating-summary__score strong {
  color: var(--navy-deep);
  font-size: 20px;
  font-weight: 800;
  margin-right: 2px;
}

.rating-summary__count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  border-left: 1px solid var(--border);
  padding-left: 14px;
  line-height: 1.2;
}

.rating-summary__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

@media (max-width: 720px) {
  .rating-summary { gap: 14px 24px; padding: 18px 20px; }
  .rating-summary__divider { display: none; }
  .rating-summary__count { border-left: 0; padding-left: 0; }
  .rating-summary__item { flex-wrap: wrap; justify-content: center; }
}

/* ===== STEPS v2 — split (text left + connected step rail right) ===== */
.steps-v2 { padding: 80px 0; }

.steps-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.steps-v2__intro {
  position: sticky;
  top: 100px;
}

.steps-v2 .section-h2 { margin-bottom: 14px; }
.steps-v2 .section-sub { max-width: 460px; margin-bottom: 26px; }

.steps-v2__highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(8, 33, 77, 0.06);
  margin-bottom: 26px;
  max-width: 380px;
}
.steps-v2__highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(21, 84, 214, 0.30);
}
.steps-v2__highlight-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
}
.steps-v2__highlight-text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.steps-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(21, 84, 214, 0.32);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.steps-v2__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  box-shadow: 0 14px 32px rgba(21, 84, 214, 0.42);
}
.steps-v2__cta svg {
  order: 2;
  transition: transform .2s ease;
}
.steps-v2__cta:hover svg { transform: translateX(3px); }

/* Right rail */
.steps-v2__rail {
  position: relative;
  padding-left: 26px;
}
.steps-v2__rail-line {
  position: absolute;
  left: 26px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--red) 100%);
  opacity: 0.18;
  border-radius: 2px;
}

.steps-v2__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  padding: 8px 0 32px;
  position: relative;
}
.steps-v2__row:last-child { padding-bottom: 0; }

.steps-v2__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(21, 84, 214, 0.18);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-left: -28px;
}
.steps-v2__row:nth-child(2) .steps-v2__num {
  border-color: #6e3ad6;
  color: #6e3ad6;
  box-shadow: 0 8px 20px rgba(110, 58, 214, 0.18);
}
.steps-v2__row:last-child .steps-v2__num {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 8px 20px rgba(193, 18, 31, 0.20);
}

.steps-v2__body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px 18px;
  box-shadow: 0 6px 18px rgba(8, 33, 77, 0.05);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.steps-v2__row:hover .steps-v2__body {
  transform: translateY(-3px);
  border-color: rgba(21, 84, 214, 0.30);
  box-shadow: 0 16px 36px rgba(8, 33, 77, 0.10);
}

.steps-v2__row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.steps-v2__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-v2__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  flex: 1;
}
.steps-v2__time {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--soft-bg);
  padding: 4px 10px;
  border-radius: 999px;
}
.steps-v2__desc {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .steps-v2__grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-v2__intro { position: static; }
}
@media (max-width: 600px) {
  .steps-v2__rail { padding-left: 18px; }
  .steps-v2__rail-line { left: 18px; }
  .steps-v2__num { width: 44px; height: 44px; font-size: 18px; margin-left: -22px; }
  .steps-v2__row { grid-template-columns: 44px 1fr; gap: 14px; }
  .steps-v2__body { padding: 14px 16px; }
}

/* ===== FAQ vertical layout (col-md-10) ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list .faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.faq-list .faq-item:hover {
  border-color: rgba(21, 84, 214, 0.30);
  box-shadow: 0 8px 22px rgba(8, 33, 77, 0.06);
}
.faq-list .faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(21, 84, 214, 0.12);
}

.faq-list .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-list .faq-question:hover { color: var(--blue); }
.faq-list .faq-chevron {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform .25s ease;
}
.faq-list .faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-list .faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* ===== CTA LIGHT — compact card before footer (predah od navy) ===== */
.cta-light {
  padding: 32px 0 56px;
  background: #fff;
}

.cta-light__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background:
    radial-gradient(70% 100% at 100% 50%, rgba(193, 18, 31, 0.06) 0%, transparent 70%),
    radial-gradient(60% 100% at 0% 50%, rgba(21, 84, 214, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #fbfcfe 0%, #f1f5fb 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 40px;
  box-shadow: 0 14px 36px rgba(8, 33, 77, 0.06);
}

.cta-light__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin: 0 0 6px;
  line-height: 1.2;
}
.cta-light__sub {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-light__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-light .btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(21, 84, 214, 0.32);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cta-light .btn-cta-red:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  box-shadow: 0 16px 36px rgba(21, 84, 214, 0.42);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.30);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  background: #1fb955;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.40);
}

@media (max-width: 720px) {
  .cta-light__inner { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  .cta-light__actions { width: 100%; }
  .cta-light .btn-cta-red, .btn-whatsapp { flex: 1; justify-content: center; }
}

/* ===== FLEET FILTER CHIPS ===== */
.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.fleet-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-display);
}
.fleet-chip svg { color: var(--muted); transition: color .2s ease; }
.fleet-chip:hover {
  border-color: rgba(21, 84, 214, 0.32);
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21, 84, 214, 0.12);
}
.fleet-chip:hover svg { color: var(--blue); }

.fleet-chip.is-active {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 84, 214, 0.32);
}
.fleet-chip.is-active svg { color: #fff; }

.fleet-chip__count {
  background: rgba(21, 84, 214, 0.10);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  min-width: 22px;
  text-align: center;
}
.fleet-chip.is-active .fleet-chip__count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ===== FLEET CARD HEADER (name + price right-aligned) ===== */
.fleet-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.fleet-card__head > div:first-child { flex: 1; min-width: 0; }

.fleet-card__price {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.06) 0%, rgba(193, 18, 31, 0.02) 100%);
  border: 1px solid rgba(193, 18, 31, 0.18);
  padding: 8px 12px;
  border-radius: 12px;
}
.fleet-card__price-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 4px;
}
.fleet-card__price-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fleet-card__price-day {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

/* Slight pop for the whole card on hover */
.fleet-card { isolation: isolate; }
.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(21, 84, 214, 0) 0%, rgba(21, 84, 214, 0) 100%);
  transition: background .3s ease;
  z-index: 0;
}
.fleet-card { position: relative; }
.fleet-card:hover::before {
  background: linear-gradient(180deg, rgba(21, 84, 214, 0.04) 0%, rgba(21, 84, 214, 0) 60%);
}
.fleet-card > * { position: relative; z-index: 1; }

/* ===== FLEET CARD SPECS — compact one-row (icon + value only) ===== */
.fleet-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.fleet-card__specs .fleet-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.fleet-card__specs .fleet-spec svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT US — simplified (4 sections)
============================================================ */

/* HERO with image background — left-aligned, top, no clipping */
.about-hero {
  position: relative;
  min-height: 0;
  padding: 80px 0 70px;
  overflow: hidden;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.about-hero__sub { margin-left: auto; margin-right: auto; }
.about-hero__cta { justify-content: center; }
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  padding-bottom: 4px;
}
.about-hero__title-grad {
  display: inline;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.about-hero__sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 22px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.40);
}
.about-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* STORY — flat, no white frame around row */
.about-story {
  padding: 80px 0 70px;
  background: #fff !important;
}
.about-story .container-xl > .row {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.about-story .container-xl > .row::before,
.about-story .container-xl > .row::after { display: none !important; }

.about-story__media {
  border-radius: 14px !important;
  overflow: hidden;
  aspect-ratio: auto !important;
  box-shadow: 0 18px 40px rgba(8, 33, 77, 0.10) !important;
}
.about-story__media img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  transition: none;
}
.about-story__media:hover img { transform: none !important; }
.about-story__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 12px 0;
}

/* Inline stats — flat, no frame */
.about-story .about-stats,
.about-stats {
  list-style: none;
  padding: 0 !important;
  margin: 56px 0 0;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  overflow: visible !important;
}
.about-stats::before,
.about-stats::after { display: none !important; content: none !important; }

.about-stats li {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.about-stats li:last-child { border-right: 0; }
.about-stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.about-stats__label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .about-stats li { border-right: 0; padding: 0; }
  .about-stats li:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* JOURNEY — horizontal timeline with icon nodes */
.about-journey { padding: 80px 0; }

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 24px 0 0;
}

/* horizontal line connecting nodes */
.journey-track__line {
  position: absolute;
  left: calc(12.5% + 0px);
  right: calc(12.5% + 0px);
  top: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6e3ad6 50%, var(--red) 100%);
  opacity: 0.25;
  z-index: 0;
  border-radius: 3px;
}

.journey-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
  z-index: 1;
}

.journey-step__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 28px rgba(21, 84, 214, 0.32),
    0 0 0 6px rgba(255, 255, 255, 0.95),
    0 0 0 7px rgba(21, 84, 214, 0.18);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.journey-step:hover .journey-step__icon { transform: translateY(-4px) scale(1.03); }

/* color gradient progression */
.journey-step:nth-child(2) .journey-step__icon {
  background: linear-gradient(135deg, #4a4ce0 0%, #6e3ad6 100%);
  box-shadow: 0 14px 28px rgba(110, 58, 214, 0.32), 0 0 0 6px rgba(255, 255, 255, 0.95), 0 0 0 7px rgba(110, 58, 214, 0.18);
}
.journey-step:nth-child(3) .journey-step__icon {
  background: linear-gradient(135deg, #8b3aa3 0%, #b02a4d 100%);
  box-shadow: 0 14px 28px rgba(139, 58, 163, 0.32), 0 0 0 6px rgba(255, 255, 255, 0.95), 0 0 0 7px rgba(139, 58, 163, 0.18);
}
.journey-step:nth-child(4) .journey-step__icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 14px 28px rgba(193, 18, 31, 0.32), 0 0 0 6px rgba(255, 255, 255, 0.95), 0 0 0 7px rgba(193, 18, 31, 0.18);
}

.journey-step__year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.journey-step__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.journey-step__desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 991px) {
  .journey-track { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .journey-track__line { display: none; }
}

@media (max-width: 600px) {
  .journey-track { grid-template-columns: 1fr; gap: 32px; }
  .journey-step__icon { width: 64px; height: 64px; }
  .journey-step__year { font-size: 24px; }
}

/* COVERAGE — inline row, no cards */
.about-coverage { padding: 70px 0 80px; }
.coverage-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
}
.coverage-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-item:nth-child(2) .coverage-item__icon { background: rgba(193, 18, 31, 0.08); color: var(--red); }
.coverage-item:nth-child(3) .coverage-item__icon { background: rgba(8, 33, 77, 0.08); color: var(--navy); }
.coverage-item__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.coverage-item__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .coverage-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== ORDER SUMMARY — premium card ===== */
.order-summary--premium {
  position: sticky;
  top: 90px;
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(21, 84, 214, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(21, 84, 214, 0.14);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow:
    0 28px 60px rgba(8, 33, 77, 0.10),
    0 4px 12px rgba(8, 33, 77, 0.04);
  overflow: hidden;
}
.order-summary--premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 50%, var(--red) 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.order-summary__head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.order-summary--premium .summary-dates-block {
  background: var(--soft-bg);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.order-summary--premium .summary-dates-block .d-flex { gap: 10px !important; }

.order-summary--premium hr {
  border: 0;
  border-top: 1px dashed var(--border);
  margin: 16px 0 !important;
}

.order-summary--premium .summary-line {
  font-size: 14.5px !important;
  padding: 7px 0 !important;
}

.order-summary--premium .summary-total-line {
  background: linear-gradient(135deg, rgba(21, 84, 214, 0.06) 0%, rgba(21, 84, 214, 0.02) 100%);
  border: 1px solid rgba(21, 84, 214, 0.14);
  border-radius: 12px;
  padding: 14px 16px !important;
  margin-top: 6px;
  font-size: 16px !important;
  font-weight: 800 !important;
}
.order-summary--premium #summaryTotal {
  font-size: 1.6rem !important;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* ===== FLEET PAGE — intro, locations, trust, faq ===== */
.fleet-intro {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}
.fleet-intro .section-h2 { margin-bottom: 14px; }
.fleet-intro .section-sub { margin: 0 auto; max-width: 720px; }

/* LOCATIONS */
.fleet-locations { padding: 70px 0 80px; }
.fleet-locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.fleet-location {
  text-align: center;
  padding: 26px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fleet-location:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 84, 214, 0.30);
  box-shadow: 0 16px 32px rgba(8, 33, 77, 0.10);
}
.fleet-location__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-location__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.fleet-location__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .fleet-locations__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fleet-locations__grid { grid-template-columns: 1fr; }
}

/* TRUST + CTA */
.fleet-trust { padding: 70px 0 80px; }
.fleet-trust__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fleet-trust__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy-deep);
}
.fleet-trust__list svg { flex-shrink: 0; }

.fleet-trust__cta {
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(21, 84, 214, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(21, 84, 214, 0.14);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 18px 40px rgba(8, 33, 77, 0.08);
  position: relative;
  overflow: hidden;
}
.fleet-trust__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 50%, var(--red) 100%);
}
.fleet-trust__cta-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin: 0 0 10px;
  line-height: 1.25;
}
.fleet-trust__cta-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

/* FAQ — reuse home .faq-list styles, add padding */
.fleet-faq { padding: 70px 0 90px; }

/* ============================================================
   ABOUT US — SEO + conversion (v3)
============================================================ */

/* HERO eyebrow — dodatak na postojeci .about-hero */
.about-hero__eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* TRUST BAR — 4 numbers below hero */
.about-trust-bar {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.about-trust-bar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-trust-bar__list li {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.about-trust-bar__list li:last-child { border-right: 0; }

.about-trust-bar__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.about-trust-bar__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .about-trust-bar__list { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .about-trust-bar__list li { border-right: 0; padding: 0; }
  .about-trust-bar__list li:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* WHY US — 4 cards in row */
.about-why { padding: 70px 0 80px; }
.about-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-why__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.about-why__item:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 84, 214, 0.30);
  box-shadow: 0 18px 36px rgba(8, 33, 77, 0.10);
}
.about-why__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about-why__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.about-why__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .about-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-why__grid { grid-template-columns: 1fr; }
}

/* COVERAGE 5 columns variant */
.coverage-row--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .coverage-row--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .coverage-row--5 { grid-template-columns: 1fr; }
}

/* Contact page h1 — usklađen sa hero h1 ostalih strana */
.contact-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 14px;
}

/* ============================================================
   MOBILE NAV — transparent, over hero (home page only)
============================================================ */
/* ============================================================
   MOBILE NAVBAR — clean Landkit pattern
============================================================ */
@media (max-width: 991.98px) {
  /* Navbar wrapper */
  nav.d-lg-none.navbar {
    padding: 10px 0;
    min-height: 56px;
    box-shadow: 0 1px 0 rgba(8, 33, 77, 0.06);
  }

  /* Logo */
  .logo-mob {
    height: 32px;
    width: auto;
    display: block;
  }

  /* Hamburger toggler dugme */
  .toggler-mob {
    padding: 6px 10px;
    border: 1.5px solid rgba(21, 84, 214, 0.22);
    border-radius: 10px;
    background: #fff;
  }
  .toggler-mob:focus { box-shadow: none; }
  .toggler-mob svg { display: block; }

  /* CTA dugme (Check Availability) van collapse-a — sakrij na mobilnoj */
  nav.d-lg-none.navbar > .container > .navbar-btn { display: none; }

  /* X dugme za zatvaranje menija (unutar collapse-a) */
  .navbar-collapse > .navbar-toggler {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #1554d6;
  }
}
.mobile-nav-over-hero .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
  padding: 6px 10px;
}
.mobile-nav-over-hero .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Open menu — dark panel + white links (consistent across ALL mobile navbars) */
.navbar.d-lg-none .navbar-collapse {
  background: var(--navy-deep);
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.40);
}
.navbar.d-lg-none .nav-link {
  color: #fff !important;
  padding: 12px 4px !important;
  font-weight: 600;
}
.navbar.d-lg-none .nav-link:hover { color: #6cb1ff !important; }

/* When home mobile nav is over hero, push hero up */
.mobile-nav-over-hero + .hero-section {
  margin-top: 0;
}

/* ============================================================
   MOBILE HERO — fit in first viewport (above-the-fold)
============================================================ */
@media (max-width: 991px) {
  /* Compact padding, full viewport */
  .hero-section {
    padding: 84px 0 36px;
    min-height: auto;
  }
  .hero-section .hero-headline {
    font-size: clamp(24px, 6.5vw, 32px) !important;
    margin-bottom: 12px;
    line-height: 1.15;
  }
  .hero-section .hero-headline .line2 {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
  }
  /* Hide subtext + chips on mobile (tighten above-the-fold) */
  .hero-section .hero-subtext,
  .hero-section .trust-chips {
    display: none;
  }
  /* Tighter columns gap */
  .hero-section .row.g-4 { --bs-gutter-y: 16px; }

  /* Booking card — compact */
  .booking-card {
    padding: 18px 18px 18px;
    border-radius: 16px;
  }
  .booking-card__head { margin-bottom: 12px; }
  .booking-card__title { font-size: 17px; }
  .booking-tabs { margin-bottom: 14px; }
  .booking-tab { font-size: 12px; padding: 7px 10px; }
  .booking-card .form-input-group { height: 44px; }
  .booking-card .form-label-sm { font-size: 10.5px; margin-bottom: 3px; }
  .booking-card .row.g-3 { --bs-gutter-y: 10px; --bs-gutter-x: 10px; }
  .btn-search {
    padding: 12px 18px;
    font-size: 14px;
    margin-top: 2px;
  }
  .free-cancel { font-size: 11.5px; margin-top: 8px; }
  .age-surcharge-note { font-size: 11px; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 72px 0 28px; }
  .hero-section .hero-headline { font-size: clamp(22px, 7vw, 28px) !important; }
  .hero-section .hero-headline .line2 { font-size: clamp(16px, 5.5vw, 22px); }
  .booking-card { padding: 16px; }
}

/* ============================================================
   MOBILE TWEAKS — section padding, deliver pins, steps, cars gap
============================================================ */
@media (max-width: 991px) {
  /* Tighter section padding */
  .why-section,
  .steps-section,
  .cars-section,
  .insurance-section,
  .deliver-section,
  .testi-section,
  .faq-section { padding: 48px 0 !important; }

  /* Cars grid — bigger gap between cards */
  .cars-section .row { --bs-gutter-y: 24px !important; --bs-gutter-x: 16px !important; }

  /* Deliver section — hide floating pins (overlap and look broken on small screens) */
  .deliver-pin { display: none !important; }
  .deliver-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .deliver-media {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    height: 200px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }
  .deliver-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

  /* Steps v2 — hide numbered circles on mobile (rail line not visible anyway) */
  .steps-v2__rail { padding-left: 0 !important; }
  .steps-v2__rail-line,
  .steps-v2__num { display: none !important; }
  .steps-v2__row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 0 14px !important;
  }
  .steps-v2__body { padding: 16px 18px !important; }
  .steps-v2__row-head { gap: 8px !important; }

  /* Section heads tighter */
  .section-head { margin-bottom: 24px !important; }
}

@media (max-width: 480px) {
  .why-section,
  .steps-section,
  .cars-section,
  .insurance-section,
  .deliver-section,
  .testi-section,
  .faq-section { padding: 36px 0 !important; }

  .cars-section .row { --bs-gutter-y: 20px !important; }

  .deliver-media { height: 170px !important; }
}

/* ============================================================
   GLIDE.JS — car gallery slider styling
============================================================ */
.car-gallery {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
}
.vm-gallery {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
}

.car-gallery .glide__slide,
.vm-gallery .glide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.car-gallery .glide__slide img {
  max-width: 92%;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.vm-gallery .glide__slide img {
  max-width: 92%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .vm-gallery { height: 220px; }
  .vm-gallery .glide__slide img { max-height: 180px; }
}

/* Arrows — plave okrugle dugmad */
.car-gallery .glide__arrow,
.vm-gallery .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  border: 1px solid rgba(21, 84, 214, 0.18);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(8, 33, 77, 0.14);
  transition: all .2s ease;
  text-shadow: none;
  opacity: 0;
}
.car-gallery:hover .glide__arrow,
.vm-gallery:hover .glide__arrow {
  opacity: 1;
}
.car-gallery .glide__arrow:hover,
.vm-gallery .glide__arrow:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.car-gallery .glide__arrow--left,
.vm-gallery .glide__arrow--left { left: 10px; }
.car-gallery .glide__arrow--right,
.vm-gallery .glide__arrow--right { right: 10px; }

@media (max-width: 768px) {
  .car-gallery .glide__arrow,
  .vm-gallery .glide__arrow { opacity: 1; width: 32px; height: 32px; }
}

/* Bullets — plave tačke */
.car-gallery .glide__bullets,
.vm-gallery .glide__bullets {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.car-gallery .glide__bullet,
.vm-gallery .glide__bullet {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(8, 33, 77, 0.20);
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
}
.car-gallery .glide__bullet:hover,
.vm-gallery .glide__bullet:hover {
  background: rgba(21, 84, 214, 0.55);
}
.car-gallery .glide__bullet--active,
.vm-gallery .glide__bullet--active {
  background: var(--blue);
  width: 18px;
  border-radius: 999px;
}

/* ============================================================
   MOBILE — extra top padding on hero pages with floating nav
============================================================ */
@media (max-width: 991px) {
  /* Hero pages need top padding to clear absolute mobile nav (~70px) */
  .fleet-hero--image,
  .about-hero {
    padding-top: 84px !important;
  }
}

/* ============================================================
   GLIDE — override .car-img-block defaults so cars don't overflow
============================================================ */
.car-img-block .car-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}
.car-img-block .car-gallery .glide__track,
.car-img-block .car-gallery .glide__slides {
  height: 100%;
}
.car-img-block .car-gallery .glide__slides { margin: 0; padding: 0; list-style: none; }

.car-img-block .car-gallery .glide__slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 8px 12px;
}

/* Force contained image (override .car-img-block img cover defaults) */
.car-img-block .car-gallery .glide__slide img {
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 88% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 18px rgba(8, 33, 77, 0.18));
}

/* Single-slide wrapper — no controls, image still contained */
.car-gallery.is-single .glide__slide img {
  max-width: 88% !important;
  max-height: 88% !important;
}

/* ============================================================
   MOBILE NAV — solid white (terms, contact, booking flow)
   Landkit-style: white bg, blue logo, blue toggler, no border
============================================================ */
.mobile-nav-light {
  background: #fff !important;
  border-bottom: 0 !important;
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 1px 0 rgba(8, 33, 77, 0.04);
}

.mobile-nav-light .navbar-toggler {
  border: 1.5px solid rgba(21, 84, 214, 0.22);
  padding: 7px 11px;
  border-radius: 10px;
  background: #fff;
}
.mobile-nav-light .navbar-toggler:focus { box-shadow: none; }
.mobile-nav-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231554d6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 22px;
  height: 22px;
}

/* ============================================================
   MOBILE — filter chips horizontal scroll (no wrap)
============================================================ */
@media (max-width: 991px) {
  .fleet-filters,
  .gc-pills-wrap {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    /* Subtle right edge fade so user sees there's more */
    mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
  }
  .fleet-filters::-webkit-scrollbar,
  .gc-pills-wrap::-webkit-scrollbar { display: none; }
  .fleet-filters,
  .gc-pills-wrap {
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge legacy */
  }

  .fleet-chip,
  .gc-pill {
    flex-shrink: 0 !important;
    scroll-snap-align: start;
  }
}

/* ============================================================
   LOGO RESET — neutralize Bootstrap navbar-dark filter inversion
   (theme.bundle.css forces .navbar-dark .navbar-brand { filter: brightness(0) invert(1) })
   We use page-specific logo files (plava/bijela), so no filter is ever wanted.
============================================================ */
.mobile-nav-light .navbar-brand,
.mobile-nav-light .navbar-brand-img,
.mobile-nav-over-hero .navbar-brand,
.mobile-nav-over-hero .navbar-brand-img {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
}

/* ============================================================
   BRAND POLISH — utility layer (added 2026-04-30)
   Premium blue/white/red identity. Use these over hardcoded hex.
============================================================ */

/* --- Selection accent: matches the deep royal blue --- */
::selection      { background: var(--blue); color: #fff; }
::-moz-selection { background: var(--blue); color: #fff; }

/* --- Smooth scroll feels less "dev-ish" on long fleet/about pages --- */
html { scroll-behavior: smooth; }

/* --- Premium focus ring — subtle blue glow, not the harsh browser default --- */
.elite-focus:focus-visible,
.btn-elite-primary:focus-visible,
.btn-elite-secondary:focus-visible,
.btn-elite-danger:focus-visible,
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(21, 84, 214, 0.18) !important;
}

/* --- Primary action button: solid royal blue + hover lift --- */
.btn-elite-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--blue);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-elite-primary:hover,
.btn-elite-primary:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(21, 84, 214, 0.40);
  color: #fff;
}
.btn-elite-primary:active { transform: translateY(0); }

/* --- Secondary action: white with blue border --- */
.btn-elite-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border: 1.5px solid var(--blue);
  border-radius: 12px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn-elite-secondary:hover {
  background: var(--blue-soft);
  transform: translateY(-1px);
  color: var(--blue);
}

/* --- Danger / destructive action: deep crimson --- */
.btn-elite-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--red);
  text-decoration: none;
  box-shadow: var(--shadow-red);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-elite-danger:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(193, 18, 31, 0.42);
}

/* --- Premium card surface --- */
.surface-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s ease, transform .22s ease;
}
.surface-card:hover { box-shadow: var(--shadow-md); }

/* --- Light blue-tinted alternate section background --- */
.section-soft-bg { background: var(--soft-bg); }
.section-soft-bg-2 { background: var(--soft-bg-2); }

/* --- Brand text helpers --- */
.text-brand-blue   { color: var(--blue) !important; }
.text-brand-navy   { color: var(--navy) !important; }
.text-brand-red    { color: var(--red) !important; }
.text-muted-soft   { color: var(--muted) !important; }

/* --- Premium gold hairline accent — use ONCE per page max (above-the-fold) --- */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin: 24px 0;
  border: 0;
  opacity: .55;
}

/* --- Uniform input baseline so "premium" forms feel right --- */
.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control::placeholder { color: var(--muted); opacity: .65; }
.form-control.is-invalid,
.form-select.is-invalid { border-color: var(--red) !important; }

/* --- Subtle hover lift for any anchor with .lift class — for fleet cards etc --- */
.lift { transition: transform .22s ease, box-shadow .22s ease; }
.lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

