:root {
  --black: #061b34;
  --ink: #1d1d1f;
  --muted: #666666;
  --line: #dedede;
  --soft: #f4f4f4;
  --white: #ffffff;
  --yellow: #5ce4e4;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1.45;
  background: var(--white);
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.topbar-inner,
.mainnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(18px, 5vw, 72px);
}

.topbar-inner {
  min-height: 58px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #eeeeee;
  font-size: 14px;
}

.language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.language-menu::before {
  width: 1px;
  height: 22px;
  background: rgba(238, 252, 255, 0.34);
  content: "";
}

.language-menu summary {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(92, 228, 228, 0.28);
  border-radius: 999px;
  padding: 0 10px 0 12px;
  color: #eefcff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-menu[open] summary {
  border-color: var(--yellow);
  background: rgba(92, 228, 228, 0.14);
}

.language-menu[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.language-menu-list {
  position: absolute;
  z-index: 45;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 132px;
  border: 1px solid rgba(92, 228, 228, 0.22);
  border-radius: 6px;
  padding: 6px;
  background: #071f3b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.language-menu-list a,
.language-menu-list span {
  border-radius: 4px;
  padding: 9px 10px;
  color: rgba(238, 252, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.language-menu-list span[aria-current="true"] {
  color: var(--black);
  background: var(--yellow);
}

.language-menu-list a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.mainnav {
  min-height: 44px;
  justify-content: flex-start;
  gap: 34px;
  border-top: 0;
  font-size: 15px;
  font-weight: 700;
}

.mainnav button {
  min-height: 34px;
  margin-left: auto;
  border: 0;
  border-radius: 2px;
  padding: 7px 16px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 420px);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  overflow: hidden;
  padding: 134px clamp(76px, 10vw, 150px) 56px clamp(18px, 5vw, 72px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
  margin-bottom: 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  max-width: 530px;
  margin: 20px 0 0;
  color: #f2f2f2;
  font-size: 19px;
}

.booking-widget {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  color: #eefcff;
  background: rgba(6, 27, 52, 0.96);
  border: 1px solid rgba(92, 228, 228, 0.28);
  box-shadow: var(--shadow);
}

.booking-intro {
  display: grid;
  gap: 10px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(92, 228, 228, 0.2);
}

.booking-intro h2 {
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1;
}

.booking-intro p {
  max-width: none;
  margin: 0;
  color: rgba(238, 252, 255, 0.72);
  font-weight: 700;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: end;
  padding: 14px 18px 10px;
}

.quick-field {
  display: grid;
  gap: 6px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.category-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(92, 228, 228, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.category-picker button {
  border: 0;
  color: #eefcff;
  background: transparent;
  font-weight: 900;
  border-radius: 6px;
}

.category-picker button.active {
  color: #061b34;
  background: var(--yellow);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.booking-form-row label {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.booking-form-row input {
  height: 44px;
  margin-top: 0;
  border: 1px solid rgba(92, 228, 228, 0.28);
  border-radius: 8px;
  padding: 0 14px;
  color: #eefcff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 17px;
  font-weight: 900;
}

.booking-search,
.primary-action {
  min-height: 54px;
  border: 0;
  border-radius: 2px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.booking-search {
  min-height: 44px;
  padding: 0 16px;
  font-size: 16px;
  border-radius: 8px;
}

.booking-note {
  margin: 0;
  padding: 0 18px 16px;
  color: rgba(238, 252, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.how-section,
.vehicles,
.content-band,
.info-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 112px) clamp(18px, 5vw, 72px);
}

.how-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 228, 228, 0.22), transparent 34%),
    linear-gradient(180deg, #eefcfd 0%, #f7feff 100%);
}

.vehicles {
  background: #ffffff;
}

.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 27, 52, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 27, 52, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
  pointer-events: none;
}

.centered {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  text-align: center;
}

.centered p:last-child {
  max-width: 680px;
  margin: 14px auto 0;
}

.how-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.how-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 410px;
  padding: 18px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(92, 228, 228, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(6, 27, 52, 0.12);
  backdrop-filter: blur(14px);
  animation: riseIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.how-card:nth-child(2) {
  animation-delay: 280ms;
}

.how-card:nth-child(3) {
  animation-delay: 560ms;
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 24px 60px rgba(6, 27, 52, 0.18);
}

.how-visual {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(6, 27, 52, 0.02), rgba(6, 27, 52, 0.34)),
    var(--how-image) center / cover;
}

.how-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  pointer-events: none;
}

.how-visual.choose {
  --how-image: url("assets/hero-rentals.jpg");
  background-position: center;
}

.how-visual.reserve {
  --how-image: url("assets/how-reserve.jpg");
  background-position: center;
}

.how-visual.ride {
  --how-image: url("assets/how-ride.jpg");
  background-position: center;
}

.step-badge {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #061b34;
  background: var(--yellow);
  font-weight: 900;
}

.how-card h3 {
  font-size: 25px;
}

.how-card p {
  margin: 0;
  color: #365063;
  font-weight: 700;
}

.section-heading p,
.vehicle-body p,
.form-note {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.carousel-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.carousel-heading > div:first-child {
  max-width: 780px;
}

.vehicle-carousel-shell {
  position: relative;
}

.vehicle-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--yellow) rgba(6, 27, 52, 0.1);
}

.vehicle-card {
  display: grid;
  flex: 0 0 clamp(290px, 31vw, 380px);
  overflow: hidden;
  border: 1px solid rgba(6, 27, 52, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(6, 27, 52, 0.1);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 228, 228, 0.7);
  box-shadow: 0 18px 46px rgba(6, 27, 52, 0.14);
}

.carousel-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(92, 228, 228, 0.5);
  border-radius: 50%;
  color: #061b34;
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(6, 27, 52, 0.18);
  padding: 0;
}

.carousel-control svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: #061b34;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.vehicle-visual {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(92, 228, 228, 0.12), rgba(92, 228, 228, 0.12)) top / 100% 1px no-repeat,
    linear-gradient(135deg, #061b34 0%, #082947 100%);
}

.vehicle-visual::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  height: 44px;
  border: 1px solid rgba(92, 228, 228, 0.22);
  border-radius: 50%;
  background: rgba(92, 228, 228, 0.1);
}

.vehicle-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(238, 252, 255, 0.08);
  pointer-events: none;
}

.vehicle-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.38));
  transition: transform 180ms ease;
}

.vehicle-card:hover .vehicle-visual img {
  transform: translateY(-4px) scale(1.03);
}

.vehicle-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.vehicle-type {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-body p {
  margin: 0;
}

.card-link {
  justify-self: start;
  min-height: 40px;
  margin-top: 8px;
  border: 0;
  border-bottom: 4px solid var(--yellow);
  padding: 8px 0 4px;
  color: var(--black);
  background: transparent;
  font-weight: 900;
}

.content-band {
  position: relative;
  overflow: hidden;
  color: #eefcff;
  background:
    radial-gradient(circle at 85% 10%, rgba(92, 228, 228, 0.22), transparent 30%),
    linear-gradient(135deg, #061b34 0%, #082844 58%, #061b34 100%);
}

.content-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(92, 228, 228, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 228, 228, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 20%, black, transparent 68%);
  pointer-events: none;
}

.content-band .section-heading {
  position: relative;
  z-index: 1;
}

.content-band .section-heading h2 {
  color: #eefcff;
}

.content-band .section-heading p {
  color: var(--yellow);
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: start;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(92, 228, 228, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0.26);
  transform-origin: left;
  transition: transform 180ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 228, 228, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-grid article:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  color: #061b34;
  background: var(--yellow);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid strong {
  color: #eefcff;
  font-size: 22px;
  line-height: 1.1;
}

.benefit-grid article > span:last-child {
  color: rgba(238, 252, 255, 0.72);
  font-weight: 700;
}

.info-section {
  background:
    linear-gradient(rgba(6, 27, 52, 0.04), rgba(6, 27, 52, 0.04)) top / 100% 1px no-repeat,
    #ffffff;
}

.info-heading {
  max-width: 860px;
}

.info-heading p {
  max-width: 720px;
  color: rgba(6, 27, 52, 0.64);
  font-weight: 750;
}

.rental-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.rental-info-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(6, 27, 52, 0.1);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(135deg, rgba(92, 228, 228, 0.12), transparent 44%),
    #f4fbfc;
}

.rental-info-card:not(.is-primary) {
  border-color: rgba(92, 228, 228, 0.42);
  background:
    radial-gradient(circle at 18% 16%, rgba(92, 228, 228, 0.44), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(6, 27, 52, 0.08), transparent 22%),
    linear-gradient(120deg, rgba(92, 228, 228, 0.26), transparent 42%),
    #f7feff;
  box-shadow: 0 18px 46px rgba(6, 27, 52, 0.1);
}

.rental-info-card:not(.is-primary)::before {
  content: "Δωρεάν";
  position: absolute;
  top: 22px;
  right: 24px;
  border: 1px solid rgba(6, 27, 52, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  color: #061b34;
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-info-card:not(.is-primary)::after {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(92, 228, 228, 0.28);
  filter: blur(4px);
  opacity: 0.8;
  animation: softFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.rental-info-card.is-primary {
  color: #eefcff;
  border-color: rgba(92, 228, 228, 0.2);
  background:
    linear-gradient(135deg, rgba(92, 228, 228, 0.18), transparent 42%),
    linear-gradient(180deg, #08223f 0%, #061b34 100%);
}

.info-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rental-info-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 24px;
  color: inherit;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.08;
}

.rental-info-card:not(.is-primary) h3 {
  color: #061b34;
}

.rental-info-card:not(.is-primary) .info-kicker {
  color: #061b34;
}

.info-check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-check-list li {
  position: relative;
  min-height: 34px;
  padding-left: 42px;
  color: rgba(6, 27, 52, 0.72);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}

.info-check-list a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.info-check-list a:hover {
  color: #061b34;
}

.is-primary .info-check-list li {
  color: rgba(238, 252, 255, 0.82);
}

.info-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--yellow), rgba(92, 228, 228, 0.72));
  box-shadow: 0 10px 20px rgba(92, 228, 228, 0.24);
}

.info-check-list li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #061b34;
  border-bottom: 2px solid #061b34;
  transform: rotate(-45deg);
}

.footer {
  padding: 54px clamp(18px, 5vw, 72px) 22px;
  color: #061b34;
  background:
    linear-gradient(rgba(6, 27, 52, 0.08), rgba(6, 27, 52, 0.08)) top / 100% 1px no-repeat,
    #f4fbfc;
}

.footer-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.footer-hero > div:first-child {
  display: grid;
  gap: 14px;
  max-width: 760px;
  order: 2;
  justify-self: end;
  text-align: right;
}

.footer-hero h2 {
  margin: 0;
  color: #061b34;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.footer-hero p {
  max-width: 560px;
  justify-self: end;
  margin: 0;
  color: rgba(6, 27, 52, 0.62);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 750;
  line-height: 1.55;
}

.footer-call-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  max-width: 520px;
  color: #061b34;
  order: 1;
  justify-self: start;
}

.footer-call-card span {
  flex-basis: 100%;
  color: rgba(6, 27, 52, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.footer-call-card a {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid rgba(6, 27, 52, 0.14);
  border-radius: 2px;
  padding: 0 18px;
  color: #061b34;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 27, 52, 0.08);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-call-card a::after {
  display: none;
}

.footer-call-card a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-2px);
}

.footer-call-card .footer-email-link {
  flex-basis: 100%;
  min-height: auto;
  justify-content: flex-start;
  border: 0;
  padding: 2px 0 0;
  color: rgba(6, 27, 52, 0.64);
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.3;
}

.footer-call-card .footer-email-link:hover {
  color: #061b34;
  background: transparent;
  transform: none;
}

.footer-contact-row > a,
.footer-contact-row > span {
  color: #061b34;
  font-weight: 800;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: minmax(260px, auto) auto;
  justify-content: start;
  gap: 14px 18px;
  align-items: center;
  margin-top: clamp(18px, 2.4vw, 28px);
  color: rgba(6, 27, 52, 0.58);
  font-size: 15px;
}

.footer-contact-row > a,
.footer-contact-row > span {
  color: rgba(6, 27, 52, 0.62);
}

.footer-location-card {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  justify-self: start;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(6, 27, 52, 0.12);
  border-radius: 4px;
  color: inherit;
  font: inherit;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(92, 228, 228, 0.18), rgba(255, 255, 255, 0.74)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(6, 27, 52, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-location-card .location-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 3px;
  color: #061b34;
  background: var(--yellow);
}

.footer-location-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-location-card span:last-child {
  display: grid;
  gap: 3px;
}

.footer-location-card strong {
  color: #061b34;
  font-size: 14px;
  font-weight: 900;
}

.footer-location-card small {
  color: rgba(6, 27, 52, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(6, 27, 52, 0.14);
  border-radius: 50%;
  color: #061b34;
  background: #ffffff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-contact-row > a:hover,
.social-links a:hover {
  color: #061b34;
}

.footer-location-card:hover {
  border-color: rgba(92, 228, 228, 0.72);
  box-shadow: 0 18px 42px rgba(6, 27, 52, 0.12);
  transform: translateY(-2px);
}

.footer-location-card[aria-expanded="true"] {
  border-color: var(--yellow);
  background:
    linear-gradient(135deg, rgba(92, 228, 228, 0.34), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.footer-map-panel {
  display: none;
}

.footer-map-panel.is-open {
  display: block;
  margin-top: 24px;
  animation: footerMapReveal 220ms ease both;
}

@keyframes footerMapReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.footer-map-panel iframe {
  width: 100%;
  height: min(380px, 58vw);
  min-height: 260px;
  border: 1px solid rgba(6, 27, 52, 0.12);
  border-radius: 4px;
  filter: saturate(0.92) contrast(1.03);
}

.footer-map-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(6, 27, 52, 0.12);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  color: #061b34;
  background: #ffffff;
}

.footer-map-copy span {
  font-weight: 900;
}

.footer-map-copy a {
  color: rgba(6, 27, 52, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.footer-map-copy a:hover {
  color: #061b34;
}

.social-links a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 0;
  color: rgba(6, 27, 52, 0.46);
  font-size: 14px;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-version {
  color: rgba(6, 27, 52, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-bottom a {
  color: rgba(6, 27, 52, 0.58);
}

.footer-bottom a:hover {
  color: #061b34;
}

.whatsapp-widget {
  position: fixed;
  z-index: 55;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: grid;
  justify-items: end;
  gap: 10px;
}

.whatsapp-button {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(6, 27, 52, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-widget.is-open .whatsapp-button {
  background: #1fbd5a;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(6, 27, 52, 0.3);
}

.whatsapp-button svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.whatsapp-menu {
  display: grid;
  min-width: 240px;
  overflow: hidden;
  border: 1px solid rgba(92, 228, 228, 0.22);
  border-radius: 10px;
  background: #061b34;
  box-shadow: 0 22px 54px rgba(2, 10, 20, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.whatsapp-widget.is-open .whatsapp-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-menu span {
  padding: 14px 16px 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-menu a {
  padding: 14px 16px;
  border-top: 1px solid rgba(92, 228, 228, 0.14);
  color: #eefcff;
  font-weight: 900;
}

.whatsapp-menu a:hover {
  color: #061b34;
  background: var(--yellow);
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  left: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: none;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(92, 228, 228, 0.24);
  border-radius: 8px;
  padding: 16px;
  color: #eefcff;
  background: #061b34;
  box-shadow: 0 18px 48px rgba(2, 10, 20, 0.28);
}

.cookie-banner.is-visible {
  display: grid;
  gap: 12px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(238, 252, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner a {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.cookie-banner button {
  min-height: 38px;
  border: 0;
  border-radius: 2px;
  padding: 0 14px;
  color: #061b34;
  background: var(--yellow);
  font-weight: 900;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.service-page {
  min-height: 100vh;
  color: #eefcff;
  background:
    radial-gradient(circle at 80% 10%, rgba(92, 228, 228, 0.18), transparent 30%),
    linear-gradient(135deg, #061b34 0%, #041427 100%);
}

.service-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 20px 56px;
}

.service-hero h1 {
  max-width: 780px;
  color: var(--yellow);
  font-size: clamp(42px, 6vw, 72px);
}

.service-hero p {
  max-width: 720px;
  color: rgba(238, 252, 255, 0.76);
  font-size: 19px;
  font-weight: 700;
}

.service-card {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 80px;
  padding: 28px;
  border: 1px solid rgba(92, 228, 228, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(238, 252, 255, 0.82);
  font-weight: 800;
}

.legal-page-card {
  gap: 12px;
}

.legal-page-card h2 {
  margin: 12px 0 0;
  color: var(--yellow);
  font-size: clamp(22px, 2.2vw, 30px);
}

.legal-page-card p {
  max-width: 860px;
  margin: 0;
  color: rgba(238, 252, 255, 0.78);
  font-weight: 750;
}

.legal-page-card a:not(.primary-action) {
  color: var(--yellow);
  font-weight: 900;
}

.about-page-card article {
  display: grid;
  gap: 8px;
}

.about-page-card h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(24px, 2.4vw, 34px);
}

.about-page-card p {
  max-width: 860px;
  margin: 0;
  color: rgba(238, 252, 255, 0.78);
  font-weight: 750;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.about-highlights > div {
  border: 1px solid rgba(92, 228, 228, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.about-highlights span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-weight: 950;
}

.about-highlights ul {
  padding-left: 18px;
}

.service-back-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  margin-top: 12px;
  border-bottom: 2px solid rgba(92, 228, 228, 0.42);
  padding: 6px 0;
  color: var(--yellow);
  font-weight: 900;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-back-link:hover {
  border-color: var(--yellow);
  color: #eefcff;
  transform: translateX(-3px);
}

.service-card .primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 14px 18px;
  text-decoration: none;
}

.thanks-page .modal-panel {
  max-width: 720px;
}

.thanks-page .primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 18px;
}

.thanks-message {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.thanks-action {
  text-decoration: none;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.78);
  backdrop-filter: blur(7px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 20px 28px;
  color: #eefcff;
  background:
    linear-gradient(180deg, rgba(92, 228, 228, 0.08), rgba(92, 228, 228, 0)),
    #061b34;
  border: 1px solid rgba(92, 228, 228, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  scrollbar-color: rgba(92, 228, 228, 0.8) rgba(255, 255, 255, 0.08);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(92, 228, 228, 0.35);
  border-radius: 0;
  color: #eaffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(92, 228, 228, 0.16);
}

form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.wizard-progress span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 228, 228, 0.24);
  border-radius: 8px;
  color: rgba(238, 252, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.wizard-progress span.is-active {
  color: #061b34;
  background: var(--yellow);
  border-color: var(--yellow);
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.wizard-step[data-step="1"].is-active {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 7px;
  color: #333333;
  font-size: 14px;
  font-weight: 900;
}

.field-row {
  display: flex;
  gap: 12px;
  align-items: start;
  grid-column: 1 / -1;
}

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

.field-row label {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(92, 228, 228, 0.28);
  border-radius: 6px;
  padding: 10px 12px;
  color: #f7ffff;
  background: rgba(255, 255, 255, 0.08);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(92, 228, 228, 0.5);
  outline-offset: 2px;
}

.modal-panel input::placeholder,
.modal-panel textarea::placeholder {
  color: rgba(238, 252, 255, 0.52);
}

.modal-panel input:hover,
.modal-panel select:hover,
.modal-panel textarea:hover {
  border-color: rgba(92, 228, 228, 0.55);
}

textarea {
  resize: vertical;
}

select {
  min-height: 52px;
  color-scheme: dark;
}

select option {
  color: #eefcff;
  background: #061b34;
}

.modal-panel input:-webkit-autofill,
.modal-panel input:-webkit-autofill:hover,
.modal-panel input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f7ffff;
  box-shadow: 0 0 0 1000px #0b2748 inset;
  caret-color: #f7ffff;
}

.license-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 2px 0;
  grid-column: 1 / -1;
}

.checkbox-field {
  position: relative;
  display: grid;
  grid-template-columns: none;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 14px;
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(92, 228, 228, 0.28);
  border-radius: 8px;
  color: #eefcff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.checkbox-field:hover {
  border-color: rgba(92, 228, 228, 0.62);
  background: rgba(92, 228, 228, 0.1);
  transform: translateY(-1px);
}

.checkbox-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-visual {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid rgba(92, 228, 228, 0.55);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.14);
}

.check-visual::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #061b34;
  border-bottom: 2px solid #061b34;
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.checkbox-field input:checked + .check-visual {
  border-color: var(--yellow);
  background: var(--yellow);
}

.checkbox-field input:checked + .check-visual::after {
  opacity: 1;
}

.checkbox-field:has(input:checked),
.checkbox-field.is-checked {
  border-color: var(--yellow);
  background: rgba(92, 228, 228, 0.16);
}

.license-copy {
  display: grid;
  gap: 1px;
}

.license-copy strong {
  color: var(--yellow);
}

.license-copy small {
  color: rgba(238, 252, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.vehicle-choice-group {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.vehicle-choice-group legend {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.vehicle-choice-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 10px;
}

.vehicle-choice-section {
  display: grid;
  gap: 7px;
  align-content: start;
  border: 1px solid rgba(92, 228, 228, 0.28);
  border-radius: 10px;
  padding: 12px;
  color: #eefcff;
  background: rgba(255, 255, 255, 0.06);
}

.vehicle-choice-section h3 {
  margin: 0 0 2px;
  color: var(--yellow);
  font-size: 14px;
}

.vehicle-choice-grid button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(92, 228, 228, 0.2);
  border-radius: 7px;
  padding: 7px 10px 7px 7px;
  color: #eefcff;
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.vehicle-choice-grid button img {
  width: 46px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(238, 252, 255, 0.08);
}

.vehicle-choice-grid button:hover {
  border-color: rgba(92, 228, 228, 0.65);
  background: rgba(92, 228, 228, 0.1);
}

.vehicle-choice-grid span {
  min-width: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
}

.vehicle-choice-grid button.is-selected {
  border-color: var(--yellow);
  background: var(--yellow);
}

.vehicle-choice-grid button.is-selected span {
  color: #061b34;
}

.vehicle-choice-grid button.is-selected img {
  background: rgba(255, 255, 255, 0.64);
}

.vehicle-choice-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  color: rgba(238, 252, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.vehicle-choice-summary.has-selection {
  color: var(--yellow);
}

.vehicle-choice-summary img,
.selected-vehicle-banner img {
  width: 54px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.modal-panel h2 {
  color: var(--yellow);
  max-width: calc(100% - 48px);
  font-size: clamp(28px, 3vw, 38px);
}

.modal-panel label {
  color: var(--yellow);
}

.modal-panel .eyebrow {
  margin-top: 0;
}

.modal-panel .primary-action {
  min-height: 48px;
  margin-top: 2px;
  box-shadow: none;
}

.modal-panel .form-note {
  grid-column: 1 / -1;
  color: rgba(238, 252, 255, 0.72);
  text-align: center;
}

.selected-vehicle-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
  padding: 10px 12px;
  border: 1px solid rgba(92, 228, 228, 0.24);
  border-radius: 8px;
  color: #061b34;
  background: var(--yellow);
  font-weight: 900;
}

.wizard-actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 8px;
}

.wizard-actions .primary-action,
.wizard-actions .secondary-action {
  min-width: 180px;
}

.secondary-action {
  min-height: 48px;
  border: 1px solid rgba(92, 228, 228, 0.32);
  border-radius: 2px;
  color: #eefcff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.secondary-action:hover {
  background: rgba(92, 228, 228, 0.1);
}

.submit-button {
  width: 100%;
  margin-top: 0;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  padding: 0;
  white-space: nowrap;
}

.recaptcha-field {
  grid-column: 1 / -1;
  min-height: 1px;
}

@media (max-width: 980px) {
  .utility-links {
    display: flex;
    margin-left: auto;
    gap: 0;
    font-size: 13px;
    font-weight: 900;
  }

  .utility-links > a:not(:first-child) {
    display: none;
  }

  .utility-links a:first-child {
    white-space: nowrap;
  }

  .language-menu {
    gap: 10px;
    margin-left: 12px;
  }

  .language-menu::before {
    height: 20px;
  }

  .mainnav {
    gap: 18px;
    overflow-x: auto;
  }

  .booking-intro {
    align-items: start;
    flex-direction: column;
  }

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

  .vehicle-field {
    grid-column: 1 / -1;
  }

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

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

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

  .footer-hero,
  .footer-contact-row {
    grid-template-columns: 1fr;
  }

  .footer-hero > div:first-child {
    order: 1;
    justify-self: start;
    text-align: left;
  }

  .footer-hero p {
    justify-self: start;
  }

  .footer-call-card {
    order: 2;
    justify-self: start;
    justify-content: flex-start;
  }

  .footer-call-card span {
    text-align: left;
  }

  .footer-call-card .footer-email-link {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .modal-panel {
    overflow: auto;
  }

  form,
  .license-list,
  .wizard-step.is-active {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .topbar-inner {
    min-height: 54px;
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    flex: 0 0 auto;
    font-size: 18px;
  }

  .utility-links {
    font-size: 12px;
  }

  .mainnav {
    padding-block: 8px;
    font-size: 14px;
  }

  .mainnav button {
    display: none;
  }

  .hero {
    min-height: 900px;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 128px 16px 28px;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  h1 {
    font-size: 40px;
  }

  .booking-widget {
    width: 100%;
  }

  .booking-intro {
    padding: 20px 18px 16px;
  }

  .booking-form-row {
    padding: 14px;
  }

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

  .booking-form-row,
  .how-grid,
  .benefit-grid,
  .rental-info-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .rental-info-card {
    min-height: auto;
  }

  .how-section,
  .vehicles,
  .content-band,
  .info-section {
    padding: 54px 16px;
  }

  .how-card {
    min-height: auto;
  }

  .how-visual {
    min-height: 170px;
  }

  .vehicle-card {
    flex-basis: min(86vw, 340px);
  }

  .carousel-controls {
    display: none;
  }

  .field-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .field-row label {
    width: 100%;
  }

  .modal-panel {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 22px 16px;
    overflow: auto;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel h2 {
    font-size: 36px;
  }

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

  .wizard-actions {
    flex-direction: column;
  }

  .wizard-actions .primary-action,
  .wizard-actions .secondary-action {
    width: 100%;
  }

  .footer {
    padding: 48px 16px 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer {
    padding-top: 58px;
  }

  .footer-hero {
    gap: 28px;
  }

  .social-links {
    display: flex;
    justify-content: flex-start;
  }

  .social-links a {
    width: 42px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-menu {
    min-width: min(240px, calc(100vw - 28px));
  }

  .cookie-banner {
    left: 14px;
    right: 82px;
    bottom: 14px;
    width: auto;
  }
}

@media (max-width: 420px) {
  .utility-links {
    font-size: 12px;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-22px, 18px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-card {
    animation: none;
    transition: none;
  }

  .rental-info-card:not(.is-primary)::after {
    animation: none;
  }
}
