
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');

:root {
  --background: #f4f6f9;
  --foreground: #07152b;
  --ink-muted: #5d6672;
  --navy: #07152b;
  --carbon: #101318;
  --steel: #33475f;
  --red: #d90712;
  --amber: #f2b544;
  --ice: #e8eef5;
  --line: #d6dde7;
  --snow: #ffffff;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Raleway, var(--font-geist-sans), Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  align-items: center;
  background: rgba(16, 19, 24, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.22);
  display: grid;
  gap: 14px 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px) 12px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.top-contact {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 22px;
  grid-column: 1 / -1;
  min-height: 38px;
  text-transform: uppercase;
}
.top-contact a:last-child { color: var(--red); margin-left: auto; }

.brand { align-items: center; display: inline-flex; gap: 12px; min-width: 0; }
.brand img {
  background: var(--snow);
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  display: block;
  height: 52px;
  object-fit: contain;
  padding: 3px;
  width: 52px;
}
.brand strong {
  color: var(--snow);
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

nav { display: flex; gap: clamp(14px, 2vw, 30px); justify-content: center; }
nav a, .language-switcher span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
nav a:hover, .language-switcher span:first-child { color: var(--red); }
.language-switcher { display: flex; gap: 12px; }

.hero {
  min-height: calc(100vh - 119px);
  overflow: hidden;
  padding: clamp(32px, 7vw, 86px) clamp(18px, 4vw, 56px);
  position: relative;
}
.hero > img { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.94), rgba(7, 21, 43, 0.66) 48%, rgba(7, 21, 43, 0.16)),
    linear-gradient(0deg, rgba(4, 8, 15, 0.72), rgba(7, 21, 43, 0.08));
  inset: 0;
  position: absolute;
}
.hero-content { color: var(--snow); max-width: 820px; min-height: 47vh; position: relative; z-index: 1; }
.hero-logo-lockup {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 2px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  color: var(--navy);
  display: inline-flex;
  gap: 12px;
  margin-bottom: 26px;
  padding: 8px 16px 8px 8px;
}
.hero-logo-lockup img { border-radius: 2px; height: 68px; object-fit: contain; width: 68px; }
.hero-logo-lockup span { font-size: 13px; font-weight: 900; text-transform: uppercase; }

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 6.8vw, 88px);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 920px;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h3 { font-size: 22px; font-weight: 900; line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; }
.hero-content p:not(.eyebrow), .section-heading p, .split > div > p, .vehicle-band p, .cta p {
  color: inherit;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  max-width: 650px;
}
.hero-content p:not(.eyebrow) { color: rgba(255, 255, 255, 0.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button, .quote-panel button, .trip-card a {
  align-items: center;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  text-transform: uppercase;
}
.primary, .quote-panel button { background: var(--red); color: var(--snow); }
.primary:hover, .quote-panel button:hover, .trip-card a:hover { background: #b9040d; }
.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--snow);
}

.quote-panel {
  align-items: end;
  background: var(--snow);
  border: 0;
  border-top: 6px solid var(--red);
  border-radius: 2px;
  bottom: clamp(18px, 5vw, 56px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  left: clamp(18px, 4vw, 56px);
  padding: 16px;
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  z-index: 2;
}
.quote-panel.has-result { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.quote-panel label {
  color: #485668;
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  text-transform: uppercase;
}
.quote-panel select, .quote-panel input {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--foreground);
  min-height: 46px;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}
.quote-result {
  align-items: center;
  background: var(--ice);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 2px;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
}
.quote-result span {
  color: var(--ink-muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.quote-result strong { color: var(--red); display: block; font-size: clamp(24px, 4vw, 42px); line-height: 1; }
.quote-result p {
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 700;
  grid-column: 1 / -1;
  margin: -4px 0 0;
}
.quote-result a {
  background: #19b35b;
  border-radius: 2px;
  color: var(--snow);
  font-weight: 900;
  padding: 12px 16px;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--navy);
  color: var(--snow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip span {
  background: rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--red);
  font-weight: 800;
  padding: 20px clamp(16px, 3vw, 34px);
  text-align: center;
  text-transform: uppercase;
}

.service-strip {
  background: var(--snow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(18px, 4vw, 56px);
}
.service-strip article {
  border-left: 1px solid var(--line);
  min-height: 146px;
  padding: 34px 28px;
}
.service-strip article:last-child { border-right: 1px solid var(--line); }
.service-strip strong { display: block; font-size: 20px; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; }
.service-strip p { color: var(--ink-muted); line-height: 1.55; margin-bottom: 0; }

.section { padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px); }
.section-heading { margin: 0 auto 34px; max-width: 980px; text-align: center; }
.section-heading p { color: var(--ink-muted); margin-left: auto; margin-right: auto; }
.trip-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trip-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.08);
  overflow: hidden;
}
.trip-card img { aspect-ratio: 16 / 10; display: block; object-fit: cover; width: 100%; }
.trip-card > div { padding: 20px; }
.trip-card p:first-child { color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.trip-card p, .condition-card p, .road-step p, footer span { color: var(--ink-muted); }
.trip-card dl {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0;
  padding: 14px 0;
}
.trip-card dt { color: var(--ink-muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.trip-card dd { font-size: 13px; font-weight: 800; margin: 0; }
.trip-card strong { color: var(--red); display: block; font-size: 24px; font-weight: 900; margin-bottom: 14px; }
.trip-card a { background: var(--red); color: var(--snow); width: 100%; }

.split { align-items: start; display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
.split > div > p, .vehicle-band p { color: var(--ink-muted); }
.includes { display: grid; gap: 14px; margin-top: 28px; }
.includes div, .condition-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 20px;
}
.includes div { border-left: 5px solid var(--red); }
.includes p, .condition-card p { font-size: 16px; line-height: 1.5; margin-bottom: 0; }
.price-table {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.08);
  overflow: hidden;
}
.price-row { align-items: center; display: grid; gap: 12px; grid-template-columns: 1.3fr 0.7fr 0.8fr; min-height: 68px; padding: 14px 18px; }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row span, .price-row strong { font-weight: 900; }
.price-row strong { color: var(--red); }
.price-row small { color: var(--ink-muted); font-weight: 800; }

.route-section { background: linear-gradient(180deg, var(--ice), #f5f7fa); }
.route-board { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr) 340px; }
.road-list {
  background: var(--snow);
  border: 1px solid rgba(7, 21, 43, 0.14);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.08);
  overflow: hidden;
}
.road-step { align-items: center; display: grid; gap: 16px; grid-template-columns: 42px 1fr; padding: 18px; }
.road-step + .road-step { border-top: 1px solid var(--line); }
.road-step span {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: var(--snow);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.road-step p { margin-bottom: 0; }
.condition-card { align-self: stretch; background: var(--navy); color: var(--snow); }
.condition-card p { color: rgba(255, 255, 255, 0.76); }

.vehicle-band {
  align-items: center;
  background: linear-gradient(135deg, #07152b 0%, #142b49 54%, #d90712 180%);
  color: var(--snow);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.vehicle-band p { color: rgba(255, 255, 255, 0.82); }
.vehicle-band .eyebrow { color: #ffb7bb; }
.spec-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.spec-grid span, .keyword-cloud span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 2px;
  font-weight: 900;
  padding: 18px;
  text-transform: uppercase;
}
.driver-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.08);
  overflow: hidden;
}
.driver-card img { aspect-ratio: 16 / 10; display: block; object-fit: cover; width: 100%; }
.driver-card div { padding: 24px; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.keyword-cloud span { background: var(--snow); border-color: var(--line); }

.cta { background: var(--navy); color: var(--snow); text-align: center; }
.cta p { color: #ffb7bb; margin-left: auto; margin-right: auto; }
.cta .button { margin-top: 12px; }
footer {
  align-items: center;
  background: var(--snow);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px) 92px;
}
.floating-whatsapp {
  align-items: center;
  background: #19b35b;
  border: 2px solid var(--snow);
  border-radius: 2px;
  bottom: 28px;
  box-shadow: 0 18px 46px rgba(7, 21, 43, 0.24);
  color: var(--snow);
  display: inline-flex;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  position: fixed;
  right: clamp(18px, 4vw, 56px);
  z-index: 40;
}
.floating-whatsapp span {
  align-items: center;
  background: var(--snow);
  border-radius: 2px;
  color: #128c46;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.floating-whatsapp strong { font-size: 14px; font-weight: 900; text-transform: uppercase; }
.mobile-actions {
  background: var(--snow);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  left: 0;
  position: fixed;
  right: 0;
  z-index: 30;
}
.mobile-actions a { font-size: 13px; font-weight: 900; padding: 15px 10px; text-align: center; text-transform: uppercase; }
.mobile-actions a:nth-child(2) { background: var(--red); color: var(--snow); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .quote-panel, .trip-grid, .split, .route-board, .vehicle-band, .service-strip { grid-template-columns: 1fr 1fr; }
  .quote-panel button { grid-column: 1 / -1; }
  .quote-result { grid-template-columns: 1fr; }
  .route-board { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { padding-top: 10px; }
  .brand img { height: 44px; width: 44px; }
  .brand strong { font-size: 14px; }
  .language-switcher, .top-contact { display: none; }
  .hero { min-height: 1040px; }
  .hero-logo-lockup { padding-right: 12px; }
  .hero-logo-lockup img { height: 56px; width: 56px; }
  .quote-panel, .trip-grid, .split, .vehicle-band, .spec-grid, .trust-strip, .service-strip { grid-template-columns: 1fr; }
  .quote-panel { bottom: 18px; }
  .price-row { align-items: start; grid-template-columns: 1fr; }
  .section-heading { text-align: left; }
  .mobile-actions { display: grid; }
  .floating-whatsapp { bottom: 64px; min-height: 52px; padding-right: 14px; right: 14px; }
  .floating-whatsapp span { height: 36px; width: 36px; }
  .floating-whatsapp strong { display: none; }
}
