/* =========================================================
   Newstar Revision — clean booking-first (Avis / Sixt feel)
   Soft neutrals, refined dark accents, no blue wash
   ========================================================= */

body {
  font-family: Poppins, sans-serif !important;
}

.below-title,
.page-title,
.vhero-copy h1,
.vhero-book,
.booking-form,
.site-header {
  font-family: Poppins, sans-serif !important;
  letter-spacing: -0.3px;
}

.below-title,
.page-title,
.vhero-copy h1 {
  letter-spacing: -0.6px;
}

.fa,
.fa-solid,
.fa-brands,
[class^="fa-"],
[class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* ---------- Booking hero ---------- */
.booking-hero {
  position: relative;
  padding: 36px 0 44px;
  background:
    linear-gradient(180deg, #eef1f4 0%, #f7f8fa 55%, #fff 100%);
  overflow: visible;
}

.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72%;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(21, 32, 43, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 30%, rgba(21, 32, 43, 0.04), transparent 50%);
  pointer-events: none;
}

.booking-hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.booking-hero-copy {
  max-width: 680px;
  margin: 8px 0 26px;
}

.booking-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(21, 32, 43, 0.06);
  color: var(--ns-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.booking-hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f9e6b;
  box-shadow: 0 0 0 4px rgba(47, 158, 107, 0.16);
}

.booking-hero h1 {
  margin: 0 0 12px;
  color: var(--ns-ink);
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2px;
}

.booking-hero h1 b {
  font-weight: 800;
}

.booking-hero-lead {
  margin: 0;
  max-width: 520px;
  color: var(--ns-text);
  font-size: 15px;
  line-height: 1.7;
}

.booking-hero-card {
  background: var(--ns-white);
  color: var(--ns-ink);
  border: 1px solid var(--ns-line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(20, 35, 50, 0.1);
}

.booking-hero-card .booking-workspace-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ns-line);
}

.booking-hero-card .booking-workspace-head > div span {
  color: var(--ns-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.booking-hero-card .booking-workspace-head h3 {
  margin: 4px 0 0;
  font-size: 18px;
  letter-spacing: -0.4px;
}

.booking-hero-card .booking-workspace-head ol {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-hero-card .booking-workspace-head ol li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ns-muted);
  font-size: 11px;
  font-weight: 600;
}

.booking-hero-card .booking-workspace-head ol li b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ns-soft);
  color: var(--ns-muted);
  font-size: 10px;
}

.booking-hero-card .booking-workspace-head ol li.active {
  color: var(--ns-ink);
}

.booking-hero-card .booking-workspace-head ol li.active b {
  background: var(--ns-dark);
  color: #fff;
}

.booking-hero-card .quick-book-form.booking-form {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 1.15fr;
  gap: 10px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.booking-hero-card .booking-field {
  position: relative;
  min-height: 76px;
  margin: 0;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  background: var(--ns-soft);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.booking-hero-card .booking-field:before {
  display: none !important;
}

.booking-hero-card .booking-field:hover,
.booking-hero-card .booking-field.open {
  border-color: #b8c4cf !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(21, 32, 43, 0.05) !important;
}

.booking-hero-card .field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ns-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.booking-hero-card .field-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ns-ink);
  cursor: pointer;
  text-align: left;
}

.booking-hero-card .field-trigger strong {
  font-size: 14px;
  font-weight: 700;
}

.booking-hero-card .field-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: #80909c;
  stroke-width: 1.8;
}

.booking-hero-card .native-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.booking-hero-card .quick-book-form.booking-form > button {
  min-height: 76px;
  border: 0;
  border-radius: 14px;
  background: var(--ns-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(21, 32, 43, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.booking-hero-card .quick-book-form.booking-form > button:hover {
  background: #1d2c3a;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(21, 32, 43, 0.28);
}

.booking-hero-card .quick-book-form.booking-form > button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.booking-hero-card .quick-book-form.booking-form > button small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
}

.booking-hero-card .quick-book-form.booking-form > button b {
  font-size: 20px;
  font-weight: 500;
}

.booking-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}

.booking-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ns-text);
  font-size: 12px;
  font-weight: 600;
}

.booking-hero-trust span i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(47, 158, 107, 0.12);
  color: #2f9e6b;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.booking-hero .booking-message {
  margin: 12px 0 0;
  color: var(--ns-muted);
  font-size: 13px;
}

.booking-hero .booking-guarantees,
.booking-hero .booking-intro {
  display: none;
}

.booking-hero-card .field-popover {
  z-index: 40;
}

/* ---------- Homepage flow ---------- */
.below-page {
  background: #fff !important;
  overflow: visible !important;
}

.why-bridge {
  padding: 28px 0 8px;
  background: #f6f5f1;
}

.why-bridge .container-why,
.why-bridge > .why-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.why-bridge .why-shell {
  border-radius: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.why-bridge .below-kicker {
  color: var(--ns-gold-dark) !important;
}

.fleet-v2 {
  padding: 64px 0 72px !important;
  background: #fff !important;
}

.fleet-controls {
  border-top: 1px solid var(--ns-line) !important;
}

.fleet-filters button.active,
.fleet-currency button.active {
  background: var(--ns-dark) !important;
  border-color: var(--ns-dark) !important;
  color: #fff !important;
}

.fleet-card-media,
.rent-card-media {
  background: linear-gradient(160deg, #f3f5f7, #eef1f4) !important;
}

/* Soft divider band — Trabzon parallax */
.parallax-band {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-color: #111712;
  background-image: url('../routes/trabzon-parallax.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-band > div {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 40px 24px;
}

.parallax-band span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.parallax-band h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -1px;
}

.parallax-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

/* Route — contained, calm */
.route-v2 {
  padding: 56px 0 !important;
  background: #fff !important;
}

.route-v2-shell {
  width: min(1320px, calc(100% - 64px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 0 !important;
  min-height: 420px !important;
  border: 1px solid var(--ns-line) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(20, 35, 50, 0.06) !important;
}

.route-v2-visual {
  min-height: 420px !important;
  border-radius: 0 !important;
  background: linear-gradient(145deg, #1a2734 0%, #243747 100%) !important;
}

.route-v2-visual::before,
.route-v2-visual::after {
  display: none !important;
}

.route-v2-visual img {
  display: none !important;
}

.route-map-path path {
  stroke: rgba(255, 255, 255, 0.45) !important;
}

.route-map-path circle {
  fill: #fff !important;
  stroke: #2f9e6b !important;
}

.route-visual-label {
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 8px 10px !important;
}

.route-map-word {
  color: rgba(255, 255, 255, 0.08) !important;
}

.route-point {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
}

.route-v2-copy {
  padding: 48px 44px !important;
  background: #fff !important;
}

.route-v2-copy .below-title b {
  color: inherit !important;
}

.route-tags span {
  background: var(--ns-soft) !important;
  border-color: transparent !important;
}

.route-tags i {
  background: var(--ns-dark) !important;
  color: #fff !important;
}

.route-action {
  background: var(--ns-dark) !important;
  color: #fff !important;
  border-radius: 12px !important;
}

.process-v2 {
  background: var(--ns-soft) !important;
}

.process-row {
  border-color: var(--ns-line) !important;
  border-radius: 18px !important;
  background: #fff;
}

.process-row > article > span {
  background: var(--ns-soft) !important;
  color: var(--ns-dark) !important;
}

.reviews-section {
  background: #fff !important;
  border: 0 !important;
}

.rating-summary-card,
.testimonial-card,
.quick-contact-card {
  border-radius: 18px !important;
  border: 1px solid var(--ns-line) !important;
  box-shadow: 0 10px 28px rgba(20, 35, 50, 0.04) !important;
}

.rating-badge,
.contact-phone-btn {
  background: #111712 !important;
}

.contact-phone-btn {
  box-shadow: none !important;
  color: #fff !important;
}

.cta-v2 {
  padding: 0 0 64px !important;
  background: #fff !important;
}

.cta-v2-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #15202b, #1f3040) !important;
  box-shadow: 0 18px 40px rgba(21, 32, 43, 0.16) !important;
  padding: 40px 48px !important;
}

.cta-v2-shell::before {
  display: none !important;
}

.cta-v2-shell span {
  color: rgba(255, 255, 255, 0.55) !important;
}

.cta-v2-shell a {
  color: var(--ns-ink) !important;
  border-radius: 12px !important;
}

.below-kicker {
  color: var(--ns-muted) !important;
}

/* Footer — solid dark, muted icons (no loud blue) */
.footer-v2 {
  background: #0f161d !important;
}

.footer-v2 nav a i,
.footer-v2-contact a i,
.footer-v2-contact p i,
.footer-v2-contact i {
  color: #ffffff !important;
}

.footer-v2 nav a:not(:has(i))::before,
.footer-v2-contact a:not(:has(i))::before,
.footer-v2-contact p:not(:has(i))::before {
  border-right-color: #c9a96a !important;
  border-top-color: #c9a96a !important;
  color: transparent !important;
}

.footer-v2-socials a {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.footer-v2-socials a:hover,
.footer-v2-socials a:nth-child(2):hover,
.footer-v2-socials a:nth-child(3):hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

/* ---------- Inner pages ---------- */
.subpage-hero {
  padding: 36px 0 28px !important;
  background: linear-gradient(180deg, #f4f6f8 0%, #fff 100%) !important;
}

.subpage-hero-shell,
.page-container.subpage-hero-shell {
  width: min(1320px, calc(100% - 64px)) !important;
  margin: 0 auto !important;
  min-height: 480px !important;
  border: 1px solid var(--ns-line) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 48px rgba(20, 35, 50, 0.07) !important;
  overflow: hidden !important;
  background: #fff !important;
  display: grid;
  grid-template-columns: 1fr 1fr !important;
}

.subpage-hero-copy {
  padding: 52px 48px !important;
  background: #fff;
}

.subpage-hero-visual,
.services-split-panel {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px 44px;
  color: #fff;
  background: linear-gradient(150deg, #15202b 0%, #243747 100%) !important;
}

.subpage-hero-visual::before {
  display: none !important;
}

.subpage-hero-visual .hero-car-primary,
.monthly-banner-visual img,
.story-visual img,
.coverage-car,
.map-car {
  display: none !important;
}

.subpage-hero-visual .visual-word {
  position: absolute;
  top: 36px;
  left: 36px;
  color: rgba(255, 255, 255, 0.07) !important;
  font-size: 72px !important;
  pointer-events: none;
}

.services-split-panel h2,
.subpage-hero-visual h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 550;
}

.services-split-panel h2 b,
.subpage-hero-visual h2 b {
  font-weight: 750;
}

.services-split-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-split-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-split-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-split-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.services-split-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.services-split-list small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.55;
}

.about-hero .about-quote {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 6px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08) !important;
}

.page-kicker {
  color: var(--ns-muted) !important;
}

.page-btn,
.finder-submit,
.clear-filters {
  background: var(--ns-dark) !important;
  border-color: var(--ns-dark) !important;
  color: #fff !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.page-btn.light {
  background: #111712 !important;
  color: #fff !important;
  border-color: #111712 !important;
}

.primary-btn,
.nav-book,
.site-header .nav-book {
  background: var(--ns-dark) !important;
  box-shadow: none !important;
}

.section-block.soft {
  background: var(--ns-soft) !important;
}

.service-card p,
.condition-list li,
.faq-answer p,
.process-step p,
.value-card p {
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  color: var(--ns-text) !important;
}

.service-card h3,
.faq-question,
.condition-card h3,
.process-step h3,
.value-card h3 {
  font-size: 17px !important;
}

.service-icon {
  background: var(--ns-soft) !important;
  color: var(--ns-dark) !important;
}

.service-card:hover {
  border-color: #cfd8e0 !important;
  box-shadow: 0 14px 32px rgba(20, 35, 50, 0.07) !important;
}

.fleet-advanced .availability-switch {
  grid-column: auto !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
  gap: 8px !important;
}

.availability-switch span b {
  font-size: 11px !important;
}

.availability-switch span small {
  display: none !important;
}

.monthly-banner {
  border-radius: 22px !important;
  background: var(--ns-dark) !important;
}

.monthly-banner-visual {
  background: linear-gradient(145deg, #1c2a38, #243747) !important;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.monthly-banner-visual::after {
  content: "NEWSTAR";
  color: rgba(255, 255, 255, 0.08);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -3px;
}

.monthly-banner-copy .page-kicker {
  color: rgba(255, 255, 255, 0.5) !important;
}

.story-visual,
.coverage-map,
.contact-location {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #15202b, #243747) !important;
}

.story-visual::after,
.coverage-map::after {
  content: "NEWSTAR";
  position: absolute;
  inset: auto 24px 24px auto;
  color: rgba(255, 255, 255, 0.08);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
}

.contact-hero {
  background: linear-gradient(180deg, #f4f6f8, #fff) !important;
}

.contact-hero-shell {
  border-radius: 24px !important;
  border: 1px solid var(--ns-line) !important;
  box-shadow: 0 16px 40px rgba(20, 35, 50, 0.06) !important;
  overflow: hidden;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .booking-hero {
    padding: 22px 0 28px;
  }

  .booking-hero-shell,
  .why-bridge > .why-shell,
  .route-v2-shell,
  .cta-v2-shell,
  .subpage-hero-shell,
  .page-container.subpage-hero-shell {
    width: calc(100% - 28px) !important;
  }

  .booking-hero h1 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }

  .booking-hero-card {
    padding: 14px;
    border-radius: 16px;
  }

  .booking-hero-card .booking-workspace-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-hero-card .quick-book-form.booking-form {
    grid-template-columns: 1fr;
  }

  .booking-hero-card .booking-field,
  .booking-hero-card .quick-book-form.booking-form > button {
    min-height: 64px;
  }

  .why-bridge .why-shell,
  .route-v2-shell,
  .subpage-hero-shell {
    border-radius: 18px !important;
  }

  .route-v2-shell,
  .subpage-hero-shell,
  .services-hero .subpage-hero-shell {
    grid-template-columns: 1fr !important;
  }

  .route-v2-visual,
  .subpage-hero-visual,
  .services-split-panel {
    min-height: 320px !important;
    padding: 32px 24px;
  }

  .subpage-hero-copy {
    padding: 32px 24px !important;
  }

  .route-v2-copy {
    padding: 32px 24px !important;
  }

  .parallax-band {
    min-height: 180px;
  }

  .fleet-advanced .availability-switch {
    grid-column: 1 / -1 !important;
  }
}

/* ================================================================
   MASTER MOBILE RESPONSIVE OVERHAUL (ALL MOBILE DEVICES <= 768PX)
   ================================================================ */
@media (max-width: 768px) {

  /* 1. Header & Brand Logo */
  .site-header {
    height: 68px !important;
    padding: 0 14px !important;
  }

  .site-header .nav-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
  }

  .site-header .brand img {
    width: 44px !important;
    height: 38px !important;
    transform: none !important;
  }

  .site-header .brand > span {
    font-size: 19px !important;
    line-height: 1 !important;
  }

  .site-header .brand small {
    font-size: 6.5px !important;
    letter-spacing: 2px !important;
    margin-top: 3px !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.22) !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    cursor: pointer !important;
  }

  .site-header .menu-toggle-bar {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 2px !important;
  }

  .site-header .menu-toggle > i {
    display: none !important;
  }

  /* 2. Hero Header Text & Layout */
  .vhero {
    min-height: auto !important;
    padding-bottom: 30px !important;
  }

  .vhero-inner {
    padding: 16px 14px 20px !important;
  }

  .vhero-copy {
    padding: 0 0 16px !important;
  }

  .vhero-kicker {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 8px !important;
  }

  .vhero-copy h1 {
    font-size: 27px !important;
    line-height: 1.15 !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.02em !important;
  }

  .vhero-copy p {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0 16px !important;
  }

  /* 3. MOBILE BOOKING — vertical "Kiralamaya başla" card (no sticky) */
  .vhero-book,
  .ns-hero .vhero-book {
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px 16px 16px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
    box-sizing: border-box !important;
  }

  .vhero-book-intro {
    display: block !important;
    margin: 0 0 14px !important;
    padding: 0 2px !important;
  }

  .vhero-book-intro h2 {
    margin: 0 0 6px !important;
    color: #111712 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
  }

  .vhero-book-intro p {
    margin: 0 !important;
    color: #6b757d !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
  }

  .quick-book-form.booking-form,
  .ns-hero .quick-book-form,
  .ns-hero .vhero-book .booking-form,
  .ns-hero .ns-glass-bar,
  #bookingForm {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    min-height: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .quick-book-form .booking-field,
  .quick-book-form .booking-field.select-field:first-child,
  .quick-book-form .booking-field.date-field,
  .quick-book-form .booking-field[data-class-field],
  #bookingForm .booking-field,
  #bookingForm .select-field:first-child,
  #bookingForm [data-date-field],
  #bookingForm [data-class-field] {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 58px !important;
    padding: 11px 14px !important;
    border-radius: 12px !important;
    background: #f4f6f8 !important;
    border: 1px solid #e4e8ec !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .booking-field .field-label {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #8a939c !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 3px !important;
    display: block !important;
  }

  .booking-field .field-trigger,
  .booking-field select,
  .booking-field input {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .booking-field .field-trigger strong {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111712 !important;
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .booking-field .field-trigger svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #6b757d !important;
    flex-shrink: 0 !important;
  }

  /* Submit — full-width black CTA */
  .quick-book-form button[type="submit"],
  .ns-hero .quick-book-form > button[type="submit"],
  .ns-hero .vhero-book .booking-form > button[type="submit"],
  #bookingForm button[type="submit"] {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 54px !important;
    margin-top: 2px !important;
    border-radius: 12px !important;
    background: #111712 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    border: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 10px 24px rgba(17, 23, 18, 0.22) !important;
    cursor: pointer !important;
  }

  .quick-book-form button[type="submit"] span,
  #bookingForm button[type="submit"] span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 800 !important;
  }

  .quick-book-form button[type="submit"]:hover,
  #bookingForm button[type="submit"]:hover {
    background: #1c241e !important;
    color: #ffffff !important;
  }

  /* 4. Trust Badges Grid on Mobile */
  .vhero-meta {
    margin-top: 14px !important;
  }

  .vhero-trust {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .vhero-trust span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 8px 4px !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .vhero-trust span b {
    color: var(--ns-gold) !important;
  }

  /* 5. Mobile Filters & Fleet Cards */
  .fleet-controls {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .fleet-filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    width: 100% !important;
    padding-bottom: 6px !important;
    gap: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .fleet-filters .filter-btn {
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    min-height: 40px !important;
    padding: 0 16px !important;
    font-size: 12.5px !important;
  }

  .fleet-grid-v2,
  #allFleetGrid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .fleet-card,
  .rent-card {
    border-radius: 16px !important;
  }

  /* 6. Mobile Bottom Navigation Bar */
  .mobile-bottom-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    height: 62px !important;
    background: rgba(14, 20, 16, 0.96) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 0 6px !important;
  }

  .mobile-bottom-bar .bar-item span {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .bar-item-center {
    position: relative !important;
    margin-top: -22px !important;
  }

  .center-btn-inner {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #dfb943 0%, #c9a227 100%) !important;
    color: #111712 !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45) !important;
  }

  .center-btn-glowing {
    width: 48px !important;
    height: 48px !important;
    background: #c9a227 !important;
    filter: blur(10px) !important;
    opacity: 0.6 !important;
  }

  .bar-item-center span {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-top: 3px !important;
  }
}

