* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #18212f;
  background: #f7f8fb;
  line-height: 1.6;
}

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

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e6e8ee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

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

.brand small {
  display: block;
  color: #667085;
  margin-top: -3px;
}

.logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #18212f;
  color: white;
  font-weight: 700;
}

.nav-call {
  color: white;
  background: #18212f;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #fff 0%, #eef3ff 100%);
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: #fff3d8;
  color: #8a5a00;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  margin: 0 0 18px;
}

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

.lead {
  font-size: 20px;
  color: #475467;
  max-width: 680px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary {
  background: #18212f;
  color: white;
}

.whatsapp {
  background: #25d366;
  color: #052b14;
}

.full {
  width: 100%;
}

.trust {
  color: #667085;
}

.booking-card, .card, .fare-box {
  background: white;
  border: 1px solid #e6e8ee;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(24, 33, 47, 0.08);
}

.booking-card ul {
  padding-left: 20px;
}

.section {
  padding: 62px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card p {
  color: #667085;
}

.split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: start;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.features span {
  background: white;
  border: 1px solid #e6e8ee;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.areas {
  background: white;
  border: 1px solid #e6e8ee;
  border-radius: 20px;
  padding: 22px;
  font-size: 19px;
  font-weight: 700;
}

details {
  background: white;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

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

.final-cta {
  background: #18212f;
  color: white;
  text-align: center;
  padding: 64px 0;
}

.final-cta p {
  color: #d0d5dd;
}

.center {
  justify-content: center;
}

footer {
  background: white;
  padding: 34px 0 80px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #475467;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 860px) {
  .hero-grid, .split {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 46px 0;
  }

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

  .nav-call {
    display: none;
  }

  .sticky-mobile {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  }

  .sticky-mobile a {
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-weight: 900;
    color: white;
    background: #18212f;
  }

  .sticky-mobile a:last-child {
    background: #25d366;
    color: #052b14;
  }
}
