﻿:root {
  --bg: #050505;
  --black-2: #111111;
  --gold: #C8A46A;
  --dark-gold: #9B7A3D;
  --silver: #D7D9DD;
  --silver-2: #9FA3AA;
  --white: #F8F8F8;
  --muted: #B8B8B8;
  --line: rgba(200, 164, 106, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.1rem;
  background: #050505;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader img {
  width: min(420px, 76vw);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.72));
}

.loader span {
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.loader-bar {
  width: min(360px, 72vw);
  height: 2px;
  overflow: hidden;
  background: rgba(215, 217, 221, 0.18);
}

.loader-bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--silver), var(--gold));
  transform-origin: left;
  animation: loaderFill 1.35s ease forwards;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 164, 106, 0.18), transparent 25rem),
    radial-gradient(circle at 80% 56%, rgba(155, 122, 61, 0.16), transparent 28rem),
    linear-gradient(115deg, #050505, #111111 46%, #050505);
  animation: bgMove 14s ease-in-out infinite alternate;
  z-index: -4;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

#particles,
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#particles {
  z-index: -2;
}

.site-bg {
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.94)),
    url("arena.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -3;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(200, 164, 106, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 0.84rem;
  letter-spacing: 0.28em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0;
}

.brand.logo-only img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border: 1px solid rgba(200, 164, 106, 0.32);
  box-shadow: 0 0 22px rgba(200, 164, 106, 0.12);
}

.primary-nav {
  justify-self: center;
  display: flex;
  gap: clamp(0.8rem, 2.4vw, 2rem);
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.primary-nav a:hover {
  color: var(--silver);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  position: relative;
  z-index: 34;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.lang {
  border: 1px solid rgba(200, 164, 106, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 0.42rem 0.55rem;
  cursor: pointer;
  touch-action: manipulation;
  transition: all 0.25s ease;
}

.lang.active,
.lang:hover {
  color: #050505;
  background: var(--gold);
}

.info-ticker {
  position: fixed;
  top: 5.25rem;
  left: 0;
  right: 0;
  z-index: 28;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 164, 106, 0.18);
  background: rgba(17, 17, 17, 0.76);
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: none;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.66rem 1.55rem;
}

.ticker-track span::before {
  content: none;
}

.ticker-track b {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-track .keep-case {
  letter-spacing: 0.08em;
  text-transform: none;
}

.ticker-icon {
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  min-width: 1.05rem;
  flex: 0 0 auto;
  color: var(--gold);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(200, 164, 106, 0.32);
}

.ticker-icon.plane::before {
  content: "\2708\FE0E";
}

.ticker-icon.clock::before {
  content: "\25F7\FE0E";
}

.ticker-icon.phone::before {
  content: "\260E\FE0E";
}

.ticker-icon.mail::before {
  content: "\2709\FE0E";
}

.ticker-icon.route::before {
  content: "\2197\FE0E";
}

.section {
  position: relative;
  padding: clamp(2.2rem, 5vw, 4.2rem) clamp(1rem, 5vw, 4rem);
}

#booking,
#about,
#contact,
#reviews {
  scroll-margin-top: 9.8rem;
}

.hero {
  min-height: 660px;
  scroll-margin-top: 9.4rem;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(620px, 1.24fr);
  grid-template-areas:
    "copy stats"
    "copy cars";
  align-items: end;
  gap: clamp(1rem, 2.6vw, 3rem) clamp(1rem, 4vw, 4.5rem);
  padding-top: 9rem;
  padding-bottom: 0.2rem;
  overflow: visible;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("arena.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 67% 58%, rgba(200, 164, 106, 0.24), transparent 22rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.54) 45%, rgba(5, 5, 5, 0.7)),
    linear-gradient(0deg, #050505, transparent 34%, rgba(5, 5, 5, 0.86));
}

.hero-content {
  position: relative;
  z-index: 4;
  grid-area: copy;
  width: min(600px, 100%);
  margin-left: clamp(0rem, 3vw, 2.5rem);
  padding: 0 0 2.6rem;
  text-align: left;
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow span:first-child,
.eyebrow span:last-child {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.split-title {
  margin: 0.6rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5.1vw, 5.35rem);
  line-height: 0.9;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(215, 217, 221, 0.18);
}

.split-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.2rem);
  animation: letterIn 0.78s ease forwards;
}

.split-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
  white-space: nowrap;
}

.split-title span:nth-child(2n) {
  animation-delay: 0.07s;
}

.split-title span:nth-child(3n) {
  animation-delay: 0.14s;
}

.hero h2 {
  margin: 1.35rem 0 0;
  max-width: 560px;
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--line);
  padding: 0.9rem 1.2rem;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: #050505;
  box-shadow: 0 14px 44px rgba(200, 164, 106, 0.2);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.btn.small {
  min-height: 2.35rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.72rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(200, 164, 106, 0.24);
}

.hero-cars {
  position: relative;
  z-index: 3;
  grid-area: cars;
  display: grid;
  grid-template-columns: 1.08fr 1.16fr 1.22fr;
  align-items: end;
  gap: clamp(1rem, 1.7vw, 2.05rem);
  left: auto;
  right: auto;
  bottom: auto;
  width: min(100%, 1060px);
  height: auto;
  align-self: end;
  justify-self: end;
  margin: -1.7rem 3.2rem 0 -4.6rem;
  pointer-events: none;
}

.hero-vehicle {
  position: relative;
  bottom: auto;
  display: block;
  pointer-events: auto;
  opacity: 1;
  animation: none;
  transform-origin: center bottom;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.hero-vehicle::before {
  content: "";
  position: absolute;
  inset: -18% -10% -8%;
}

.hero-vehicle:hover {
  z-index: 12;
  transform: scale(1.08);
}

.hero-vehicle:hover::after {
  opacity: 0;
}

.hero-vehicle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  z-index: 8;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: translate(-50%, 0.35rem);
  transition: opacity 0.24s ease, transform 0.24s ease;
  white-space: nowrap;
}

.hero-car {
  width: 100%;
  filter:
    brightness(1.13)
    contrast(1.06)
    drop-shadow(0 24px 22px rgba(0, 0, 0, 0.84))
    drop-shadow(0 0 12px rgba(215, 217, 221, 0.1));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-vehicle:hover .hero-car {
  transform: none;
  filter:
    drop-shadow(0 34px 30px rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 24px rgba(200, 164, 106, 0.24));
}

.car-panamera {
  left: auto;
  bottom: auto;
  z-index: 4;
  width: 106%;
}

.car-bmw {
  left: auto;
  bottom: auto;
  z-index: 5;
  width: 106%;
}

.car-vclass {
  right: auto;
  bottom: auto;
  z-index: 2;
  width: 106%;
}

.vehicle-info {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 82%;
  z-index: 30;
  display: grid;
  gap: 0.48rem;
  padding: 0.92rem;
  border: 1px solid rgba(215, 217, 221, 0.34);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.94), rgba(25, 20, 14, 0.86));
  color: var(--silver);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.vehicle-info strong {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.vehicle-info small {
  color: var(--muted);
  line-height: 1.45;
}

.vehicle-info b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 8.4rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(200, 164, 106, 0.55);
  background: rgba(200, 164, 106, 0.12);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-vehicle:hover .vehicle-info,
.hero-vehicle:focus .vehicle-info {
  opacity: 1;
  transform: translateY(0);
}

.car-reflection {
  position: absolute;
  left: 4%;
  right: 0;
  bottom: -1rem;
  height: 38%;
  background: radial-gradient(ellipse at center, rgba(200, 164, 106, 0.12), transparent 64%);
  filter: blur(18px);
  opacity: 0.55;
}

.mobile-vehicle-list {
  display: none;
}

.booking-section {
  padding-top: clamp(0.35rem, 1.4vw, 1.1rem);
}

.booking-section .reveal {
  opacity: 1;
  transform: none;
}

.hero-statbar {
  position: relative;
  grid-area: stats;
  z-index: 5;
  right: auto;
  top: auto;
  justify-self: end;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(680px, 100%);
  margin-top: 0.7rem;
  border: 1px solid rgba(200, 164, 106, 0.24);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-statbar div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.95rem 0.95rem;
  border-right: 1px solid rgba(200, 164, 106, 0.22);
  place-items: center;
  text-align: center;
}

.hero-statbar div:last-child {
  border-right: 0;
}

.hero-statbar strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.hero-statbar span {
  color: var(--muted);
  font-size: clamp(0.62rem, 0.72vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 1050px;
  margin: 0 auto 2.2rem;
}

.section-heading h2,
.about-card h2,
.booking-card h2,
.policy-modal h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 6vw, 4.7rem);
}

.about-card h2 {
  max-width: 900px;
  font-size: clamp(2.05rem, 4.8vw, 3.9rem);
}

.section-heading p:not(.kicker),
.about-card p,
.booking-card p,
.policy-modal p {
  color: var(--muted);
  line-height: 1.75;
}

.stat-card,
.booking-card,
.about-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 17, 17, 0.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.booking-card::before,
.about-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  background: linear-gradient(115deg, transparent, rgba(200, 164, 106, 0.85), transparent) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: borderGlow 4s linear infinite;
  pointer-events: none;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200, 164, 106, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.tilt-card:hover .card-shine {
  opacity: 1;
}

.route-chips,
.about-points,
.booking-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.booking-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-chips span,
.about-points span,
.booking-mini span {
  border: 1px solid rgba(200, 164, 106, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver);
  min-width: 0;
  padding: 0.62rem 0.65rem;
  font-size: clamp(0.64rem, 1vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

.quote-section {
  min-height: 18vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: clamp(1rem, 2.4vw, 2rem);
  padding-bottom: clamp(1rem, 2.4vw, 2rem);
}

.quote-section blockquote {
  max-width: 840px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3.1vw, 2.85rem);
  line-height: 1.18;
  opacity: 0.94;
}

.reviews-section {
  padding-top: clamp(1.8rem, 4vw, 3.6rem);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.review-card {
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 1.05rem;
  padding: 1.15rem;
  border: 1px solid rgba(200, 164, 106, 0.24);
  background:
    linear-gradient(145deg, rgba(215, 217, 221, 0.07), transparent 42%),
    rgba(5, 5, 5, 0.68);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.review-head {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: center;
  gap: 1rem;
}

.review-head img {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(200, 164, 106, 0.32);
  box-shadow: 0 0 0 5px rgba(200, 164, 106, 0.05), 0 18px 34px rgba(0, 0, 0, 0.36);
}

.review-head span {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.review-card strong {
  color: var(--silver);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  padding-top: clamp(1.8rem, 4vw, 3.4rem);
}

.contact-card {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3.5vw, 2.6rem);
  border: 1px solid rgba(200, 164, 106, 0.28);
  background:
    radial-gradient(circle at 92% 18%, rgba(200, 164, 106, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(215, 217, 221, 0.07), transparent 34%),
    rgba(5, 5, 5, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-card h2 {
  max-width: 680px;
  margin: 0.25rem 0 1rem;
  color: var(--silver);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4.2vw, 3.5rem);
  line-height: 1;
}

.contact-card p:not(.kicker) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-mini-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-mini-form textarea {
  grid-column: 1 / 3;
}

.contact-mini-form input,
.contact-mini-form textarea {
  width: 100%;
  border: 1px solid rgba(200, 164, 106, 0.28);
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
  padding: 0.85rem;
  outline: none;
}

.contact-mini-form button {
  align-self: stretch;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.form-feedback {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(200, 164, 106, 0.34);
  background: rgba(200, 164, 106, 0.09);
  color: var(--silver) !important;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  border-color: rgba(102, 214, 151, 0.48);
  background: rgba(102, 214, 151, 0.1);
  color: #d7f8e5 !important;
}

.form-feedback.is-error {
  border-color: rgba(255, 121, 121, 0.52);
  background: rgba(255, 121, 121, 0.1);
  color: #ffd7d7 !important;
}

.ride-form button[type="submit"]:disabled,
.contact-mini-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-email {
  font-size: clamp(0.82rem, 2.8vw, 0.95rem);
  text-transform: none;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.about-section {
  max-width: 1120px;
  margin: 0 auto;
}

.about-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.booking-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.ride-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ride-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ride-form input,
.ride-form select,
.ride-form textarea {
  width: 100%;
  border: 1px solid rgba(200, 164, 106, 0.28);
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
  padding: 0.9rem;
  min-height: 3.25rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ride-form input[type="datetime-local"] {
  color-scheme: dark;
  padding-right: 0.75rem;
}

.ride-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  width: 1.35rem;
  height: 1.35rem;
  opacity: 1;
  cursor: pointer;
  filter: invert(75%) sepia(29%) saturate(535%) hue-rotate(357deg) brightness(91%) contrast(88%);
}

.ride-form textarea {
  resize: vertical;
}

.ride-form input:focus,
.ride-form select:focus,
.ride-form textarea:focus {
  border-color: var(--gold);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.12), 0 0 28px rgba(200, 164, 106, 0.1);
}

.full {
  grid-column: 1 / -1;
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 1px solid rgba(200, 164, 106, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  box-shadow: 0 18px 50px rgba(200, 164, 106, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 60px rgba(200, 164, 106, 0.36);
}

.whatsapp-float svg {
  width: 2.15rem;
  fill: #050505;
}

.cookie-panel {
  position: fixed;
  left: 6rem;
  right: auto;
  bottom: 1rem;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(1060px, calc(100vw - 7rem));
  padding: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-panel.show {
  display: grid;
}

.cookie-panel p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.policy-modal {
  width: min(620px, calc(100vw - 2rem));
  border: 1px solid var(--line);
  background: #080808;
  color: var(--white);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.policy-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.modal-close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.4rem;
}

.consent-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  margin: 1rem 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.7rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid rgba(200, 164, 106, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 164, 106, 0.12), transparent 22rem),
    #030303;
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 0.3rem;
}

.footer strong,
.footer a {
  color: var(--gold);
}

.footer-company strong {
  white-space: nowrap;
}

.footer-company strong span {
  white-space: nowrap;
}

.footer-logo {
  justify-self: center;
  text-align: center;
}

.footer-logo img {
  width: min(245px, 64vw);
  height: auto;
  opacity: 1;
}

.footer-instagram {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 0.62rem;
  min-height: 2.75rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(200, 164, 106, 0.38);
  border-radius: 999px;
  background: rgba(200, 164, 106, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  border-color: var(--gold);
  background: rgba(200, 164, 106, 0.15);
  box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.08), 0 12px 34px rgba(200, 164, 106, 0.16);
  transform: translateY(-2px);
}

.instagram-icon {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer > p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.footer-credit {
  color: rgba(184, 184, 184, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer .footer-credit a {
  color: rgba(200, 164, 106, 0.72);
  text-decoration: none;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-copy {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 39;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(200, 164, 106, 0.58);
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b66f, var(--gold), #9b7a3d);
  color: #050505;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(200, 164, 106, 0.28), 0 0 0 6px rgba(200, 164, 106, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.back-to-top:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 22px 58px rgba(200, 164, 106, 0.38), 0 0 0 7px rgba(200, 164, 106, 0.11);
}

.form-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: min(620px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(102, 214, 151, 0.52);
  background: rgba(5, 12, 8, 0.96);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58), 0 0 0 5px rgba(102, 214, 151, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, calc(100% + 2rem));
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.form-toast[hidden] {
  display: none;
}

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

.form-toast.is-error {
  border-color: rgba(255, 121, 121, 0.58);
  background: rgba(18, 6, 6, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58), 0 0 0 5px rgba(255, 121, 121, 0.08);
}

.form-toast-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(102, 214, 151, 0.16);
  color: #8ff0b9;
  font-size: 1.35rem;
  font-weight: 900;
}

.form-toast.is-error .form-toast-icon {
  background: rgba(255, 121, 121, 0.14);
  color: #ff9f9f;
}

.form-toast strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 1rem;
}

.form-toast p {
  margin: 0;
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-toast-close {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--silver);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.footer-links a {
  color: var(--silver);
  border-bottom: 1px solid rgba(200, 164, 106, 0.28);
}

.vehicle-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.96)),
    url("arena.webp") center / cover fixed;
}

.vehicle-detail {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 3rem;
  padding-top: 11rem;
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.vehicle-detail h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--silver);
}

.vehicle-detail p,
.vehicle-detail li {
  color: var(--muted);
  line-height: 1.7;
}

.vehicle-detail ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
}

.vehicle-detail-grid > img {
  width: 100%;
  filter: drop-shadow(0 36px 32px rgba(0, 0, 0, 0.82));
}

.vehicle-back {
  width: fit-content;
  border: 1px solid rgba(200, 164, 106, 0.34);
  background: rgba(5, 5, 5, 0.64);
  color: var(--gold);
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vehicle-switch a {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(200, 164, 106, 0.28);
  background: rgba(5, 5, 5, 0.64);
  padding: 0.8rem;
  color: var(--silver);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-switch a.active {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(200, 164, 106, 0.16);
}

.vehicle-switch img {
  width: 100%;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.7));
}

.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fleet-page-grid a {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(200, 164, 106, 0.28);
  background: rgba(5, 5, 5, 0.68);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.fleet-page-grid a:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(200, 164, 106, 0.62);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.68);
}

.fleet-page-grid img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: contain;
}

.fleet-page-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-page-grid strong {
  color: var(--silver);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.fleet-page-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.vehicle-price-cta {
  display: flex;
  justify-content: center;
  margin: 0.2rem 0 1.2rem;
}

.vehicle-price-cta .btn {
  min-width: min(18rem, 100%);
}

.price-page {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-top: 7.4rem;
}

.price-hero {
  max-width: 860px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.price-hero h1 {
  margin: 0;
  color: var(--silver);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 5.4vw, 4.25rem);
  line-height: 1;
}

.price-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.price-table-card {
  overflow: hidden;
  border: 1px solid rgba(200, 164, 106, 0.32);
  background:
    linear-gradient(135deg, rgba(215, 217, 221, 0.07), transparent 42%),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.price-table-head,
.price-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
}

.price-table-head {
  border-bottom: 1px solid rgba(200, 164, 106, 0.26);
  background: rgba(200, 164, 106, 0.08);
}

.price-table-head span,
.price-row > div,
.price-row > p {
  min-width: 0;
  padding: 1.05rem;
  border-right: 1px solid rgba(200, 164, 106, 0.18);
}

.price-table-head span:last-child,
.price-row > p:last-child {
  border-right: 0;
}

.price-table-head span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-row {
  border-bottom: 1px solid rgba(200, 164, 106, 0.18);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.highlight {
  background: linear-gradient(90deg, rgba(200, 164, 106, 0.08), transparent);
}

.price-row > div > small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-row > div > strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--silver);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.price-row p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  align-content: center;
}

.price-row b {
  color: var(--silver);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row p > span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.price-row p > span strong {
  display: inline;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 0.92;
}

.price-row p > span small {
  display: inline;
  color: var(--silver);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: none;
}

.price-row em,
.muted-cell {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.45;
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-notes article {
  padding: 1.15rem;
  border: 1px solid rgba(200, 164, 106, 0.24);
  background: rgba(5, 5, 5, 0.62);
}

.price-notes h2 {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-notes p {
  color: var(--muted);
  line-height: 1.65;
}

.price-notes strong {
  color: var(--silver);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.legal-page {
  width: min(960px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-top: 8rem;
  color: var(--muted);
}

.legal-page h1,
.vehicle-detail h1,
.section-heading h1 {
  margin: 0;
  color: var(--silver);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 0.98;
}

.legal-page h2 {
  margin: 2rem 0 0.55rem;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-detail > .section-heading h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.32em;
  background: linear-gradient(110deg, #f2f2f0 8%, #c8a46a 52%, #ffffff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
  text-shadow: 0 12px 38px rgba(200, 164, 106, 0.12);
}

.vehicle-detail > .section-heading h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(58%, 230px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 164, 106, 0));
  box-shadow: 0 0 18px rgba(200, 164, 106, 0.36);
}

.legal-page p {
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bgMove {
  from { filter: hue-rotate(0deg) brightness(1); }
  to { filter: hue-rotate(-8deg) brightness(1.12); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes carArrive {
  from {
    opacity: 0;
    transform: translateX(8vw) translateY(4rem) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes carFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -0.55rem; }
}

@keyframes borderGlow {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

@keyframes loaderFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.8rem;
  }

  .info-ticker {
    top: 9.45rem;
  }

 .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stats"
      "cars";
    padding-top: 13.8rem;
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 0;
    margin-left: 0;
  }

  .hero-cars {
    display: none;
  }

  .mobile-vehicle-list {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    width: min(94vw, 980px);
    margin: 0.2rem auto 0;
  }

  .mobile-vehicle-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0.36rem;
    padding: 0.72rem 0.8rem 0.86rem;
    border: 1px solid rgba(200, 164, 106, 0.28);
    background:
      linear-gradient(115deg, rgba(200, 164, 106, 0.1), transparent 34%),
      rgba(5, 5, 5, 0.74);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
    overflow: visible;
  }

  .mobile-vehicle-list img {
    width: min(96%, 330px);
    height: auto;
    max-height: 9.4rem;
    justify-self: center;
    object-fit: contain;
    filter: none;
  }

  .mobile-vehicle-list strong {
    color: var(--silver);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    text-align: center;
  }

  .mobile-vehicle-list span {
    display: block;
    margin-top: 0.08rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
  }

  .hero-statbar {
    justify-self: stretch;
    width: 100%;
    margin: 0;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 1.55rem 5vw;
  }

  #booking,
  #about,
  #contact,
  #reviews {
    scroll-margin-top: 11.2rem;
  }

  .topbar {
    position: sticky;
    top: 2.75rem;
    z-index: 59;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.58rem 0.65rem;
    align-items: center;
    justify-content: center;
    margin-top: 2.75rem;
    padding: 0.62rem 0.78rem 0.72rem;
    overflow: hidden;
  }

  .info-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 2.75rem;
    border-top: 0;
    border-bottom: 1px solid rgba(200, 164, 106, 0.24);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(16px);
  }

  .ticker-track span {
    padding: 0.72rem 0.95rem;
  }

  .primary-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.36rem clamp(0.34rem, 2.1vw, 0.6rem);
    overflow: visible;
    padding: 0.08rem 0 0;
    font-size: clamp(0.55rem, 2.25vw, 0.72rem);
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    padding: 0.28rem 0;
    border: 0;
    background: transparent;
    letter-spacing: 0.065em;
    white-space: nowrap;
  }

  .primary-nav a::after {
    bottom: -0.18rem;
  }

  .brand {
    grid-row: 1;
    grid-column: 1;
    justify-self: end;
    margin-left: 0;
    letter-spacing: 0.18em;
  }

  .logo-only img {
    width: 3.55rem;
    height: 3.55rem;
    border: 0;
    border-radius: 999px;
    object-fit: contain;
    box-shadow: 0 0 28px rgba(200, 164, 106, 0.18);
  }

  .language-switcher {
    grid-row: 1;
    grid-column: 2;
    justify-self: start;
    align-self: center;
    margin-right: 0;
    gap: 0.16rem;
    flex-wrap: nowrap;
    max-width: 100%;
    padding: 0.18rem;
    border: 1px solid rgba(200, 164, 106, 0.18);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.48);
  }

  .lang {
    min-width: auto;
    padding: 0.4rem 0.43rem;
    border: 0;
    border-radius: 999px;
    font-size: clamp(0.6rem, 2.45vw, 0.76rem);
  }

  .hero {
    scroll-margin-top: 10.8rem;
    min-height: auto;
    align-items: start;
    grid-template-areas:
      "copy"
      "cars"
      "stats";
    padding: 0.72rem 5vw 0.92rem;
  }

  .booking-section {
    padding-top: 0.75rem;
  }

  .about-card,
  .booking-card,
  .contact-card {
    padding: 1.2rem;
  }

  .quote-section {
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    text-align: center;
  }

  .hero .eyebrow {
    margin-bottom: 0.38rem;
    font-size: 0.66rem;
  }

  .eyebrow {
    justify-content: center;
  }

  .eyebrow span:first-child,
  .eyebrow span:last-child {
    display: none;
  }

  .split-title {
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 0.9;
    letter-spacing: 0.045em;
  }

  .hero p:not(.eyebrow) {
    margin-top: 0.52rem;
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .hero h2 {
    margin-top: 0.45rem;
    font-size: clamp(1.02rem, 4.55vw, 1.42rem);
    line-height: 1.12;
  }

  .hero h2,
  .hero p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .hero-actions .btn {
    min-height: 3.05rem;
    padding: 0.82rem 0.95rem;
  }

  .hero-cars {
    display: none;
  }

  .mobile-vehicle-list {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: min(92vw, 420px);
    margin: 0.18rem auto 0;
  }

  .mobile-vehicle-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0.35rem;
    min-height: auto;
    padding: 0.44rem 0.62rem 0.56rem;
    border: 1px solid rgba(200, 164, 106, 0.28);
    background:
      linear-gradient(115deg, rgba(200, 164, 106, 0.1), transparent 34%),
      rgba(5, 5, 5, 0.74);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
    overflow: visible;
  }

  .mobile-vehicle-list img {
    width: min(86%, 320px);
    height: auto;
    max-height: 7.75rem;
    justify-self: center;
    object-fit: contain;
    filter: none;
  }

  .mobile-vehicle-list strong {
    color: var(--silver);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.28rem;
    text-align: center;
  }

  .mobile-vehicle-list span {
    display: block;
    margin-top: 0.1rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
  }

  .hero-statbar {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(92vw, 420px);
    margin: 1rem auto 0;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-statbar div {
    min-height: 7.15rem;
    place-items: center;
    text-align: center;
    padding: 0.82rem 0.7rem;
  }

  .booking-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .booking-mini span {
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 0.52rem;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .contact-card {
    text-align: left;
  }

  .contact-card h2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-mini-form {
    grid-template-columns: 1fr;
  }

  .contact-mini-form textarea {
    grid-column: auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1rem;
    justify-items: center;
    text-align: center;
  }

  .review-head {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
    width: 100%;
  }

  .review-head img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .review-head span {
    font-size: 0.86rem;
    letter-spacing: 0.2em;
  }

  .review-card p {
    max-width: 29rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .review-card strong {
    justify-self: center;
  }

  .hero-statbar div:nth-child(2) {
    border-right: 0;
  }

  .ride-form {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-detail {
    min-height: auto;
    align-content: start;
    gap: 1.05rem;
    padding: 1.1rem 5vw 2.2rem;
  }

  .vehicle-back {
    padding: 0.68rem 0.82rem;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .vehicle-detail h1 {
    font-size: clamp(2.45rem, 14vw, 4.15rem);
    line-height: 0.96;
  }

  .vehicle-detail p,
  .vehicle-detail li {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .vehicle-detail ul {
    gap: 0.35rem;
    margin: 0.65rem 0;
  }

  .vehicle-detail-grid {
    gap: 1rem;
  }

  .vehicle-detail-grid > img {
    order: -1;
    width: min(112%, 480px);
    justify-self: center;
    margin: -0.45rem auto 0.1rem;
    filter: none;
  }

  .vehicle-switch {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .vehicle-switch a {
    grid-template-columns: 7.6rem 1fr;
    min-height: 5.5rem;
    padding: 0.55rem 0.7rem;
  }

  .vehicle-switch img {
    filter: none;
  }

  .fleet-page-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .price-page {
    width: min(92vw, 720px);
    padding-top: 1.4rem;
  }

  .price-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.04;
  }

  .price-hero {
    margin-bottom: 1rem;
  }

  .price-hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .price-table-head {
    display: none;
  }

  .price-table-card {
    display: grid;
    gap: 1.25rem;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 106, 0.32);
    background:
      linear-gradient(135deg, rgba(215, 217, 221, 0.07), transparent 42%),
      rgba(5, 5, 5, 0.72);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
  }

  .price-row > div,
  .price-row > p {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 164, 106, 0.15);
  }

  .price-row > p:last-child {
    border-bottom: 0;
  }

  .price-row p > span strong {
    font-size: 2.15rem;
  }

  .price-row p > span small {
    font-size: 1.02rem;
  }

  .price-row > div,
  .price-row > p {
    padding: 0.9rem;
  }

  .price-notes {
    grid-template-columns: 1fr;
  }

  .price-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vehicle-detail .section-heading {
    margin-bottom: 0.7rem;
  }

  .vehicle-detail .section-heading p:not(.kicker) {
    margin-bottom: 0;
    line-height: 1.45;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-company strong {
    white-space: normal;
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }

  .footer > p {
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-instagram {
    min-height: 3rem;
    padding-inline: 1rem;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    left: 1rem;
    right: 5.5rem;
    width: auto;
    max-width: 360px;
  }

  .whatsapp-float {
    position: fixed !important;
    left: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 3.7rem;
    height: 3.7rem;
  }

  .back-to-top {
    position: fixed !important;
    right: 0.85rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 3.2rem;
    height: 3.2rem;
  }

  .form-toast {
    bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 460px) {
 .hero {
    min-height: auto;
  }

  .split-title {
    font-size: clamp(2.28rem, 12.2vw, 3.2rem);
  }

  .btn {
    width: 100%;
  }

  .hero-cars {
    height: 220px;
  }

  .cookie-panel {
    left: 1rem;
    right: 1rem;
    bottom: 5.2rem;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}





