:root {
  --navy: #081b33;
  --navy-soft: #102944;
  --orange: #f05a28;
  --orange-dark: #d94818;
  --gold: var(--orange);
  --warm-white: #faf9f6;
  --white: #ffffff;
  --pale-blue: #eaf2f7;
  --charcoal: #17202a;
  --muted: #66737f;
  --border: #d8e0e6;
  --green: #16845b;
  --error: #b42318;
  --font: "Inter", Arial, sans-serif;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h2 {
  font-size: 34px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(8, 27, 51, 0.32);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.button-whatsapp {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.button-whatsapp:hover {
  border-color: #106d4a;
  background: #106d4a;
}

.button-outline-dark {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  border-bottom: 2px solid var(--orange);
  color: var(--navy);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  font-size: 18px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(216, 224, 230, 0.88);
  background: var(--warm-white);
  color: var(--navy);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: var(--white);
  box-shadow: 0 6px 20px rgba(8, 27, 51, 0.08);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  width: 142px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

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

.language-switcher {
  display: flex;
  color: var(--muted);
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
}

.language-switcher a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
  align-items: center;
  justify-content: center;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--orange-dark);
}

.language-switcher a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.language-switcher-desktop {
  display: none;
}

.language-switcher-mobile {
  min-height: 52px;
  border-bottom: 1px solid var(--border);
  justify-content: flex-start;
}

.nav-call {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  background: var(--orange);
  color: var(--white);
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.nav-call svg {
  width: 17px;
  fill: currentColor;
}

.nav-call span {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  gap: 5px;
  place-content: center;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  padding-inline: 20px;
  background: var(--white);
  opacity: 0;
  transition: max-height 240ms ease, opacity 180ms ease, visibility 240ms;
}

.mobile-menu.open {
  max-height: calc(100vh - var(--header-height));
  visibility: visible;
  padding-bottom: 24px;
  border-top: 1px solid var(--border);
  opacity: 1;
}

.mobile-menu a {
  min-height: 52px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  align-items: center;
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu.open a {
  display: flex;
}

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  padding: calc(var(--header-height) + 70px) 0 90px;
  overflow: hidden;
  align-items: center;
  color: var(--white);
}

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

.hero-slide {
  position: absolute;
  visibility: hidden;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

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

.hero-overlay {
  background: rgba(8, 27, 51, 0.74);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 700px;
  color: var(--white);
  font-size: 48px;
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-copy {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  gap: 12px;
}

.hero-trust {
  display: flex;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  list-style: none;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(8, 27, 51, 0.52);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.hero-control:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.hero-control svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-slider-tools {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 22px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-indicators {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-indicators button {
  position: relative;
  width: 28px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-indicators button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.42);
  content: "";
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-indicators button.is-active::before {
  width: 24px;
  background: var(--orange);
}

.hero-pause {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(8, 27, 51, 0.52);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  place-items: center;
}

.hero-pause:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.booking-section {
  padding: 74px 0 84px;
  background: var(--white);
}

.booking-heading {
  display: grid;
  max-width: 780px;
  margin-bottom: 30px;
  margin-inline: auto;
  gap: 14px;
  text-align: center;
}

.booking-heading h2 {
  font-size: 32px;
}

.booking-heading > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.booking-form {
  display: grid;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  gap: 18px;
}

.form-field,
.contact-field {
  display: grid;
  align-content: start;
  gap: 6px;
}

.form-field label,
.contact-field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.form-field label span,
.contact-field label span {
  color: var(--muted);
  font-weight: 400;
}

.form-field input,
.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: 0;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(8, 27, 51, 0.1);
}

.form-field input[aria-invalid="true"],
.contact-field input[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error,
.form-status {
  min-height: 16px;
  color: var(--error);
  font-size: 12px;
  line-height: 1.35;
}

.form-status {
  display: none;
  margin: 0;
}

.form-status.has-message {
  display: block;
}

.form-status.is-success {
  color: var(--green);
}

.booking-submit {
  width: 100%;
}

.trust-section {
  padding: 82px 0;
  background: var(--pale-blue);
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-card {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--white);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  background: var(--pale-blue);
  color: var(--orange);
  place-items: center;
}

.icon-box svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.driver-section {
  padding: 88px 0;
  background: var(--warm-white);
}

.driver-grid {
  display: grid;
  gap: 38px;
}

.driver-image {
  max-height: 570px;
  overflow: hidden;
  background: var(--pale-blue);
}

.driver-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.driver-copy h2 {
  margin-bottom: 20px;
}

.driver-copy > p {
  margin: 0 0 16px;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  color: var(--orange);
  content: "✓";
  font-weight: 700;
}

.services-section {
  padding: 88px 0;
  background: var(--pale-blue);
  color: var(--charcoal);
}

.services-section h2,
.services-section h3 {
  color: var(--navy);
}

.services-section .section-label {
  color: var(--orange);
}

.services-section .section-heading > p:last-child {
  color: var(--muted);
}

.services-section .section-heading {
  width: min(100%, 680px);
  margin: 0 auto 42px;
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-item {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(8, 27, 51, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 27, 51, 0.055);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-media {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--navy);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-item:nth-child(1) .service-media img {
  object-position: center 63%;
}

.service-item:nth-child(2) .service-media img {
  object-position: center 46%;
}

.service-item:nth-child(3) .service-media img {
  object-position: 58% center;
}

.service-item:nth-child(4) .service-media img {
  object-position: center 48%;
}

.service-content {
  display: flex;
  min-width: 0;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
}

.service-category {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.service-category::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.service-content h3 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.25;
}

.service-content p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-content a {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  color: var(--orange-dark);
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
}

.service-content a:hover {
  color: var(--navy);
}

.vehicle-section {
  padding: 88px 0;
  background: var(--white);
}

.vehicle-intro {
  display: grid;
  max-width: 820px;
  margin-bottom: 34px;
  margin-inline: auto;
  gap: 14px;
  text-align: center;
}

.vehicle-intro > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.vehicle-gallery {
  display: grid;
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--pale-blue);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 68px 18px 24px;
  background: rgba(8, 27, 51, 0.97);
  color: var(--white);
  opacity: 0;
  place-items: center;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-content {
  display: grid;
  width: min(100%, 1180px);
  height: min(78vh, 800px);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.lightbox-caption {
  display: flex;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}

.lightbox-count {
  color: #ff8b62;
  flex: 0 0 auto;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(8, 27, 51, 0.65);
  color: var(--white);
  cursor: pointer;
  place-items: center;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.lightbox-close {
  top: 14px;
  right: 14px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.info-section {
  padding: 84px 0;
  background: var(--pale-blue);
}

.service-area-section {
  padding: 84px 0;
  background: var(--white);
}

.service-area-shell {
  display: grid;
  gap: 32px;
}

.service-area-heading {
  width: min(100%, 680px);
}

.service-area-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-chips a {
  display: inline-flex;
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--warm-white);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.location-chips a:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: var(--white);
}

.service-area-action {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.service-area-action p {
  margin: 0;
  color: var(--muted);
}

.info-grid {
  display: grid;
  gap: 34px;
}

.info-heading > p:last-child {
  color: var(--muted);
}

.info-list {
  margin: 0;
  border-top: 1px solid var(--border);
}

.info-list div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  gap: 4px;
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.info-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

.info-list a {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.reviews-section {
  padding: 82px 0;
  background: var(--warm-white);
}

.reviews-heading {
  width: min(100%, 680px);
  margin: 0 auto 36px;
  text-align: center;
}

.reviews-heading .section-label,
.reviews-heading h2,
.reviews-heading > p,
.reviews-rating,
.reviews-summary {
  text-align: center;
}

.reviews-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.review-card {
  display: grid;
  height: 100%;
  min-height: 250px;
  padding: clamp(24px, 3vw, 28px);
  border: 1px solid rgba(8, 27, 51, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 27, 51, 0.06);
  text-align: left;
  align-content: start;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pale-blue);
  color: var(--navy);
  font-weight: 700;
  place-items: center;
}

.review-meta h3 {
  margin: 0;
  font-size: 15px;
}

.review-meta time {
  color: var(--muted);
  font-size: 12px;
}

.review-stars {
  margin: 20px 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.review-card > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.google-attribution {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.reviews-actions {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  gap: 10px;
}

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

.contact-section {
  padding: 88px 0;
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 48px;
}

.contact-copy h2,
.contact-form h3 {
  color: var(--white);
}

.contact-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  margin-top: 28px;
  flex-direction: column;
  gap: 12px;
}

.contact-details {
  display: grid;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  gap: 10px;
}

.contact-details a {
  justify-self: start;
}

.contact-details a:hover {
  color: var(--white);
}

.contact-form {
  position: relative;
  display: grid;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
  content: "";
}

.contact-form-header {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 14px;
}

.contact-form-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--orange);
  background: rgba(240, 90, 40, 0.1);
  place-items: center;
}

.contact-form-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-form h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.contact-form-header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form .contact-field {
  gap: 7px;
}

.contact-form .contact-field label {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.contact-form .contact-field input,
.contact-form .contact-field textarea {
  border-color: rgba(8, 27, 51, 0.14);
  border-radius: 9px;
  background: #f7f9fb;
}

.contact-form .contact-field input {
  min-height: 52px;
  padding-inline: 15px;
}

.contact-form .contact-field textarea {
  min-height: 140px;
  padding: 14px 15px;
}

.contact-form .contact-field input::placeholder,
.contact-form .contact-field textarea::placeholder {
  color: #8a959f;
}

.contact-form .contact-field input:focus,
.contact-form .contact-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.1);
}

.contact-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  border-radius: 9px;
}

.map-section {
  padding: 72px 0 0;
  background: var(--warm-white);
}

.map-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.map-heading h2 {
  font-size: 32px;
}

.map-frame {
  width: 100%;
  height: 390px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--pale-blue);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 62px 0 92px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand {
  width: 150px;
  margin-bottom: 16px;
}

.footer-about p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0;
}

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

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  color: #83909a;
}

.mobile-action-bar {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 68px;
  border-top: 1px solid #203b55;
  background: var(--navy);
  color: var(--white);
  grid-template-columns: repeat(3, 1fr);
}

.mobile-action-bar a {
  display: grid;
  min-height: 68px;
  border-right: 1px solid #203b55;
  align-content: center;
  justify-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
}

.mobile-action-bar a:last-child {
  border-right: 0;
}

.mobile-action-bar a:nth-child(2) {
  background: var(--orange);
}

.mobile-action-bar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mobile-action-bar a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 620px) {
  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: row;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
  }

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

  .form-field-message,
  .booking-submit,
  .booking-form .form-status {
    grid-column: 1 / -1;
  }

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

  .service-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

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

  .info-list div {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 24px;
  }

  .service-area-action {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .reviews-actions {
    flex-direction: row;
    align-items: stretch;
  }

  .reviews-actions .button {
    width: auto;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px;
  }

  .contact-form-header,
  .contact-field-phone,
  .contact-form .contact-field-message,
  .contact-submit,
  .contact-form .form-status {
    grid-column: 1 / -1;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1020px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(calc(100% - 96px), var(--container));
  }

  .brand {
    width: 160px;
  }

  .desktop-nav {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 22px;
  }

  .language-switcher-desktop {
    display: flex;
  }

  .language-switcher-desktop a {
    min-width: 30px;
  }

  .desktop-nav a {
    position: relative;
    display: flex;
    height: 100%;
    color: var(--navy);
    align-items: center;
    font-size: 13px;
    font-weight: 600;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    background: var(--orange);
    content: "";
    transition: transform 160ms ease;
  }

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

  .nav-call {
    padding-inline: 18px;
  }

  .nav-call span {
    display: inline;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 740px;
    padding: calc(var(--header-height) + 85px) 0 110px;
  }

  .hero h1 {
    font-size: 68px;
  }

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

  .hero-control {
    display: grid;
  }

  .hero-prev {
    left: 34px;
  }

  .hero-next {
    right: 34px;
  }

  .booking-section,
  .driver-section,
  .services-section,
  .vehicle-section,
  .contact-section {
    padding-block: 110px;
  }

  .booking-form {
    grid-template-columns: 1.1fr 1.1fr 1fr 0.55fr;
    padding: 28px;
    align-items: start;
  }

  .form-field-message {
    grid-column: 1 / -1;
  }

  .booking-submit {
    min-height: 46px;
    align-self: end;
  }

  .booking-form .form-status {
    grid-column: 1 / -1;
  }

  .reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
  }

  .review-card {
    min-height: 230px;
    padding: 24px;
  }

  .trust-section,
  .info-section,
  .reviews-section,
  .service-area-section {
    padding-block: 96px;
  }

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

  .driver-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
  }

  .driver-image {
    height: 580px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .service-item {
    min-height: 280px;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  }

  .service-media {
    height: 100%;
    min-height: 280px;
    aspect-ratio: auto;
  }

  .service-content {
    padding: 28px;
  }

  .vehicle-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 185px;
    gap: 14px;
  }

  .gallery-item {
    aspect-ratio: auto;
  }

  .gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .info-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 90px;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 85px;
  }

  .map-section {
    padding-top: 90px;
  }

  .map-frame {
    height: 500px;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.7fr 1fr 0.65fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .mobile-action-bar {
    display: none;
  }
}

.legal-page {
  padding: calc(var(--header-height) + 70px) 0 90px;
  background: var(--warm-white);
}

.legal-shell {
  width: min(100%, 820px);
  margin-inline: auto;
}

.legal-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.legal-heading h1 {
  margin-bottom: 14px;
}

.legal-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 27, 51, 0.06);
}

.legal-content section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(20px, 3vw, 25px);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content address {
  color: var(--charcoal);
  font-style: normal;
}

.legal-content a:not(.button) {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-back {
  margin-top: 28px;
}

.legal-site .site-footer {
  padding-bottom: 34px;
}

@media (max-width: 619px) {
  .hero-slide {
    transition-duration: 260ms;
  }

  .legal-page {
    padding: calc(var(--header-height) + 46px) 0 70px;
  }

  .legal-content {
    border-radius: 10px;
  }

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

@media (min-width: 1020px) and (hover: hover) and (pointer: fine) {
  .review-card:hover {
    box-shadow: 0 14px 32px rgba(8, 27, 51, 0.1);
    transform: translateY(-3px);
  }

  .service-item:hover {
    box-shadow: 0 14px 32px rgba(8, 27, 51, 0.1);
    transform: translateY(-3px);
  }

  .service-item:hover .service-media img {
    transform: scale(1.02);
  }
}

@media (max-width: 619px) {
  .services-section .section-heading {
    margin-bottom: 32px;
  }

  .service-media {
    height: clamp(180px, 54vw, 220px);
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-lightbox {
    padding: 70px 12px 20px;
  }

  .lightbox-content {
    height: min(70vh, 630px);
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }

  .lightbox-caption {
    padding-bottom: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .service-item,
  .service-media img {
    transition: none;
  }
}
