:root {
  --ink: #16212b;
  --muted: #5e6b76;
  --line: #dfe6eb;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --navy: #123047;
  --navy-2: #183a54;
  --orange: #d26b2c;
  --orange-dark: #af5523;
  --green: #128c7e;
  --shadow: 0 12px 32px rgba(22, 33, 43, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(223, 230, 235, 0.94);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #334451;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.language-switch button {
  border: 0;
  padding: 5px 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.language-switch button.active {
  color: var(--orange-dark);
}

.hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 48, 71, 0.98), rgba(24, 58, 84, 0.94)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2a66b;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: #0f7469;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 930px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-panel span,
.label {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-panel strong,
.info-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 16px;
}

.section {
  padding: 78px clamp(18px, 5vw, 64px);
}

.strip {
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.soft {
  background: var(--soft);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 810px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.card,
.policy-box,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card,
.policy-box,
.contact-card {
  padding: 24px;
}

.card h3,
.policy-box h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.card p,
.policy-box p {
  margin: 0;
  color: var(--muted);
}

.policy-box p + p {
  margin-top: 12px;
}

.policy-box strong {
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-card h3 {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  background: #fbfcfd;
  font-size: 20px;
}

.hourly-price {
  grid-column: 1 / -1;
}

.price-list {
  display: grid;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

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

.price-list span {
  color: #2c3c48;
}

.price-list strong {
  color: var(--navy);
  text-align: right;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.booking-tool {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.booking-form,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full,
.radio-field {
  grid-column: 1 / -1;
}

.field label,
.radio-field legend {
  color: #263744;
  font-size: 14px;
  font-weight: 700;
}

.field-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.field label span {
  color: var(--orange-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd9e0;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(210, 107, 44, 0.24);
  border-color: var(--orange);
}

.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid #cfd9e0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(28, 45, 58, 0.16);
}

.address-suggestions.is-open {
  display: block;
}

.address-suggestion {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #edf1f4;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion:focus {
  outline: 0;
  background: #fff4ec;
}

.address-suggestion:last-child {
  border-bottom: 0;
}

.radio-field {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 0;
  border: 0;
}

.radio-field legend {
  width: 100%;
}

.radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 400;
}

.booking-summary {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.booking-summary h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.form-message {
  margin: 0 0 16px;
  padding: 12px;
  border: 1px solid #f0d4bf;
  border-radius: var(--radius);
  color: #7a411b;
  background: #fff6ef;
  font-size: 14px;
}

.form-message.ready {
  border-color: #c9e5de;
  color: #185a50;
  background: #effaf7;
}

.booking-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.booking-summary dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.booking-summary dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-summary dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
}

.payment-notice {
  margin: 18px 0 0;
  padding: 14px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fffaf6;
  font-size: 14px;
}

.summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.button.dark {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.is-hidden {
  display: none;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.review-preview-grid .card {
  min-height: 150px;
}

.review-placeholder {
  display: grid;
  align-content: start;
  gap: 12px;
}

.placeholder-label {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #7a411b;
  background: #fff0e4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.review-hero .hero-inner {
  padding-bottom: 72px;
}

.review-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.review-info,
.review-form,
.embed-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.review-info {
  padding: 24px;
}

.review-info h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.review-info p {
  margin: 0 0 14px;
  color: var(--muted);
}

.review-info p:last-child {
  margin-bottom: 0;
}

.booking-id-note {
  padding: 12px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: #fffaf6;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.checkbox-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 6px;
}

.checkbox-row strong {
  color: var(--orange-dark);
}

.review-form .form-message,
.review-form .button {
  grid-column: 1 / -1;
}

.embed-placeholder {
  max-width: 900px;
  min-height: 160px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 92px;
  padding: 20px 22px 20px 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
}

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

.steps span {
  margin-top: 3px;
  color: var(--muted);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.airport-instructions {
  display: grid;
  gap: 14px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 21px 0;
  color: var(--ink);
  font-weight: 700;
  list-style-position: outside;
}

details p {
  margin: 0 0 21px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.contact-card strong {
  font-size: 20px;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.legal {
  padding-top: 72px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 14px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.28);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .language-switch {
    align-self: flex-start;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-panel,
  .info-grid,
  .card-grid.three,
  .card-grid.two,
  .policy-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .contact-layout,
  .booking-tool,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 68px 0 64px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .button,
  .wide-mobile {
    width: 100%;
  }

  .hero-panel,
  .info-grid,
  .card-grid.three,
  .card-grid.two,
  .policy-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  .strip {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section-heading,
  .section-heading.compact {
    text-align: left;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .review-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .booking-summary {
    padding: 20px;
  }

  .booking-summary dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-list strong {
    text-align: left;
  }

  .steps li {
    padding-right: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
    border-radius: var(--radius);
  }
}
