:root {
  --bg: #f4f3ef;
  --surface: #ffffff;
  --surface-soft: #ebe9e2;
  --text: #1c1c1c;
  --text-muted: #555;
  --brand: #d6a436;
  --brand-dark: #b6851d;
  --dark: #111111;
  --radius: 14px;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 84px;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

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

.section-dark {
  background: var(--dark);
  color: #fff;
}

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

.section-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--text-muted);
}

.section-dark .section-heading p {
  color: #cfcfcf;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 min(40px, 4vw);
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.logo {
  display: inline-flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 0;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.logo img {
  width: 186px;
  height: 186px;
  object-fit: contain;
  transition: width 0.25s ease, height 0.25s ease;
}

.navbar.scrolled .logo img {
  width: 66px;
  height: 66px;
}

.navbar.scrolled .logo {
  align-items: center;
  align-self: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}

.btn-nav {
  background: var(--brand);
  color: #151515;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: clamp(560px, 75vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: -84px;
}

.hero-bg {
  position: absolute;
  inset: -6% 0 0;
  background: url("images/hero.png") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.62) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 84px;
}

.hero-content h1 {
  max-width: none;
  font-size: clamp(1rem, 5.4vw, 3.7rem);
  line-height: 1.1;
  white-space: nowrap;
}

.lead {
  margin-top: 16px;
  max-width: 700px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: #f0f0f0;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #151515;
}

.btn-primary:hover {
  background: #ebbc58;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero-highlights {
  margin-top: 24px;
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 500;
  color: #ececec;
}

.hero-highlights li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.trust-bar {
  margin-top: -28px;
  position: relative;
  z-index: 3;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-bar article {
  background: #f8f8f5;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.trust-bar strong {
  display: block;
  font-size: 1rem;
}

.trust-bar span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.fleet-grid {
  grid-template-columns: 1fr;
}

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

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

.included-grid article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card.muted {
  background: #f0efe9;
}

.card h3,
.included-grid h3 {
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  color: var(--text-muted);
}

.fleet-card-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.fleet-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.75);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.carousel-control.prev {
  left: 12px;
}

.carousel-control.next {
  right: 12px;
}

.carousel-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #bcbcbc;
  cursor: pointer;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand);
}

.feature-list {
  list-style: none;
  margin-top: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 10px;
}

.link-arrow {
  margin-top: 10px;
  display: inline-flex;
  text-decoration: none;
  color: #151515;
  font-weight: 700;
}

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

.steps article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}

.steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #161616;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.steps p {
  color: #d3d3d3;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.booking-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

footer {
  background: #080808;
  color: #fff;
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 10px;
}

.footer-inner p {
  color: #cecece;
}

.instagram-follow {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-logo-wrap {
  justify-self: end;
}

.footer-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.copyright {
  margin-top: 8px;
  font-size: 0.86rem;
  grid-column: 1 / -1;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  text-decoration: none;
  background: #25d366;
  color: #0b2913;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  margin: 5px 0;
  background: #fff;
}

@media (max-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 840px) {
  .fleet-grid,
  .policy-grid,
  .faq-grid,
  .included-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .fleet-card-content {
    grid-template-columns: 1fr;
  }

  .fleet-image {
    min-height: 240px;
    max-height: 340px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 84px;
    right: 4%;
    width: min(300px, 92%);
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 15, 15, 0.96);
    border-radius: 12px;
    padding: 14px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .btn-nav {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo-wrap {
    justify-self: start;
  }

  .footer-logo {
    width: 220px;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 78px;
  }

  .navbar {
    height: 78px;
    padding: 0 4%;
  }

  .logo img {
    width: 144px;
    height: 144px;
  }

  .navbar.scrolled .logo img {
    width: 60px;
    height: 60px;
  }

  .hero {
    margin-top: -78px;
    min-height: 580px;
  }

  .hero-content {
    padding-top: 78px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    margin-top: -14px;
  }

  .carousel-control {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}
