:root {
  --primary: #0878d8;
  --primary-dark: #064b85;
  --accent: #ff9f1c;
  --accent-soft: #fff4df;
  --text: #162235;
  --muted: #5b6b7c;
  --line: #e7edf5;
  --bg: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 24px 70px rgba(18, 49, 80, 0.14);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section-pad {
  padding: 86px 0;
}

.section-pad.compact {
  padding-top: 30px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), #26c0ff);
  box-shadow: 0 14px 30px rgba(8, 120, 216, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  background: var(--accent);
  color: #2a1a00 !important;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #10a7ff);
  color: #fff;
  box-shadow: 0 18px 40px rgba(8, 120, 216, 0.24);
}

.btn-light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
}

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

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--soft);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 159, 28, 0.14), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(8, 120, 216, 0.14), transparent 35%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a5a00;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin: 22px 0 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 14px 0;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-content p,
.section-heading p,
.route-info p,
.contact-card p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 650px;
}

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

.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.van-illustration {
  position: relative;
  min-height: 270px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf7ff 0%, #ffffff 62%);
}

.sun {
  position: absolute;
  top: 34px;
  right: 44px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 16px rgba(255, 159, 28, 0.15);
}

.road-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 58px;
  height: 16px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #c8d8e9 0 35px, transparent 35px 55px);
}

.van {
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: 250px;
  height: 116px;
  transform: translateX(-50%);
}

.van-top {
  position: absolute;
  width: 145px;
  height: 70px;
  left: 45px;
  top: 0;
  background: #fff;
  border: 8px solid var(--primary);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
}

.van-body {
  position: absolute;
  bottom: 18px;
  width: 250px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), #10a7ff);
  border-radius: 24px 34px 18px 18px;
  box-shadow: 0 18px 34px rgba(8, 120, 216, 0.24);
}

.van-body span {
  position: relative;
  top: 17px;
  left: 28px;
  display: inline-block;
  width: 38px;
  height: 23px;
  margin-right: 9px;
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text);
  border: 9px solid #dbe8f4;
}

.wheel-left { left: 43px; }
.wheel-right { right: 43px; }

.trip-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.trip-summary div,
.feature-card,
.contact-card,
.mini-summary,
.route-box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
}

.trip-summary div {
  padding: 16px;
}

small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 4px;
}

.trip-summary strong {
  color: var(--primary-dark);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

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

.feature-card {
  padding: 26px;
  min-height: 235px;
  box-shadow: 0 18px 50px rgba(18, 49, 80, 0.08);
}

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

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.route-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 26px;
  align-items: stretch;
}

.route-info,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.route-box {
  margin-top: 28px;
  padding: 24px;
}

.route-point {
  display: flex;
  gap: 16px;
  align-items: center;
}

.dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dot.start { background: var(--primary); }
.dot.end { background: var(--accent); }

.route-line {
  width: 3px;
  height: 58px;
  background: linear-gradient(var(--primary), var(--accent));
  margin: 10px 0 10px 9px;
  border-radius: 999px;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 159, 28, 0.17);
  top: -60px;
  right: -60px;
}

.badge {
  display: inline-flex;
  background: var(--soft);
  color: var(--primary-dark);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.price-card h2 {
  color: var(--primary-dark);
}

.price-label {
  color: var(--muted);
  font-weight: 800;
}

.price {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: var(--accent);
  margin: 10px 0 18px;
}

.include-text {
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel .eyebrow {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.cta-panel p {
  color: rgba(255,255,255,0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card,
.mini-summary {
  padding: 32px;
  box-shadow: 0 18px 50px rgba(18, 49, 80, 0.08);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft);
}

.contact-item a {
  color: var(--primary-dark);
  font-weight: 900;
}

.mini-summary ul {
  list-style: none;
  margin-top: 18px;
}

.mini-summary li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.mini-summary li:last-child {
  border-bottom: 0;
}

.mini-summary strong {
  color: var(--text);
}

.footer {
  background: #101a28;
  color: #fff;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer p {
  color: rgba(255,255,255,0.68);
}

.footer a {
  color: #fff;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .route-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-panel,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-card,
  .route-info,
  .price-card,
  .contact-card,
  .mini-summary,
  .cta-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .feature-grid,
  .trip-summary {
    grid-template-columns: 1fr;
  }

  .van {
    width: 210px;
  }

  .van-body {
    width: 210px;
  }

  .van-body span {
    width: 30px;
    left: 23px;
  }

  .price {
    font-size: 3.5rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
