:root {
  --brand: #ff6b40;
  --brand-dark: #e2542c;
  --brand-soft: #fff3ef;
  --navy: #12345b;
  --navy-deep: #0d2745;
  --text: #37424f;
  --muted: #6b7785;
  --line: #e8ecf1;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 52, 91, 0.08);
  --shadow-lg: 0 18px 50px rgba(18, 52, 91, 0.14);
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cdd9e6;
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar a:hover { color: var(--brand); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(18, 52, 91, .08);
}
.header .container { display: flex; align-items: center; gap: 18px; height: 78px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), #ffa07d);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 19px;
}
.logo-img { height: 48px; width: auto; max-width: 260px; object-fit: contain; display: block; }
.logo-img-footer { height: 54px; background: #fff; border-radius: 10px; padding: 6px 10px; }
.logo-text b { display: block; white-space: nowrap; color: var(--navy); font-size: 19px; font-weight: 700; letter-spacing: -.4px; line-height: 1.1; }

.logo-text span { font-size: 9.5px; letter-spacing: 3px; color: var(--brand); text-transform: uppercase; }

.nav { margin-left: auto; }
.nav > ul { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.nav > ul > li { position: relative; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--navy); padding: 8px 0; display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.nav a:hover { color: var(--brand); }
.caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); opacity: .6; }
.dropdown {
  position: absolute; top: 100%; left: -18px; min-width: 220px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: .22s ease; border-top: 3px solid var(--brand);
}
.nav li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 8px 12px; border-radius: 8px; font-weight: 400; }
.dropdown a:hover { background: var(--brand-soft); color: var(--brand); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  border: 2px solid transparent; white-space: nowrap; cursor: pointer; transition: .22s ease; font-family: inherit;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(255,107,64,.35); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }

.burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #fff; padding: 74px 0 84px;
  background: var(--navy-deep);
}
.hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero .hero-bg .swiper-slide { background-position: center; background-size: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(9,28,50,.92) 0%, rgba(9,28,50,.78) 45%, rgba(9,28,50,.45) 100%);
}
.hero .container.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,64,.16); border: 1px solid rgba(255,107,64,.45);
  color: #ffd2c2; font-size: 12.5px; font-weight: 600; letter-spacing: .6px;
  padding: 7px 15px; border-radius: 999px; text-transform: uppercase;
}
.hero h1 { margin-top: 18px; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.13; font-weight: 700; letter-spacing: -1.2px; }
.hero h1 .accent { color: var(--brand); }
.hero .hero-lead { margin-top: 18px; max-width: 620px; font-size: 15.5px; color: #dbe5f0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 22px; }
.hero-points li {
  font-size: 13px; font-weight: 500; color: #eaf1f8;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(4px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Hero query form */
.hero-form {
  background: rgba(255,255,255,.97);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(4, 18, 34, .4);
  color: var(--text);
}
.hero-form-head {
  background: linear-gradient(135deg, var(--brand), #ff8b62);
  color: #fff; padding: 18px 22px;
}
.hero-form-head h3 { font-size: 19px; font-weight: 700; line-height: 1.25; }
.hero-form-head p { font-size: 12.5px; opacity: .95; margin-top: 2px; }
.hero-form-body { padding: 20px 22px 24px; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.hero-form .field input,
.hero-form .field select {
  width: 100%; font-family: var(--font); font-size: 14px; color: var(--text);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px;
  background: #fbfcfe; outline: none; transition: .2s;
}
.hero-form .field input:focus,
.hero-form .field select:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,64,.14); }
.hf-submit { width: 100%; margin-top: 6px; justify-content: center; }

@media (max-width: 980px) {
  .hero .container.hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero .hero-lead { max-width: none; }
}
@media (max-width: 560px) {
  .hero { padding: 52px 0 62px; }
  .hf-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}


/* ---------- Sections ---------- */
section { padding: 82px 0; }
.section-alt { background: linear-gradient(180deg, #fff7f4, #fffdfc); }
.eyebrow {
  text-align: center; text-transform: uppercase; letter-spacing: 3px;
  font-size: 12px; font-weight: 600; color: var(--brand);
}
.section-title { text-align: center; font-size: clamp(1.6rem, 3.4vw, 2.5rem); color: var(--navy); font-weight: 700; margin-top: 8px; letter-spacing: -.6px; }
.section-sub { text-align: center; color: var(--muted); max-width: 720px; margin: 14px auto 0; }
.section-head { margin-bottom: 46px; }

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer {
  display: flex; gap: 0; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: .25s ease;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer img { width: 120px; height: 100%; min-height: 118px; object-fit: cover; }
.offer-body { padding: 14px 18px; }
.offer-tag { color: var(--brand); font-size: 12px; font-weight: 600; letter-spacing: .4px; }
.offer h3 { color: var(--navy); font-size: 16px; margin: 4px 0 6px; }
.offer .price { color: var(--brand); font-weight: 700; font-size: 19px; }
.offer .price del { color: var(--muted); font-size: 13px; font-weight: 400; margin-left: 6px; }

/* ---------- Destination grid ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest-grid .card:first-child { grid-column: span 2; grid-row: span 2; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 210px;
  box-shadow: var(--shadow); display: block; isolation: isolate;
}
.card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .5s ease; }
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,39,69,0) 35%, rgba(13,39,69,.85)); }
.card:hover img { transform: scale(1.08); }
.card-body { position: relative; z-index: 2; height: 100%; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; }
.card-body h3 { font-size: 20px; font-weight: 600; }
.card-body span { font-size: 13px; color: #d9e3ee; }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .5px; text-transform: uppercase;
}
.center-link { text-align: center; margin-top: 40px; }
.center-link a { color: var(--brand); font-weight: 600; }
.center-link a:hover { color: var(--brand-dark); }

/* ---------- Why choose ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: 18px; box-shadow: var(--shadow-lg); }
.stat-badge {
  position: absolute; right: -18px; bottom: -22px; background: var(--brand); color: #fff;
  border-radius: 16px; padding: 18px 26px; text-align: center; box-shadow: var(--shadow-lg);
}
.stat-badge b { display: block; font-size: 30px; line-height: 1; }
.stat-badge span { font-size: 12px; letter-spacing: .6px; }
.split h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); letter-spacing: -.6px; margin: 8px 0 16px; }
.split .eyebrow, .split .section-title { text-align: left; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 28px 0; }
.feature h4 { color: var(--navy); font-size: 16px; display: flex; align-items: center; gap: 9px; }
.feature p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.dot { width: 30px; height: 30px; border-radius: 9px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 14px; flex: none; }
.inline-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--text); }
.checklist li::before { content: "✓"; color: var(--brand); font-weight: 700; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: .25s ease;
}
.service:hover { border-color: var(--brand); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.service h3 { color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.service p { font-size: 14.5px; color: var(--muted); }

/* ---------- Reviews ---------- */
.rating-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; color: var(--muted); font-size: 14px; }
.stars { color: var(--brand); letter-spacing: 2px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border-top: 3px solid var(--brand); }
.review-top { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 600; }
.review-top b { color: var(--navy); display: block; font-size: 15px; }
.review-top small { color: var(--muted); }
.review p { font-size: 14.5px; color: var(--text); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; text-align: center; }
.cta h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -.6px; }
.cta p { color: #cfdcea; margin: 14px auto 30px; max-width: 640px; }
.cta .inline-actions { justify-content: center; }

/* ---------- Blog ---------- */
.blogs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .25s ease; }
.blog:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog img { height: 190px; width: 100%; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-tag { color: var(--brand); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog h3 { color: var(--navy); font-size: 17px; margin: 8px 0 8px; line-height: 1.4; }
.blog p { font-size: 14px; color: var(--muted); }
.blog-meta { margin-top: 14px; font-size: 12.5px; color: var(--muted); display: flex; gap: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit;
  padding: 18px 22px; font-size: 15.5px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-q:hover { color: var(--brand); }
.faq-q .sign { color: var(--brand); font-size: 22px; line-height: 1; transition: transform .25s; }
.faq-item.open .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- Contact form ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.form-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 32px; }
.form-card h3 { color: var(--navy); font-size: 20px; margin-bottom: 4px; }
.form-card p.small { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 14.5px; color: var(--text); background: #fbfcfd; outline: none; transition: .2s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,64,.14); }
.form-msg { margin-top: 12px; font-size: 14px; color: var(--brand); font-weight: 600; display: none; }
.form-msg.show { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #b9c8d8; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer li { margin-bottom: 9px; font-size: 14.5px; }
.footer a:hover { color: var(--brand); }
.footer .logo-text b { color: #fff; }
.footer p { font-size: 14.5px; margin-top: 14px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .2s; }
.socials a:hover { background: var(--brand); }
.footer-bottom { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13.5px; }

/* ---------- Floating ---------- */
.floaters { position: fixed; right: 18px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; gap: 14px; }
.floaters a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floaters a svg { width: 28px; height: 28px; display: block; }
.floaters a:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 28px rgba(0,0,0,.24); }
.f-call { background: var(--brand); }
.f-wa { background: #25d366; }
@media (max-width: 560px) {
  .floaters { right: 14px; bottom: 16px; gap: 12px; }
  .floaters a { width: 50px; height: 50px; }
  .floaters a svg { width: 25px; height: 25px; }
}


.top-btn {
  position: fixed; left: 20px; bottom: 22px; z-index: 80; width: 46px; height: 46px;
  border-radius: 50%; border: 0; background: var(--navy); color: #fff; cursor: pointer;
  opacity: 0; pointer-events: none; transition: .25s; box-shadow: var(--shadow-lg);
}
.top-btn.show { opacity: 1; pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .offers, .services, .reviews, .blogs { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid .card:first-child { grid-column: span 2; grid-row: auto; }
  .split, .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 78px; left: 0; right: 0; background: #fff;
    box-shadow: var(--shadow-lg); padding: 14px 6%; display: none;
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav > ul > li { width: 100%; border-bottom: 1px solid var(--line); padding: 6px 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; padding: 0 0 6px 10px; display: none; }
  .nav li.open > .dropdown { display: block; }
  .header .btn { display: none; }
  .offers, .services, .reviews, .blogs, .dest-grid, .features, .footer-grid { grid-template-columns: 1fr; }
  .dest-grid .card:first-child { grid-column: auto; }
  .offer img { width: 96px; }
  section { padding: 58px 0; }
  .topbar .container { justify-content: center; text-align: center; }
}

/* ---------- Our Fleet slider ---------- */
.fleet-swiper { padding-bottom: 54px; }
.fleet-swiper .swiper-slide { height: auto; }
.fleet-card {
  background: #fff; border-radius: 18px; overflow: hidden; height: 100%;
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: .25s ease;
  border: 1px solid var(--line);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fleet-card:hover .fleet-media img { transform: scale(1.06); }
.fleet-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--brand); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .4px;
}
.fleet-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fleet-body h3 { color: var(--navy); font-size: 18px; font-weight: 600; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-specs li {
  font-size: 12.5px; color: var(--brand); background: var(--brand-soft);
  padding: 4px 10px; border-radius: 999px; font-weight: 500;
}
.fleet-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 4px; }
.fleet-foot span { font-size: 13.5px; color: var(--muted); }
.fleet-foot b { color: var(--brand); font-size: 20px; font-weight: 700; }
.fleet-foot b small { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.fleet-btn { width: 100%; padding: 11px 20px; }

.fleet-swiper .swiper-pagination-bullet { background: var(--navy); opacity: .25; }
.fleet-swiper .swiper-pagination-bullet-active { background: var(--brand); opacity: 1; width: 22px; border-radius: 5px; }
.fleet-swiper .swiper-button-prev,
.fleet-swiper .swiper-button-next {
  width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--brand);
  box-shadow: var(--shadow); top: 42%;
}
.fleet-swiper .swiper-button-prev::after,
.fleet-swiper .swiper-button-next::after { font-size: 15px; font-weight: 700; }
@media (max-width: 780px) {
  .fleet-swiper .swiper-button-prev, .fleet-swiper .swiper-button-next { display: none; }
}

/* ---------- Our Packages slider ---------- */
.pkg-swiper { padding-bottom: 56px; }
.pkg-swiper .swiper-slide { height: auto; padding: 6px 4px 10px; }
.pkg-card {
  background: #fff; border-radius: 18px; overflow: hidden; height: 100%;
  display: flex; flex-direction: column; border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: .25s ease;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-off {
  position: absolute; top: 0; right: 18px; z-index: 2; background: var(--brand);
  color: #fff; text-align: center; padding: 10px 16px 12px; border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 16px rgba(255,107,64,.35); line-height: 1.1;
}
.pkg-off b { display: block; font-size: 20px; font-weight: 700; }
.pkg-off small { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.pkg-price {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; color: #fff;
  background: rgba(13,39,69,.42); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28); border-radius: 12px;
  padding: 8px 16px; font-weight: 700; font-size: 18px;
}
.pkg-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-body h3 { color: var(--navy); font-size: 18px; font-weight: 700; line-height: 1.35; }
.pkg-card:hover .pkg-body h3 { color: var(--brand); }
.pkg-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pkg-days { font-size: 14px; color: var(--muted); }
.pkg-chip { background: var(--brand); color: #fff; font-size: 12.5px; font-weight: 600; padding: 5px 14px; border-radius: 999px; }
.pkg-loc { font-size: 14px; color: var(--muted); }
.pkg-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); }
.pkg-btn { padding: 11px 10px; font-size: 14px; border-radius: 10px; }
.pkg-swiper .swiper-pagination-bullet { background: var(--navy); opacity: .25; }
.pkg-swiper .swiper-pagination-bullet-active { background: var(--brand); opacity: 1; width: 22px; border-radius: 5px; }
.pkg-swiper .swiper-button-prev,
.pkg-swiper .swiper-button-next {
  width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--brand);
  box-shadow: var(--shadow); top: 28%;
}
.pkg-swiper .swiper-button-prev::after,
.pkg-swiper .swiper-button-next::after { font-size: 15px; font-weight: 700; }
@media (max-width: 780px) {
  .pkg-swiper .swiper-button-prev, .pkg-swiper .swiper-button-next { display: none; }
  .pkg-actions { grid-template-columns: 1fr; }
}

/* ---------- About page ---------- */
.nav a.active { color: var(--brand); font-weight: 600; }

.page-hero {
  background:
    linear-gradient(120deg, rgba(13,39,69,.92), rgba(18,52,91,.78)),
    url("./img/rajasthan.jpg") center/cover no-repeat;
  color: #fff; text-align: center; padding: 78px 0 66px;
}
.page-hero .eyebrow { color: var(--brand); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.15; letter-spacing: -1px; margin-top: 6px; }
.page-hero h1 .accent { color: var(--brand); }
.crumb { margin-top: 14px; font-size: 14px; color: #cdd9e6; display: flex; gap: 10px; justify-content: center; }
.crumb a { color: var(--brand); }

.about-intro { padding: 78px 0; }
.about-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-copy p { margin-top: 14px; color: var(--muted); }
.about-copy .section-title { margin-top: 6px; }

.about-media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-media img { border-radius: 18px; box-shadow: var(--shadow); object-fit: cover; width: 100%; }
.am-1 { grid-column: 1 / -1; height: 240px; }
.am-2, .am-3 { height: 170px; }
.am-stat {
  position: absolute; right: -14px; bottom: -22px;
  background: var(--brand); color: #fff; border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow-lg); line-height: 1.25;
}
.am-stat b { display: block; font-size: 26px; }
.am-stat span { font-size: 12px; opacity: .95; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow); }
.stat b { display: block; font-size: 32px; color: var(--brand); letter-spacing: -1px; }
.stat span { font-size: 14px; color: var(--muted); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.value { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #ffd6c8; }
.v-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 20px; }
.value h3 { margin: 16px 0 8px; color: var(--navy); font-size: 18px; }
.value p { color: var(--muted); font-size: 14.5px; }

.pd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.pd { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: block; }
.pd img { height: 250px; width: 100%; object-fit: cover; transition: transform .5s; }
.pd:hover img { transform: scale(1.07); }
.pd::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,39,69,.85), rgba(13,39,69,0) 58%); }
.pd-body { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff; }
.pd-body h3 { font-size: 18px; font-weight: 600; }
.pd-body span { display: inline-block; margin-top: 6px; font-size: 14px; font-weight: 600; color: var(--brand); }

.about-cta { background: var(--navy-deep); color: #fff; text-align: center; padding: 66px 0; }
.about-cta h2 { font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.6px; }
.about-cta p { color: #cdd9e6; margin-top: 10px; }

@media (max-width: 980px) {
  .about-split { grid-template-columns: 1fr; gap: 46px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .pd-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-intro { padding: 52px 0; }
  .value-grid, .pd-grid { grid-template-columns: 1fr; }
  .am-stat { right: 8px; bottom: -18px; }
}

/* Our Packages page grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1000px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Fleet page grid */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1000px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fleet-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Contact page */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; }
.contact-box {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.contact-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-ico {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,107,64,.12); color: var(--brand); font-size: 22px; margin-bottom: 14px;
}
.contact-box h3 { color: var(--navy); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.contact-box p { font-size: 14px; color: var(--muted); word-break: break-word; }
.map-frame {
  margin-top: 18px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 1000px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-info-grid { grid-template-columns: 1fr; } .map-frame { height: 300px; } }

/* Enquiry modal */
.emodal-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(15,23,42,.6); backdrop-filter: blur(4px);
  padding: 24px; overflow-y: auto;
}
.emodal-overlay.open { display: flex; align-items: center; justify-content: center; }
.emodal {
  width: 100%; max-width: 520px; background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35); animation: emodalIn .3s ease; position: relative;
}
@keyframes emodalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.emodal-head {
  background: linear-gradient(120deg, var(--navy), #1e293b 55%, var(--brand));
  color: #fff; padding: 22px 26px;
}
.emodal-head h3 { font-size: 21px; font-weight: 700; margin-bottom: 4px; }
.emodal-head p { font-size: 13.5px; opacity: .85; }
.emodal-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(255,255,255,.18); color: #fff; font-size: 18px; line-height: 1;
  transition: background .2s ease;
}
.emodal-close:hover { background: rgba(255,255,255,.35); }
.emodal-body { padding: 22px 26px 26px; }
.emodal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.emodal .field { margin-bottom: 14px; }
.emodal label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.emodal input, .emodal select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 14px; color: var(--navy); background: #fff; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.emodal input:focus, .emodal select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,107,64,.15); }
.emodal .emodal-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
@media (max-width: 560px) { .emodal-row { grid-template-columns: 1fr; } .emodal-body { padding: 18px 18px 22px; } .emodal-head { padding: 18px 20px; } }

/* ---------- Inline SVG icon system ---------- */
svg.i { width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -0.18em; flex: none; }
.topbar svg.i { width: 15px; height: 15px; opacity: .9; }
.header .btn svg.i, .btn svg.i { width: 18px; height: 18px; vertical-align: -0.22em; margin-right: 2px; }
.pkg-days svg.i, .pkg-loc svg.i { width: 15px; height: 15px; color: var(--brand); }
.offer-tag svg.i { width: 15px; height: 15px; }
.footer li svg.i, .footer a svg.i { width: 15px; height: 15px; color: var(--brand); margin-right: 6px; }
.contact-ico svg.i { width: 24px; height: 24px; }
.socials a svg.i { width: 18px; height: 18px; }
.socials a { color: #fff; }

/* mobile: hide email/address group in topbar */
@media (max-width: 780px) {
  .topbar .topbar-group:first-child { display: none; }
  .topbar .container { justify-content: center; }
}
