:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --panel: #ffffff;
  --panel-2: #f3f4f6;
  --text: #111315;
  --muted: #5f646b;
  --line: rgba(17, 19, 21, 0.12);
  --gold: #d71920;
  --gold-dark: #a90f16;
  --gold-soft: #e31b23;
  --red: #d71920;
  --white: #ffffff;
  --paper: #ffffff;
  --ink: #111315;
  --shadow: 0 18px 52px rgba(17, 19, 21, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
  padding: 18px clamp(18px, 2vw, 26px);
  background: linear-gradient(180deg, rgba(5, 8, 10, 0.92), rgba(5, 8, 10, 0.12));
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7, 9, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(17, 19, 21, 0.14));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
}

.main-nav a {
  position: relative;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn,
.phone-btn,
.book-btn {
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
}

.lang-btn,
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(12, 15, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 12px;
  white-space: nowrap;
}

.lang-btn svg {
  width: 14px;
  height: 14px;
}

.phone-btn svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.book-btn,
.primary-btn,
.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #100e09;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 30px rgba(229, 181, 87, 0.18);
}

.book-btn {
  padding: 0 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(15, 18, 20, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 150px clamp(22px, 6vw, 96px) 190px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.9) 0%, rgba(5, 7, 8, 0.62) 40%, rgba(5, 7, 8, 0.14) 76%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.14) 0%, rgba(4, 5, 6, 0.2) 58%, rgba(4, 5, 6, 0.92) 100%),
    url("https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?auto=format&fit=crop&w=1900&q=85") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-bg::after {
  position: absolute;
  content: "";
  right: -2%;
  bottom: 4%;
  width: min(46vw, 720px);
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0) 65%, rgba(7, 9, 10, 0.78) 100%),
    url("https://images.unsplash.com/photo-1553440569-bcc63803a83d?auto=format&fit=crop&w=1200&q=85") center/cover no-repeat;
  border-radius: 16px 0 0 16px;
  background-color: rgba(255, 255, 255, 0.08);
  filter: drop-shadow(-30px 45px 36px rgba(0, 0, 0, 0.55));
  clip-path: polygon(0 12%, 100% 0, 100% 94%, 0 100%);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(8, 10, 11, 0), var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
}

.hero-copy {
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 500;
}

.hero h1 span {
  display: block;
  color: var(--gold-soft);
}

.hero-lead {
  width: min(520px, 100%);
  margin: 24px 0 34px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(520px, 100%);
  margin: -14px 0 28px;
}

.hero-insurance {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 10px 16px;
  color: #fff;
  background: rgba(225, 18, 32, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(225, 18, 32, 0.25);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.ghost-btn {
  min-height: 58px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-btn svg,
.ghost-btn svg {
  width: 24px;
  height: 24px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(12, 14, 16, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.booking-panel {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: -120px auto 0;
  background: linear-gradient(180deg, rgba(25, 27, 29, 0.97), rgba(11, 12, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.no-booking-panel .booking-panel {
  display: none;
}

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  color: #fff;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.tab-btn:last-child {
  border-right: 0;
}

.tab-btn svg {
  color: var(--gold);
}

.tab-btn::after {
  position: absolute;
  content: "";
  left: 16%;
  right: 16%;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.booking-form {
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 1fr 0.85fr 1fr 0.85fr;
  gap: 12px;
  padding: 16px;
}

.field {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 13px 48px 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.field span {
  color: #aaa7a3;
  font-size: 12px;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 800;
}

.field select {
  appearance: none;
  padding-right: 6px;
}

.field select option {
  color: #111;
  background: #fff;
}

.field input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.field svg {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  color: #d7d3cc;
  transform: translateY(-50%);
}

.search-btn {
  grid-column: 5 / -1;
  min-width: 156px;
  min-height: 72px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-note {
  grid-column: 1 / -1;
  margin: -2px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.service-strip {
  margin-top: -62px;
  padding: 114px clamp(20px, 6vw, 80px) 32px;
  background: var(--paper);
  color: var(--ink);
}

.no-booking-panel .hero {
  min-height: 650px;
  padding-bottom: 120px;
}

.no-booking-panel .service-strip {
  margin-top: 0;
  padding-top: 54px;
}

.section-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 13, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(13, 17, 20, 0.08);
}

.service-card::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 40%, rgba(255, 255, 255, 0) 72%);
}

.service-card h2,
.service-card p,
.service-card a,
.service-icon {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 46px;
  height: 46px;
  margin: 28px 0 0 24px;
  color: var(--ink);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h2 {
  margin: 2px 24px 2px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  min-height: 46px;
  margin: 0 24px 18px;
  color: #35393d;
  font-size: 14px;
}

.service-card img {
  height: 150px;
  margin-top: auto;
  object-fit: cover;
}

.service-card a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-reviews-strip {
  margin-top: -62px;
  padding: 90px clamp(20px, 6vw, 80px) 34px;
  background: var(--paper);
  color: var(--ink);
}

.location-reviews-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.location-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.location-head h2 {
  margin: 6px 0 4px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.location-head p:not(.eyebrow) {
  margin: 0;
  color: #333;
  font-weight: 800;
}

.google-review-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 13, 15, 0.08);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(13, 17, 20, 0.08);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.google-reviews-carousel {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
}

.google-reviews-carousel article {
  flex: 0 0 230px;
  scroll-snap-align: start;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(10, 13, 15, 0.06);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(13, 17, 20, 0.06);
}

.google-reviews-carousel span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-reviews-carousel strong {
  display: block;
  color: #111;
  font-size: 15px;
}

.google-reviews-carousel p {
  margin: 6px 0 0;
  color: #333;
  font-size: 13px;
  line-height: 1.5;
}

.car-list-section {
  padding: 64px clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 16% 14%, rgba(229, 181, 87, 0.08), rgba(8, 10, 11, 0) 28%),
    linear-gradient(180deg, #0a0c0d 0%, #121517 100%);
}

.car-list-head {
  align-items: start;
  margin-bottom: 28px;
}

.car-list-head p:not(.eyebrow) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.car-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.car-filter-btn {
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.car-filter-btn.active,
.car-filter-btn:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}

.car-list-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rental-car-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #181c1f, #101315);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.rental-car-media {
  position: relative;
  background: #0d1012;
}

.rental-car-media img {
  height: 220px;
  object-fit: cover;
}

.media-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f4f4f4;
}

.media-carousel img {
  display: none;
  width: 100%;
  object-fit: cover;
}

.media-carousel img.active {
  display: block;
}

.media-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(17, 19, 21, 0.72);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.media-carousel-prev {
  left: 12px;
}

.media-carousel-next {
  right: 12px;
}

.media-carousel-count {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 4;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #fff;
  background: rgba(17, 19, 21, 0.68);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.media-carousel.is-single .media-carousel-btn,
.media-carousel.is-single .media-carousel-count {
  display: none;
}

.rental-car-media .media-carousel img {
  height: 220px;
}

.availability-badge,
.car-category-badge {
  position: absolute;
  top: 14px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.availability-badge {
  left: 14px;
  color: #0d120d;
  background: #8de08e;
}

.car-category-badge {
  right: 14px;
  color: #fff;
  background: rgba(8, 10, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rental-car-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.rental-car-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rental-car-top h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.from-price {
  min-width: max-content;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  text-align: right;
}

.from-price span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.car-description {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.car-specs,
.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.car-specs span,
.car-features span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
}

.car-specs span {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.car-features span {
  color: var(--gold-soft);
  background: rgba(229, 181, 87, 0.08);
}

.price-table {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.price-row span {
  color: var(--muted);
  font-size: 12px;
}

.price-row strong {
  color: #fff;
  font-size: 15px;
}

.tier-price {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.price-row .previous-rate,
.modal-rate-row .previous-rate {
  color: #777;
  font-size: 13px;
  font-weight: 600;
  text-decoration-line: line-through;
  text-decoration-color: #d71920;
  text-decoration-thickness: 2px;
}

.price-row .current-rate,
.modal-rate-row .current-rate {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.car-card-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  color: #111;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark-section {
  padding: 58px clamp(20px, 6vw, 80px) 44px;
  background: linear-gradient(180deg, #090b0c 0%, #101315 100%);
}

.section-head {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.why-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
}

.section-intro {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tour-card {
  position: relative;
  overflow: hidden;
  background: #111416;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.tour-card img {
  height: 240px;
  object-fit: cover;
}

.tour-card .media-carousel img {
  height: 240px;
}

.tour-card-body {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 18px;
}

.tour-card h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.tour-meta {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.tour-description {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 16px;
}

.tour-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--gold-soft);
  background: rgba(229, 181, 87, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tour-book-btn {
  min-height: 48px;
  color: #111;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(12, 14, 16, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.heart-btn.active {
  color: var(--gold);
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 26px clamp(20px, 6vw, 80px);
  background: linear-gradient(180deg, #181c1f, #121517);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.benefit svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.benefit strong,
.benefit span {
  display: block;
}

.benefit strong {
  font-size: 15px;
}

.benefit span {
  color: var(--muted);
  font-size: 12px;
}

.why-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.82fr) minmax(320px, 1.15fr);
  gap: 32px;
  align-items: center;
  padding: 56px clamp(20px, 6vw, 80px) 30px;
  background:
    radial-gradient(circle at 78% 42%, rgba(229, 181, 87, 0.08), rgba(8, 10, 11, 0) 30%),
    #080a0b;
}

.why-copy p {
  max-width: 480px;
  color: #dfdbd3;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #f3eee6;
  font-size: 15px;
}

.check-list li::before {
  position: absolute;
  content: "✓";
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.primary-btn.small {
  min-height: 48px;
  padding: 0 22px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stats-grid article {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
}

.stats-grid span {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
}

.featured-car img {
  max-height: 310px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: drop-shadow(-24px 32px 40px rgba(0, 0, 0, 0.56));
  mix-blend-mode: lighten;
}

.fleet-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 80px) 44px;
  background: #080a0b;
}

.fleet-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #1b1f22, #141719);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.fleet-card svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.fleet-card strong,
.fleet-card span {
  display: block;
}

.fleet-card strong {
  font-size: 15px;
}

.fleet-card span {
  color: var(--muted);
  font-size: 12px;
}

.whatsapp,
.wechat-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.whatsapp {
  bottom: 26px;
  background: #25d366;
}

.wechat-float {
  bottom: 94px;
  background: #1aad19;
  cursor: pointer;
}

.whatsapp svg,
.wechat-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.site-footer {
  padding: 34px clamp(20px, 6vw, 80px) 18px;
  background: linear-gradient(180deg, #111416, #080a0b);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr 1.5fr;
  gap: 34px;
}

.site-footer .brand {
  display: inline-flex;
  margin: 0;
}

.footer-brand .brand-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin: 4px 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a,
.social-links button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.wechat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.wechat-modal__panel {
  position: relative;
  width: min(390px, 100%);
  padding: 24px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.wechat-modal__panel h2 {
  margin: 4px 0 8px;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 28px;
}

.wechat-modal__panel p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
}

.wechat-modal__panel img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.wechat-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--text);
  background: #f5f5f5;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.newsletter input {
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  color: #fff;
  background: #111416;
  border: 0;
  outline: 0;
}

.newsletter button {
  min-height: 50px;
  padding: 0 20px;
  color: #111;
  background: var(--gold);
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: var(--gold);
}

.modal-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.car-booking-modal {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background:
    radial-gradient(circle at 15% 0%, rgba(229, 181, 87, 0.12), rgba(12, 14, 16, 0) 34%),
    linear-gradient(180deg, #191d20, #0c0e10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 20px;
  font-weight: 900;
}

.modal-copy {
  padding: 28px 78px 18px 28px;
}

.modal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
}

.modal-copy p:last-child {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
  padding: 0 28px 28px;
}

.modal-car-summary,
.modal-booking-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.modal-car-summary {
  padding: 18px;
}

.modal-car-summary h3,
.modal-booking-form h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.modal-car-summary h3:not(:first-child),
.modal-booking-form h3:not(:first-child) {
  margin-top: 22px;
}

.modal-image-slot {
  margin-bottom: 16px;
  overflow: hidden;
  background: #0b0d0f;
  border-radius: var(--radius);
}

.modal-car-summary img {
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #0b0d0f;
}

.modal-image-slot .media-carousel img {
  height: 190px;
  border-radius: 0;
}

.modal-car-summary h4 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.modal-car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-car-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--gold-soft);
  background: rgba(229, 181, 87, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.modal-rate-list {
  display: grid;
  gap: 8px;
}

.modal-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.modal-rate-row span {
  color: var(--muted);
  font-size: 13px;
}

.modal-rate-row strong {
  color: #fff;
}

.modal-rate-row .current-rate {
  font-size: 16px;
}

.modal-booking-form {
  padding: 18px;
}

.modal-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.modal-booking-form label {
  display: grid;
  gap: 7px;
}

.modal-booking-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-booking-form input,
.modal-booking-form select,
.modal-booking-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: 0;
}

.modal-booking-form input,
.modal-booking-form select {
  min-height: 48px;
}

.modal-booking-form textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.modal-booking-form input:focus,
.modal-booking-form select:focus,
.modal-booking-form textarea:focus {
  border-color: rgba(229, 181, 87, 0.72);
  box-shadow: 0 0 0 3px rgba(229, 181, 87, 0.12);
}

.modal-booking-form select option {
  color: #111;
  background: #fff;
}

.modal-booking-form input[readonly] {
  color: var(--gold-soft);
  background: rgba(229, 181, 87, 0.08);
  border-color: rgba(229, 181, 87, 0.22);
  cursor: default;
}

.phone-field {
  grid-column: span 1;
}

.phone-input-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.55fr) minmax(0, 1.45fr);
  gap: 8px;
}

.phone-input-row input[name="phoneCode"] {
  padding-right: 8px;
}

.rental-total-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 4px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(229, 181, 87, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(229, 181, 87, 0.26);
  border-radius: var(--radius);
}

.rental-total-box div {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(8, 10, 11, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.rental-total-box span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-total-box strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.rental-total-box div:last-of-type strong {
  color: var(--gold-soft);
}

.rental-total-box p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.rental-total-box.invalid div strong {
  color: #ffb2a8;
  font-size: 16px;
}

.tour-summary p,
.transfer-summary p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.tour-inclusion-list,
.tour-extra-cost-list,
.transfer-route-list {
  display: grid;
  gap: 8px;
}

.tour-inclusion-list span,
.tour-extra-cost-list span,
.transfer-route-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
}

.tour-inclusion-list span::before,
.tour-extra-cost-list span::before,
.transfer-route-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
}

.tour-extra-cost-list {
  margin-bottom: 4px;
}

.tour-extra-cost-list span {
  color: var(--red);
  background: rgba(227, 24, 55, 0.08);
  border-color: rgba(227, 24, 55, 0.22);
}

.tour-extra-cost-list span::before {
  background: var(--red);
}

.tour-plan-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 4px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(229, 181, 87, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(229, 181, 87, 0.26);
  border-radius: var(--radius);
}

.tour-plan-box div {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(8, 10, 11, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.tour-plan-box span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-plan-box strong {
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 1.15;
}

.tour-plan-box div:last-of-type strong {
  color: var(--gold-soft);
  font-size: 16px;
}

.tour-plan-box p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.full-field {
  margin-top: 16px;
}

.transfer-plan-box {
  grid-template-columns: 1fr 1fr;
}

.baby-seat-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 16px;
}

.baby-seat-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--gold);
}

.baby-seat-option span {
  text-transform: none;
}

.contract-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  background: rgba(215, 25, 32, 0.06);
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: var(--radius);
}

.contract-info-row div {
  display: grid;
  gap: 4px;
}

.contract-info-row strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.contract-info-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
}

.contract-info-button {
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #f2333b, var(--gold));
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.contract-preview-overlay {
  z-index: 120;
}

.contract-preview-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.contract-preview-copy {
  padding-bottom: 14px;
}

.contract-preview-frame {
  margin: 0 22px 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: calc(var(--radius) - 2px);
}

.contract-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.modal-actions button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-cancel {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.modal-confirm {
  color: #111;
  background: var(--gold);
  border: 0;
}

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 28px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 18px;
  color: #111;
  background: var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    display: none;
    background: rgba(10, 12, 13, 0.98);
    border: 1px solid var(--line);
  }

  .main-nav {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    top: 446px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .menu-open .main-nav,
  .menu-open .header-actions {
    display: flex;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-bg::after {
    opacity: 0.6;
    right: -18%;
    width: 72vw;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-btn {
    grid-column: 1 / -1;
  }

  .rental-note {
    grid-column: 1 / -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-panel iframe {
    height: 210px;
  }

  .tour-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .car-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-band,
  .fleet-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section {
    grid-template-columns: 1fr 1fr;
  }

  .featured-car {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 154px;
  }

  .main-nav {
    top: 66px;
  }

  .header-actions {
    top: 430px;
  }

  .hero {
    min-height: 660px;
    padding: 132px 20px 170px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.92), rgba(5, 7, 8, 0.58)),
      linear-gradient(180deg, rgba(4, 5, 6, 0.05), rgba(4, 5, 6, 0.92)),
      url("https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
  }

  .hero-bg::after {
    width: 86vw;
    right: -36%;
    bottom: 13%;
    opacity: 0.42;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .booking-panel {
    width: calc(100% - 28px);
    margin-top: -112px;
  }

  .booking-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-btn {
    min-height: 54px;
    font-size: 13px;
  }

  .booking-form,
  .service-grid,
  .tour-grid,
  .benefit-band,
  .why-section,
  .stats-grid,
  .fleet-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    margin-top: -70px;
    padding-top: 112px;
  }

  .location-reviews-strip {
    margin-top: -70px;
    padding-top: 94px;
    padding-bottom: 28px;
  }

  .location-head {
    align-items: stretch;
    flex-direction: column;
  }

  .google-review-link {
    width: 100%;
  }

  .map-panel iframe {
    height: 180px;
  }

  .google-reviews-carousel article {
    flex-basis: 215px;
  }

  .no-booking-panel .hero {
    min-height: 610px;
    padding-bottom: 86px;
  }

  .no-booking-panel .service-strip {
    margin-top: 0;
    padding-top: 38px;
  }

  .no-booking-panel .location-reviews-strip {
    margin-top: 0;
    padding-top: 38px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .car-filter {
    justify-content: flex-start;
  }

  .car-list-grid {
    grid-template-columns: 1fr;
  }

  .rental-car-media img {
    height: 210px;
  }

  .tour-card img {
    height: 220px;
  }

  .benefit {
    justify-content: flex-start;
  }

  .featured-car img {
    max-height: 240px;
  }

  .newsletter form,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-copy {
    padding: 22px 64px 16px 18px;
  }

  .modal-layout {
    padding: 0 18px 18px;
  }

  .modal-field-grid {
    grid-template-columns: 1fr;
  }

  .rental-total-box {
    grid-template-columns: 1fr;
  }

  .tour-plan-box {
    grid-template-columns: 1fr;
  }

  .contract-info-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contract-info-button {
    width: 100%;
  }

  .contract-preview-modal {
    max-height: calc(100vh - 24px);
  }

  .contract-preview-copy {
    padding: 22px 64px 14px 18px;
  }

  .contract-preview-frame {
    margin: 0 14px 14px;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions button {
    width: 100%;
  }
}

/* White and red premium theme */
body {
  background: #fff;
  color: var(--ink);
}

.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  box-shadow: 0 12px 34px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(14px);
}

.main-nav a,
.lang-btn,
.phone-btn {
  color: var(--ink);
}

.main-nav a::after,
.tab-btn::after {
  background: var(--gold);
}

.main-nav a:hover,
.main-nav a.active,
.phone-btn svg {
  color: var(--gold);
}

.lang-btn,
.phone-btn,
.menu-toggle {
  background: #fff;
  border: 1px solid rgba(17, 19, 21, 0.14);
}

.menu-toggle span {
  background: var(--ink);
}

.book-btn,
.primary-btn,
.search-btn,
.car-card-btn,
.tour-book-btn,
.newsletter button,
.modal-confirm,
.toast {
  color: #fff;
  background: linear-gradient(135deg, #f2333b, var(--gold));
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.2);
}

.ghost-btn,
.modal-cancel,
.modal-close {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(17, 19, 21, 0.18);
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.28) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%),
    url("https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?auto=format&fit=crop&w=1900&q=85") center/cover no-repeat;
}

.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.82) 100%),
    url("https://images.unsplash.com/photo-1553440569-bcc63803a83d?auto=format&fit=crop&w=1200&q=85") center/cover no-repeat;
  background-color: #fff;
  filter: drop-shadow(-24px 36px 34px rgba(17, 19, 21, 0.22));
}

.hero-shade {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.hero h1,
.hero-lead,
.section-head h2,
.why-section h2,
.rental-car-top h3,
.tour-card h3,
.modal-copy h2,
.modal-car-summary h3,
.modal-booking-form h3,
.modal-car-summary h4,
.site-footer h3 {
  color: var(--ink);
}

.hero h1 span,
.eyebrow,
.tour-meta,
.text-link,
.footer-bottom span {
  color: var(--gold);
}

.booking-panel,
.rental-car-card,
.tour-card,
.stats-grid article,
.fleet-card,
.car-booking-modal,
.modal-car-summary,
.modal-booking-form {
  background: #fff;
  border: 1px solid rgba(17, 19, 21, 0.1);
  box-shadow: 0 18px 45px rgba(17, 19, 21, 0.1);
}

.booking-tabs {
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
}

.tab-btn {
  color: var(--ink);
  border-right: 1px solid rgba(17, 19, 21, 0.08);
}

.tab-btn svg,
.service-icon,
.benefit svg,
.fleet-card svg {
  color: var(--ink);
}

.field,
.price-row,
.modal-rate-row,
.rental-total-box div,
.tour-plan-box div,
.tour-inclusion-list span,
.transfer-route-list span {
  background: #f7f7f7;
  border: 1px solid rgba(17, 19, 21, 0.1);
}

.field span,
.rental-note,
.car-list-head p:not(.eyebrow),
.section-intro,
.car-description,
.benefit span,
.why-copy p,
.fleet-card span,
.site-footer p,
.site-footer a,
.modal-copy p:last-child,
.tour-summary p,
.transfer-summary p,
.rental-total-box span,
.rental-total-box p,
.tour-plan-box span,
.tour-plan-box p,
.modal-booking-form label span {
  color: var(--muted);
}

.field input,
.field select,
.modal-booking-form input,
.modal-booking-form select,
.modal-booking-form textarea,
.newsletter input {
  color: var(--ink);
  background: #fff;
  border-color: rgba(17, 19, 21, 0.12);
}

.field svg {
  color: var(--muted);
}

.field input,
.field select {
  background: transparent;
}

.car-list-section,
.dark-section,
.why-section,
.fleet-section,
.site-footer,
.benefit-band {
  background: #fff;
  color: var(--ink);
  border-color: rgba(17, 19, 21, 0.1);
}

.service-strip {
  background: #fff;
}

.service-card,
.service-card a {
  background: #fff;
  color: var(--ink);
}

.car-specs span,
.car-features span,
.tour-highlights span,
.modal-car-specs span {
  color: var(--ink);
  background: #f4f4f4;
  border: 1px solid rgba(17, 19, 21, 0.08);
}

.price-row {
  background: rgba(215, 25, 32, 0.06);
  border-color: rgba(215, 25, 32, 0.16);
}

.price-row span,
.price-row strong,
.modal-rate-row span,
.modal-rate-row strong,
.from-price,
.rental-total-box strong,
.rental-total-box div:last-of-type strong,
.tour-plan-box span,
.tour-plan-box strong,
.tour-plan-box div:last-of-type strong {
  color: var(--gold);
}

.from-price span {
  color: var(--muted);
}

.modal-rate-row {
  background: rgba(215, 25, 32, 0.06);
  border-color: rgba(215, 25, 32, 0.16);
}

.rental-total-box,
.tour-plan-box {
  background: rgba(215, 25, 32, 0.05);
  border: 1px solid rgba(215, 25, 32, 0.2);
}

.tour-inclusion-list span,
.transfer-route-list span,
.check-list li,
.benefit strong,
.fleet-card strong {
  color: var(--ink);
}

.tour-inclusion-list span::before,
.transfer-route-list span::before,
.check-list li::before {
  background: var(--gold);
  color: #fff;
}

.modal-booking-form input:focus,
.modal-booking-form select:focus,
.modal-booking-form textarea:focus {
  border-color: rgba(215, 25, 32, 0.72);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
}

.modal-booking-form input[readonly] {
  color: var(--gold);
  background: rgba(215, 25, 32, 0.06);
  border-color: rgba(215, 25, 32, 0.2);
}

.newsletter form {
  border-color: rgba(17, 19, 21, 0.14);
}

.footer-bottom {
  border-top-color: rgba(17, 19, 21, 0.1);
}

.featured-car img {
  filter: drop-shadow(-18px 28px 34px rgba(17, 19, 21, 0.18));
  mix-blend-mode: normal;
}

.heart-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 21, 0.16);
}

.heart-btn.active {
  color: var(--gold);
}

.car-category-badge {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 21, 0.16);
}

@media (max-width: 1180px) {
  .main-nav,
  .header-actions {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(17, 19, 21, 0.12);
    box-shadow: 0 18px 44px rgba(17, 19, 21, 0.1);
  }
}

/* Keep regular copy black in the white theme; reserve red for actions and prices. */
.hero h1 span,
.eyebrow,
.tour-meta,
.text-link,
.footer-bottom span,
.stats-grid span,
.service-icon,
.benefit svg,
.fleet-card svg,
.phone-btn svg,
.main-nav a:hover,
.main-nav a.active,
.modal-close {
  color: var(--ink);
}

.rental-car-media,
.modal-car-summary img {
  background: #f7f7f7;
}

.availability-badge {
  background: #f4f4f4;
  border: 1px solid var(--line);
  color: var(--ink);
}

.car-filter-btn {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.22);
  box-shadow: 0 8px 20px rgba(17, 19, 21, 0.06);
}

.car-filter-btn.active,
.car-filter-btn:hover,
.car-filter-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.24);
}

.brand-logo {
  width: 230px;
  max-height: 88px;
  filter: drop-shadow(0 8px 16px rgba(17, 19, 21, 0.12));
}

.footer-brand .brand-logo {
  width: 235px;
  max-height: none;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 165px;
    max-height: 76px;
  }
}
