:root {
  --ivory: #091111;
  --ivory-soft: #0f1b1a;
  --deep: #dcece4;
  --deep-soft: #c6e0d4;
  --text: #edf6f2;
  --text-soft: #a7bbb2;
  --line: rgba(222, 236, 230, 0.16);
  --glass: rgba(255, 255, 255, 0.06);
  --mint: #e3ab63;
  --mint-dark: #b27637;
  --gold: #d5ae62;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --shadow-heavy: 0 30px 65px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 7% 4%, #142221, var(--ivory));
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(243, 200, 143, 0.8);
  outline-offset: 2px;
}

.shell {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 16%, rgba(127, 86, 45, 0.24) 68%, rgba(213, 174, 98, 0.14));
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  animation: blob-float 14s ease-in-out infinite;
}

.blob-a {
  width: 460px;
  height: 460px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle at 35% 35%, rgba(227, 171, 99, 0.28), transparent 75%);
}

.blob-b {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(213, 174, 98, 0.24), transparent 70%);
  animation-delay: -4s;
}

.blob-c {
  width: 320px;
  height: 320px;
  left: 36%;
  bottom: -120px;
  background: radial-gradient(circle at 60% 40%, rgba(114, 165, 142, 0.2), transparent 72%);
  animation-delay: -7s;
}

.texture {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 84%);
  opacity: 0.3;
}

.radar {
  position: absolute;
  inset: 14% 10%;
  border-radius: 50%;
  border: 1px solid rgba(215, 231, 223, 0.08);
  animation: radar-spin 36s linear infinite;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(227, 171, 99, 0.22), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 260ms ease;
}

.quick-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #1f1208;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(120deg, #f0c58a, #d89a52);
  box-shadow: 0 14px 30px rgba(216, 154, 82, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.quick-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(216, 154, 82, 0.44);
}

body[data-theme="midnight-blue"] {
  --ivory: #070c18;
  --ivory-soft: #10172a;
  --deep: #d8e4ff;
  --deep-soft: #b8caef;
  --text: #eaf1ff;
  --text-soft: #a7b6d6;
  --line: rgba(219, 231, 255, 0.18);
  --mint: #d7a96b;
  --mint-dark: #a87337;
  --gold: #efc07b;
  background: radial-gradient(circle at 8% 4%, #0f1833, var(--ivory));
}

body[data-theme="velvet-burgundy"] {
  --ivory: #14090f;
  --ivory-soft: #23121d;
  --deep: #ffe4ec;
  --deep-soft: #e9c7d1;
  --text: #fff2f6;
  --text-soft: #d7aebb;
  --line: rgba(255, 224, 235, 0.16);
  --mint: #e0ab63;
  --mint-dark: #ac6e32;
  --gold: #f0c281;
  background: radial-gradient(circle at 8% 4%, #341120, var(--ivory));
}

body[data-theme="onyx-silver"] {
  --ivory: #090b0f;
  --ivory-soft: #151a24;
  --deep: #f0f4fb;
  --deep-soft: #c8d3e8;
  --text: #edf2fb;
  --text-soft: #a8b4c9;
  --line: rgba(219, 227, 242, 0.18);
  --mint: #d2a86e;
  --mint-dark: #906235;
  --gold: #e2b67e;
  background: radial-gradient(circle at 8% 4%, #1a2335, var(--ivory));
}

body[data-theme="desert-bronze"] {
  --ivory: #130d07;
  --ivory-soft: #26190d;
  --deep: #ffe9cf;
  --deep-soft: #efcfab;
  --text: #fff3e2;
  --text-soft: #d7b796;
  --line: rgba(255, 226, 189, 0.18);
  --mint: #e4a962;
  --mint-dark: #9f5f26;
  --gold: #f2c27f;
  background: radial-gradient(circle at 8% 4%, #352111, var(--ivory));
}

body[data-theme="midnight-blue"] .veil {
  background: linear-gradient(165deg, transparent 18%, rgba(43, 67, 122, 0.32) 70%, rgba(206, 171, 120, 0.12));
}

body[data-theme="velvet-burgundy"] .veil {
  background: linear-gradient(165deg, transparent 18%, rgba(136, 48, 77, 0.3) 70%, rgba(217, 163, 95, 0.14));
}

body[data-theme="onyx-silver"] .veil {
  background: linear-gradient(165deg, transparent 18%, rgba(78, 95, 131, 0.3) 70%, rgba(214, 177, 126, 0.13));
}

body[data-theme="desert-bronze"] .veil {
  background: linear-gradient(165deg, transparent 18%, rgba(155, 95, 37, 0.3) 70%, rgba(236, 183, 117, 0.16));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}

.brand {
  margin: 0;
  font: 700 1.4rem/1 "Sora", sans-serif;
  letter-spacing: 0.09em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--mint);
  transition: right 220ms ease;
}

.nav-links a:hover::after {
  right: 0;
}

.pill {
  text-decoration: none;
  color: #08110d;
  background: linear-gradient(120deg, var(--mint), #f3c88f);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 240ms ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(227, 171, 99, 0.34);
}

.hero {
  padding: 64px 0 28px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: #efc98f;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  margin: 12px 0 14px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-size: clamp(2.2rem, 6.9vw, 5.1rem);
}

.line-break {
  display: block;
  color: #d4e7de;
}

.subtitle {
  margin: 0;
  max-width: 56ch;
  color: var(--text-soft);
  line-height: 1.72;
}

.theme-switcher {
  margin-top: 18px;
  max-width: 620px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(217, 188, 145, 0.2);
  background: rgba(15, 36, 31, 0.5);
}

.theme-switcher p {
  margin: 0 0 9px;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #f0cb93;
  font-weight: 700;
}

.theme-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-btn {
  min-height: 36px;
  border: 1px solid rgba(218, 233, 226, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(211, 230, 222, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.theme-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 205, 144, 0.52);
}

.theme-btn.active {
  border-color: rgba(247, 205, 144, 0.75);
  background: linear-gradient(120deg, rgba(231, 171, 99, 0.28), rgba(178, 118, 55, 0.2));
  color: #fff2db;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  border: 0;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-strong {
  color: #fff;
  background: linear-gradient(120deg, var(--mint), var(--mint-dark));
  box-shadow: 0 14px 25px rgba(178, 118, 55, 0.32);
}

.btn-soft {
  color: var(--text);
  background: rgba(223, 236, 229, 0.08);
  border: 1px solid var(--line);
}

.stat-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-row article {
  background: rgba(7, 25, 20, 0.74);
  border: 1px solid rgba(177, 214, 198, 0.2);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.count {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: #cde4d8;
}

.stat-row span {
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-main {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(11, 35, 29, 0.84), rgba(8, 26, 22, 0.7));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(190, 225, 210, 0.18);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-heavy);
}

.label {
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.showcase-main h2 {
  margin: 8px 0 6px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.meta {
  margin: 0;
  color: var(--text-soft);
}

.price-row {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #e6f2ec;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184, 139, 58, 0.6);
  animation: pulse-live 2.1s ease-out infinite;
}

.showcase-small {
  padding: 16px;
  border-radius: 16px;
  background: rgba(10, 31, 25, 0.66);
  border: 1px solid rgba(190, 225, 210, 0.16);
  box-shadow: var(--shadow-soft);
}

.showcase-small + .showcase-small {
  background: rgba(10, 31, 25, 0.66);
}

.showcase-small p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.showcase-small h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
}

.ticker {
  margin-top: 24px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(7, 23, 19, 0.72);
  box-shadow: var(--shadow-soft);
}

.ticker-track {
  display: flex;
  gap: 28px;
  padding: 14px 20px;
  min-width: 100%;
  flex-shrink: 0;
  animation: ticker 22s linear infinite;
}

.ticker-track p {
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  font-weight: 700;
}

.rental-policy {
  margin-top: 26px;
}

.policy-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(210, 187, 150, 0.26);
  background: linear-gradient(145deg, rgba(16, 47, 38, 0.92), rgba(8, 27, 22, 0.95));
  padding: 22px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow-soft);
}

.policy-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(227, 171, 99, 0.18), transparent 54%);
}

.policy-title-block h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3.3vw, 2.3rem);
  line-height: 1.08;
}

.policy-title-block p {
  margin: 10px 0 0;
  color: #d6e6de;
  line-height: 1.65;
  max-width: 54ch;
}

.policy-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.policy-points li {
  border: 1px solid rgba(201, 224, 214, 0.24);
  background: rgba(224, 242, 234, 0.06);
  border-radius: 12px;
  padding: 11px 12px;
  color: #d8e9e1;
  line-height: 1.5;
  font-size: 0.9rem;
}

.policy-points strong {
  color: #f2ce99;
}

.fleet {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.car-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(9, 28, 23, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.22), transparent 52%);
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 225, 209, 0.35);
  box-shadow: 0 20px 34px rgba(2, 12, 9, 0.48);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(227, 171, 99, 0.14);
  color: var(--mint-dark);
  padding: 6px 11px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.car-card h3 {
  margin: 14px 0 6px;
  font-family: "Sora", sans-serif;
  line-height: 1.1;
  font-size: 1.4rem;
}

.car-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.56;
}

.specs {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.specs li {
  border: 1px solid rgba(189, 224, 209, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: #cfe3da;
  background: rgba(227, 244, 236, 0.05);
}

.accent-civic::before {
  background: radial-gradient(circle at 100% 0%, rgba(123, 186, 255, 0.24), transparent 54%);
}

.accent-civic {
}

.accent-altis::before {
  background: radial-gradient(circle at 100% 0%, rgba(169, 246, 197, 0.24), transparent 54%);
}

.accent-altis {
}

.accent-alto::before {
  background: radial-gradient(circle at 100% 0%, rgba(255, 224, 142, 0.24), transparent 54%);
}

.accent-alto {
}

.accent-yaris::before {
  background: radial-gradient(circle at 100% 0%, rgba(189, 170, 255, 0.24), transparent 54%);
}

.accent-yaris {
}

.accent-city::before {
  background: radial-gradient(circle at 100% 0%, rgba(134, 226, 211, 0.24), transparent 54%);
}

.accent-city {
}

.accent-fortuner::before {
  background: radial-gradient(circle at 100% 0%, rgba(255, 162, 162, 0.24), transparent 54%);
}

.accent-fortuner {
}

.accent-sportage::before {
  background: radial-gradient(circle at 100% 0%, rgba(255, 200, 132, 0.24), transparent 54%);
}

.accent-sportage {
}

.accent-hiace::before {
  background: radial-gradient(circle at 100% 0%, rgba(143, 208, 255, 0.24), transparent 54%);
}

.accent-hiace {
}

.booking {
  margin-top: 30px;
  margin-bottom: 38px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(15, 47, 38, 0.94), rgba(8, 28, 22, 0.96));
  color: #e9f3ea;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}

.booking .eyebrow {
  color: #f1d4a6;
}

.booking h2 {
  margin: 12px 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 0.98;
}

.booking-note {
  margin: 0;
  color: rgba(233, 243, 234, 0.84);
  line-height: 1.67;
}

.contact-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-card {
  border: 1px solid rgba(210, 184, 146, 0.24);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 244, 230, 0.04);
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #f2e6d1;
  text-decoration: none;
  word-break: break-word;
}

.contact-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfb288 !important;
}

.contact-wide {
  grid-column: 1 / -1;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.message-field {
  grid-column: 1 / -1;
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  color: #d6ecdc;
  font-weight: 700;
}

.booking-form select,
.booking-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(196, 224, 206, 0.24);
  background: rgba(225, 242, 231, 0.1);
  color: #f2faf4;
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
}

.booking-form input[type="date"] {
  color-scheme: dark;
}

.booking-form .btn {
  align-self: end;
  min-height: 44px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #8ea9a0;
  padding-bottom: 26px;
  font-size: 0.92rem;
}

@media (max-width: 420px) {
  .topbar {
    padding-top: 16px;
    gap: 10px;
  }

  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
  }

  .pill {
    padding: 8px 11px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .hero {
    padding-top: 28px;
    gap: 14px;
  }

  h1 {
    font-size: clamp(1.75rem, 11vw, 2.3rem);
    line-height: 1.06;
  }

  .subtitle {
    font-size: 0.93rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 8px;
  }

  .theme-switcher {
    margin-top: 14px;
    padding: 10px;
  }

  .theme-switcher p {
    margin-bottom: 7px;
  }

  .theme-btn {
    width: 100%;
    min-height: 38px;
    font-size: 0.72rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    font-size: 0.84rem;
  }

  .stat-row article,
  .showcase-main,
  .showcase-small,
  .car-card,
  .contact-card {
    padding: 12px;
  }

  .count {
    font-size: 1.6rem;
  }

  .ticker-track {
    gap: 18px;
    padding: 11px 14px;
  }

  .ticker-track p {
    font-size: 0.7rem;
  }

  .booking {
    margin-top: 24px;
    margin-bottom: 88px;
    padding: 14px;
    gap: 12px;
    border-radius: 20px;
  }

  .booking h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.08;
  }

  .booking-note {
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .booking-form label {
    font-size: 0.8rem;
  }

  .booking-form select,
  .booking-form input,
  .booking-form .btn {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .quick-contact {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes radar-spin {
  from {
    transform: rotate(0deg) scale(0.94);
  }
  to {
    transform: rotate(360deg) scale(1.02);
  }
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 139, 58, 0.55);
  }
  80% {
    box-shadow: 0 0 0 18px rgba(184, 139, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 139, 58, 0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .fleet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-wrap {
    grid-template-columns: 1fr;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(1140px, 94vw);
  }

  .brand {
    font-size: 1.22rem;
  }

  .pill {
    padding: 9px 14px;
  }

  .stat-row,
  .fleet,
  .contact-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .policy-wrap {
    padding: 18px;
  }

  .policy-title-block p {
    font-size: 0.94rem;
  }

  .ticker {
    border-radius: 18px;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    padding: 20px;
  }

  .booking {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .cursor-glow {
    display: none;
  }

  .quick-contact {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
