:root {
  --ink: #121417;
  --muted: #626975;
  --line: #dfe4ea;
  --paper: #f7f8f8;
  --white: #ffffff;
  --gold: #c8a75e;
  --cyan: #14a9d4;
  --green: #236b5b;
  --navy: #17283d;
  --shadow: 0 22px 70px rgba(18, 20, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), #f7931e);
  color: var(--white);
  font-weight: 900;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #313844;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--cyan);
}

.header-call,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.header-call,
.btn.primary {
  background: var(--cyan);
  color: var(--white);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.btn.full {
  width: 100%;
  border: 0;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 850;
}

.hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101317;
}

.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 15, 0.9) 0%, rgba(10, 12, 15, 0.68) 42%, rgba(10, 12, 15, 0.18) 76%),
    linear-gradient(0deg, rgba(10, 12, 15, 0.28), rgba(10, 12, 15, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 92px clamp(20px, 6vw, 86px) 130px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.trust-row {
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
}

.booking-section,
.pricing-section,
.fleet-section,
.seo-section,
.proof-section,
.faq-section,
.contact-section,
.content-page {
  padding: 84px clamp(18px, 5vw, 72px);
}

.booking-section,
.contact-section,
.content-page {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 24px;
  align-items: start;
}

.booking-card,
.quote-card,
.table-card,
.feature-grid article,
.link-grid a,
.review-grid article,
.faq-grid details,
.contact-grid article,
.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.booking-card,
.quote-card,
.content-card {
  padding: 24px;
}

.quote-card {
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}

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

label,
legend {
  color: #3a414b;
  font-size: 13px;
  font-weight: 850;
}

input,
select {
  display: block;
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  border: 1px solid #cfd7e2;
  border-radius: 7px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

fieldset {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
}

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

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

.choice-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfd;
}

.choice-card input {
  width: auto;
  min-height: auto;
  margin: 3px 0 0;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card small {
  margin-top: 3px;
  color: var(--muted);
}

.quote-price {
  margin-bottom: 18px;
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.quote-list {
  margin: 0 0 22px;
}

.quote-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f4;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.booking-success {
  margin-top: 14px;
  border: 1px solid rgba(35, 107, 91, 0.28);
  border-radius: 8px;
  padding: 12px;
  background: rgba(35, 107, 91, 0.08);
  color: #155447;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.pricing-section,
.proof-section {
  background: var(--paper);
}

.table-card {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 13px;
}

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

.feature-grid article,
.review-grid article,
.faq-grid details,
.contact-grid article {
  padding: 22px;
}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.feature-grid article:nth-child(2) span {
  background: var(--ink);
  color: var(--gold);
}

.feature-grid article:nth-child(3) span {
  background: var(--green);
}

.feature-grid p,
.review-grid p,
.faq-grid p,
.contact-grid small,
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.7;
}

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

.link-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: #fbfcfd;
  font-weight: 850;
}

.link-grid a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.review-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.review-grid small {
  color: var(--gold);
  font-weight: 900;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.contact-grid strong {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #111317;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: #25d366;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.content-page {
  min-height: 70vh;
}

.content-card {
  max-width: 980px;
}

.content-card h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
}

.content-card h2 {
  margin-top: 30px;
  font-size: 26px;
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 12px;
  }

  .booking-shell,
  .feature-grid,
  .review-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .hero-section {
    min-height: 640px;
    align-items: flex-end;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 12, 15, 0.93) 0%, rgba(10, 12, 15, 0.6) 72%, rgba(10, 12, 15, 0.25) 100%);
  }

  .hero-inner {
    padding: 78px 20px 70px;
  }

  h1 {
    font-size: 41px;
  }

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

  .form-grid,
  .choice-grid,
  .choice-grid.two,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .quote-price {
    font-size: 48px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 18px;
  }
}
