:root {
  --navy-900: #131c40;
  --navy-800: #1a2456;
  --navy-700: #22306e;
  --navy-100: #dde3f5;
  --navy-50: #eef1fb;
  --orange-600: #e06a12;
  --orange-500: #f47b20;
  --orange-100: #fde3cf;
  --orange-50: #fef3e9;
  --yellow-400: #ffc107;
  --ink-900: #17203a;
  --ink-600: #43507a;
  --ink-500: #5b678f;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(19, 28, 64, 0.10);
  --shadow-lg: 0 18px 50px rgba(19, 28, 64, 0.16);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1180px; margin-inline: auto; padding-inline: 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-800); color: #fff; padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-900); color: #cdd6f0;
  font-size: 0.82rem; font-weight: 600; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.topbar__badges { display: flex; gap: 18px; }
.topbar a { color: var(--yellow-400); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--navy-50);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 10px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 58px; width: auto; }
.brand__logo--footer { height: 72px; background: #fff; border-radius: 10px; padding: 6px 10px; }
.nav__links { display: flex; align-items: center; gap: 4px; font-weight: 700; font-size: 0.93rem; }
.nav__links > li > a { padding: 10px 12px; border-radius: 10px; display: inline-block; }
.nav__links > li > a:hover, .nav__links > li > a[aria-current="page"] { background: var(--navy-50); color: var(--navy-800); }
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--navy-50); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: 0.18s ease; max-height: 70vh; overflow: auto; z-index: 60;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 12px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; }
.drop a:hover { background: var(--orange-50); color: var(--orange-600); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--navy-100); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--navy-800); }
.nav__toggle svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  padding: 11px 20px; border-radius: 12px; border: none; cursor: pointer;
  transition: 0.15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange-500); color: #fff; box-shadow: 0 8px 20px rgba(244, 123, 32, 0.35); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn--green { background: var(--navy-800); color: #fff; box-shadow: 0 8px 20px rgba(26, 36, 86, 0.3); }
.btn--green:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--navy-800); border: 1px solid var(--navy-100); }
.btn--white:hover { border-color: var(--navy-800); }
.btn--ghost { background: transparent; color: var(--navy-800); border: 1.5px solid var(--navy-800); }
.btn--ghost:hover { background: var(--navy-800); color: #fff; }
.btn--lg { padding: 14px 26px; font-size: 1rem; border-radius: 14px; }
.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff; padding: 56px 0 64px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244,123,32,0.28), transparent 65%); border-radius: 50%;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.hero .hl { color: var(--yellow-400); }
.hero .lead { margin-top: 16px; color: #c6cfec; font-size: 1.06rem; max-width: 560px; }
.hero__usps { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; font-weight: 600; font-size: 0.95rem; }
.hero__usps li { display: flex; align-items: center; gap: 9px; }
.hero__usps svg { width: 19px; height: 19px; color: var(--yellow-400); flex-shrink: 0; }
.hero__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #c6cfec; }
.stars { color: var(--yellow-400); letter-spacing: 2px; }

/* ---------- Booking card ---------- */
.booking {
  background: #fff; color: var(--ink-900); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 26px;
}
.booking h2 { font-size: 1.3rem; font-weight: 800; }
.booking > p { font-size: 0.9rem; color: var(--ink-500); margin: 4px 0 14px; }
.booking__tabs { display: flex; gap: 6px; margin-bottom: 16px; background: var(--navy-50); border-radius: 11px; padding: 5px; }
.booking__tabs button {
  flex: 1; border: none; background: transparent; font-family: var(--font);
  font-weight: 700; font-size: 0.82rem; padding: 8px 6px; border-radius: 8px; cursor: pointer; color: var(--ink-600);
}
.booking__tabs button[aria-selected="true"] { background: var(--navy-800); color: #fff; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field label { font-size: 0.8rem; font-weight: 700; color: var(--ink-600); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 0.95rem; padding: 11px 13px;
  border: 1.5px solid var(--navy-100); border-radius: 10px; background: #fff; color: var(--ink-900);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange-500); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking__note { text-align: center; font-size: 0.82rem; color: var(--ink-500); margin-top: 12px; }
.booking__note a { color: var(--orange-600); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section--soft { background: var(--navy-50); }
.section--green { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: #fff; }
.section-head { margin-bottom: 40px; max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--orange-600); background: var(--orange-50);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.section-head .lead { margin-top: 10px; color: var(--ink-500); }

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

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--navy-50); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--orange-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card__icon svg { width: 32px; height: 32px; }
.card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 7px; }
.card p { font-size: 0.9rem; color: var(--ink-500); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: 0.88rem; color: var(--orange-600); }
.card__link svg { width: 16px; height: 16px; }

/* Why us */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why__item { text-align: center; padding: 24px 16px; }
.why__item .card__icon { margin-inline: auto; background: var(--navy-50); }
.why__item h3 { font-size: 1.02rem; font-weight: 800; margin: 4px 0 7px; }
.why__item p { font-size: 0.88rem; color: var(--ink-500); }

/* Route cards */
.route-card {
  position: relative; display: flex; flex-direction: column; gap: 9px;
  background: #fff; border: 1px solid var(--navy-50); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); transition: 0.18s ease;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange-100); }
.route-card .tag {
  position: absolute; top: -10px; right: 16px; background: var(--yellow-400); color: var(--navy-900);
  font-size: 0.7rem; font-weight: 800; padding: 3px 10px; border-radius: 999px;
}
.route-card__path { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.05rem; }
.route-card__path svg { width: 18px; height: 18px; color: var(--orange-500); }
.route-card__meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--ink-500); }
.route-card__price { font-size: 0.9rem; color: var(--ink-600); border-top: 1px dashed var(--navy-100); padding-top: 10px; }
.route-card__price b { color: var(--orange-600); font-size: 1.05rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: relative; }
.step__num { counter-increment: step; }
.step__num::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  background: var(--navy-800); color: var(--yellow-400); font-weight: 800; font-size: 1.1rem;
}
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--ink-500); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stats__num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.stats__num span { color: var(--yellow-400); }
.stats__label { font-size: 0.9rem; color: #c6cfec; font-weight: 600; }

/* Fleet */
.fleet-card { text-align: left; }
.fleet-card__img { background: var(--navy-50); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 16px; }
.fleet-card__img svg { width: 100%; height: auto; }
.fleet-card__img img { width: 100%; height: 120px; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.fleet-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.fleet-card ul li {
  font-size: 0.78rem; font-weight: 700; background: var(--orange-50); color: var(--orange-600);
  padding: 4px 11px; border-radius: 999px;
}
.fleet-card__rate { margin-top: 12px; font-weight: 800; color: var(--navy-800); }
.fleet-card__rate b { color: var(--orange-600); font-size: 1.15rem; }

/* Testimonials */
.testimonial { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.testimonial p { font-size: 0.93rem; color: var(--ink-600); margin: 12px 0 16px; }
.testimonial__who { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; }
.testimonial__who b { display: block; }
.testimonial__who span span { color: var(--ink-500); font-size: 0.8rem; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-800); color: var(--yellow-400);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--navy-50); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; padding: 17px 20px; font-weight: 700; font-size: 0.98rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::after { content: '+'; font-size: 1.3rem; color: var(--orange-500); font-weight: 800; }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 20px 17px; font-size: 0.92rem; color: var(--ink-500); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; }
.cta-band p { margin: 12px auto 22px; color: #c6cfec; max-width: 560px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff; padding: 48px 0;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.01em; }
.page-hero p { margin-top: 10px; color: #c6cfec; max-width: 640px; }

.content-block { max-width: 820px; }
.content-block h2 { font-size: 1.4rem; font-weight: 800; margin: 28px 0 10px; }
.content-block p { color: var(--ink-600); margin-bottom: 12px; }
.content-block ul { list-style: disc; padding-left: 22px; color: var(--ink-600); margin-bottom: 12px; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.info-table th, .info-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--navy-50); font-size: 0.93rem; }
.info-table th { background: var(--navy-50); font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #aeb9dd; padding: 56px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 34px; }
.footer__brand p { font-size: 0.9rem; margin-top: 14px; }
.site-footer h3 { color: #fff; font-size: 0.95rem; font-weight: 800; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 0.9rem; }
.footer__links a:hover { color: var(--yellow-400); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 14px; font-size: 0.83rem;
}
.footer__bottom a { color: var(--yellow-400); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
}
.wa-float svg { width: 30px; height: 30px; }

/* Helpers */
.text-center { text-align: center; }
.mt-3 { margin-top: 30px; }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.92rem; margin-bottom: 18px; }
.alert--ok { background: #e7f7ee; color: #14713d; border: 1px solid #bfe8d0; }
.alert--err { background: #fdecec; color: #a12626; border: 1px solid #f5c6c6; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--navy-50);
    box-shadow: var(--shadow-lg); padding: 12px 16px;
  }
  .nav__links.open { display: flex; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 18px; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .why, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hide-sm { display: none; }
  .topbar .container { justify-content: center; }
  .brand__logo { height: 46px; }
  .section { padding: 48px 0; }
}

/* Blog */
.blog-card { display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(19, 28, 64, 0.12); }
.blog-card__date { color: var(--ink-500); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { color: var(--navy-900); font-size: 1.1rem; line-height: 1.4; }
.blog-card p { color: var(--ink-500); font-size: 0.92rem; line-height: 1.6; }
.blog-card__more { color: var(--orange-600); font-weight: 700; font-size: 0.9rem; margin-top: auto; }
.blog-content h2 { margin-top: 28px; }
.blog-content h3 { margin-top: 20px; }
.blog-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0; }
.blog-content blockquote { border-left: 4px solid var(--orange-500); margin: 16px 0; padding: 10px 18px; background: var(--navy-50); border-radius: 0 10px 10px 0; }
.blog-content a { color: var(--orange-600); font-weight: 600; }
.blog-content ul, .blog-content ol { margin: 0 0 14px 22px; color: var(--ink-600); line-height: 1.7; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.blog-content th, .blog-content td { border: 1px solid var(--navy-100); padding: 8px 12px; text-align: left; }

/* Blog thumbnails */
.blog-card__img { display: block; margin: -12px -12px 6px; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy-50); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__img--empty { display: flex; align-items: center; justify-content: center; color: var(--navy-900); opacity: 0.35; }
.blog-card__img--empty svg { width: 48px; height: 48px; }
.blog-hero-img { border-radius: var(--radius); overflow: hidden; margin: -70px 0 32px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.blog-hero-img img { width: 100%; max-height: 440px; object-fit: cover; display: block; }

/* Tour packages */
.tour-card { display: flex; flex-direction: column; gap: 10px; }
.tour-card__img { margin: -12px -12px 6px; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16 / 10; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-card__meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: var(--ink-500); }
.tour-card__price { color: var(--orange-600); font-weight: 800; font-size: 0.95rem; }
.tour-card__list { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 5px; font-size: 0.88rem; color: var(--ink-600); }
.tour-card__list li::before { content: '✓'; color: var(--orange-500); font-weight: 800; margin-right: 8px; }

/* Footer social */
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background 0.15s; }
.footer__social a:hover { background: var(--orange-500); }
.footer__social svg { width: 18px; height: 18px; }
