:root {
  --ink: #17212b;
  --muted: #5f6c76;
  --line: #dce6e9;
  --paper: #f7fbfb;
  --white: #ffffff;
  --sea: #0f8290;
  --sea-dark: #0a5f69;
  --gold: #c9994a;
  --charcoal: #111820;
  --shadow: 0 18px 42px rgba(13, 34, 42, 0.14);
}

* {
  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.5;
}

main {
  display: flex;
  flex-direction: column;
}

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 24, 32, 0.68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-width: 0;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--charcoal);
  background: var(--gold);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--white);
}

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

.language-wrap select {
  width: 122px;
  min-height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  padding: 8px 10px;
}

.language-wrap option {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #10212a;
}

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

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

.hero-shade {
  background:
    radial-gradient(circle at 82% 22%, rgba(201, 153, 74, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(11, 21, 29, 0.94) 0%, rgba(11, 21, 29, 0.82) 44%, rgba(11, 21, 29, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy-panel {
  min-width: 0;
}

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

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

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

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

h3 {
  margin: 8px 0 6px;
  font-size: 22px;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.9);
}

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

.booking-preview {
  position: relative;
  padding: 34px 28px 28px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.route-line {
  position: absolute;
  top: 22px;
  left: 36px;
  right: 36px;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
}

.route-line span:nth-child(2) {
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
}

.route-dot {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  background: #b7c3cb;
  border-radius: 50%;
}

.route-dot.active {
  background: #18b66b;
  box-shadow: 0 0 0 5px rgba(24, 182, 107, 0.22);
}

.booking-preview-body {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: 360px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
}

.preview-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
}

.preview-form label {
  gap: 5px;
  padding: 12px 14px;
  background: #f8fbfc;
  border: 1px solid #dde8eb;
  border-radius: 8px;
}

.preview-form span,
.preview-map span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.preview-form strong {
  font-size: 15px;
}

.preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preview-return {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.preview-return strong {
  justify-self: end;
  color: var(--sea-dark);
}

.preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--white);
  background: linear-gradient(90deg, #f28d3b 0%, #f37021 100%);
  border-radius: 8px;
  font-weight: 900;
}

.preview-map {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.92)),
    url("assets/hero-vip-transfer.png") center / cover;
}

.map-pin {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(243, 112, 33, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, #f37021 0 7px, transparent 8px);
  box-shadow: 0 0 0 14px rgba(243, 112, 33, 0.08);
}

.map-pin::after {
  content: "";
  display: block;
  width: 12px;
  height: 22px;
  margin: 32px auto 0;
  background: #f37021;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--sea-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button.wide {
  width: 100%;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(920px, calc(100% - 32px));
  margin: -46px auto 56px;
  position: relative;
  z-index: 3;
}

.stats-band article {
  min-height: 118px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(13, 34, 42, 0.12);
}

.stats-band strong {
  display: block;
  color: var(--sea-dark);
  font-size: 34px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.trust-band div {
  display: grid;
  gap: 3px;
  padding: 24px clamp(16px, 4vw, 56px);
  background: var(--white);
}

.trust-band strong {
  font-size: 18px;
}

.trust-band span,
.split-section p,
.quote-copy p,
.footer p,
.fleet-list span,
.process-grid p,
.review-grid p,
.faq-list p,
.partner-section p {
  color: var(--muted);
}

.section,
.split-section,
.quote-section,
.partner-section,
.quick-book-section,
.hotel-section {
  padding: clamp(56px, 8vw, 98px) clamp(16px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.price-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 20, 28, 0.92), rgba(12, 123, 135, 0.68)),
    url("assets/hero-vip-transfer.png") center / cover;
}

.price-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 153, 74, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.price-section > * {
  position: relative;
  z-index: 1;
}

.price-section .eyebrow,
.price-section h2 {
  color: var(--white);
}

.vip-price-table {
  overflow: hidden;
  color: var(--white);
  background: rgba(8, 18, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.vip-price-head,
.vip-price-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.vip-price-head {
  color: var(--gold);
  background: linear-gradient(90deg, rgba(11, 36, 46, 0.96), rgba(17, 128, 141, 0.88));
  font-weight: 900;
  text-transform: uppercase;
}

.vip-price-head span,
.vip-price-row strong,
.vip-price-row span {
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

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

.vip-price-row {
  width: 100%;
  padding: 0;
  text-align: left;
  color: inherit;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.vip-price-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.07);
}

.vip-price-row:nth-child(even) {
  background: rgba(5, 58, 70, 0.24);
}

.vip-price-row:hover,
.vip-price-row:focus-visible {
  background: linear-gradient(90deg, rgba(201, 153, 74, 0.28), rgba(18, 149, 162, 0.26));
}

.vip-price-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.vip-price-row strong {
  color: var(--white);
  font-size: 17px;
}

.vip-price-row span {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.price-note-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.price-note-strip span {
  padding: 16px 18px;
  color: var(--ink);
  background: #fff9ec;
  border: 1px solid rgba(201, 153, 74, 0.44);
  border-radius: 8px;
  font-weight: 800;
}

.quick-book-section {
  background: #f2f4f6;
}

.quick-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 6px solid #dfe3e7;
  padding: 22px;
  background: var(--white);
}

.quick-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 88px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #d4dce0;
}

.quick-card strong,
.hotel-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.quick-card span,
.hotel-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.quick-card b,
.hotel-card b {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  color: var(--white);
  background: #15a94b;
  font-size: 18px;
  border-radius: 2px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.split-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.fleet-list {
  display: grid;
  gap: 12px;
}

.fleet-list > div {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.fleet-list img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fleet-list .fleet-text {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hotel-section {
  background: #eeeeef;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hotel-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d5dadd;
}

.hotel-card img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.hotel-card div {
  position: relative;
  min-height: 82px;
  padding: 16px 92px 16px 16px;
}

.hotel-card b {
  position: absolute;
  top: 16px;
  right: 16px;
}

.hotel-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.process-section {
  background: var(--white);
}

.process-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article,
.review-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--sea);
  border-radius: 50%;
  font-weight: 900;
}

.reviews-section {
  background: #eef7f7;
  order: 20;
}

.stars {
  color: var(--gold);
  font-size: 0;
  letter-spacing: 0;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 18px;
}

.review-grid strong {
  display: block;
  margin-top: 18px;
}

.faq-section {
  background: var(--white);
}

.faq-link-box {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.faq-topbar {
  position: sticky;
  color: var(--white);
  background: rgba(17, 24, 32, 0.94);
}

.faq-hero {
  padding: 132px clamp(16px, 6vw, 82px) 70px;
  color: var(--white);
  background: linear-gradient(90deg, #10212a 0%, #0f8290 100%);
}

.faq-hero h1 {
  max-width: 980px;
}

.faq-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.button.light {
  color: var(--white);
}

.faq-page-section {
  background: var(--paper);
}

.faq-page-list {
  max-width: 1080px;
}

.faq-page-list details {
  background: var(--white);
}

.partner-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, #10212a 0%, #0f8290 100%);
}

.partner-section h2,
.partner-section p {
  max-width: 760px;
}

.partner-section p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--white);
  background: #128c7e;
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: linear-gradient(180deg, #f7fbfb 0%, #edf6f6 100%);
}

.hero .quote-section {
  width: min(100%, 680px);
  justify-self: end;
  display: block;
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.hero .quote-copy {
  display: none;
}

.hero .quote-form {
  color: var(--ink);
  max-height: min(760px, calc(100vh - 170px));
  overflow: auto;
  padding: 22px;
  box-shadow: none;
}

.hero .quote-form label,
.hero .quote-form span,
.hero .return-fields,
.hero .checkbox-field {
  color: var(--ink);
}

.quote-copy {
  position: sticky;
  top: 92px;
}

.legal-note {
  padding: 16px;
  background: rgba(15, 130, 144, 0.1);
  border-left: 4px solid var(--sea);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-row.compact {
  grid-template-columns: 0.7fr 1fr 1fr;
}

label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 14px;
  background: #f2fbfb;
  border: 1px solid #cad9dd;
  border-radius: 6px;
  cursor: pointer;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  accent-color: var(--sea);
}

.return-fields[hidden] {
  display: none;
}

.return-fields {
  padding: 16px;
  background: #f6fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hotel-match {
  margin: 0;
  padding: 12px 14px;
  color: #14212d;
  background: #fff8e8;
  border: 1px solid rgba(205, 159, 68, 0.42);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.hotel-match[hidden] {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfefe;
  border: 1px solid #cad9dd;
  border-radius: 6px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(15, 130, 144, 0.16);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(16px, 5vw, 72px);
  color: var(--white);
  background: #0c1218;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer .footer-phone {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer a {
  align-self: center;
  color: var(--gold);
  font-weight: 800;
}

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

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(11, 21, 29, 0.82) 0%, rgba(11, 21, 29, 0.5) 74%, rgba(11, 21, 29, 0.14) 100%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

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

  .preview-map {
    min-height: 220px;
  }

  .trust-band,
  .stats-band,
  .quick-card-grid,
  .hotel-grid,
  .process-grid,
  .review-grid,
  .split-section,
  .quote-section,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .topbar {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    font-size: 14px;
  }

  .language-wrap select {
    width: 102px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding-top: 0;
  }

  h1 {
    font-size: 38px;
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }

  .booking-preview {
    padding: 28px 12px 12px;
    border-radius: 12px;
  }

  .route-line {
    left: 18px;
    right: 18px;
  }

  .booking-preview-body {
    min-height: 0;
  }

  .vip-price-table {
    overflow-x: auto;
  }

  .vip-price-head,
  .vip-price-row {
    min-width: 680px;
  }

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

  .preview-form {
    padding: 14px;
  }

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

  .quick-card-grid {
    border-width: 4px;
    padding: 12px;
  }

  .quick-card {
    align-items: flex-start;
  }

  .hotel-card div {
    padding-right: 86px;
  }

  .stats-band {
    margin-top: -24px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
  }

  .field-row,
  .field-row.compact {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .footer a {
    align-self: flex-start;
  }
}
