/* =====================================================================
   Exotic Holiday — Travel Agency Website
   Design System & Global Styles
   ===================================================================== */

:root {
  /* Brand palette */
  --brand: #ff6b35;          /* warm sunset orange */
  --brand-dark: #e8531c;
  --brand-2: #0a9396;        /* teal ocean */
  --brand-2-dark: #077b7e;
  --ink: #10233b;            /* deep navy text */
  --ink-soft: #46586d;
  --muted: #6b7a8d;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-soft-2: #eef4f9;
  --line: #e3ebf2;
  --gold: #ffb703;
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(16, 35, 59, .06);
  --shadow: 0 10px 30px rgba(16, 35, 59, .10);
  --shadow-lg: 0 24px 60px rgba(16, 35, 59, .18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --container: 1180px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Montserrat", "Poppins", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

/* Prevent CSS grid/flex blow-out (children overflowing their track on small screens) */
.grid > *, .split > *, .contact-grid > *, .pkg-detail > *, .footer__grid > *,
.features > *, .steps > *, .testi-grid > *, .incl-grid > *, .itin-day > * { min-width: 0; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; font-size: .74rem; color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.02rem; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .95rem; padding: 13px 26px; border-radius: 50px;
  cursor: pointer; border: 2px solid transparent; transition: .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(255,107,53,.35); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,107,53,.45); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #06172b; transform: translateY(-2px); }

/* =====================================================================
   Header / Navigation
   ===================================================================== */
.topbar {
  background: var(--ink); color: #cdd8e4; font-size: .84rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #cdd8e4; transition: .2s; }
.topbar a:hover { color: #fff; }
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a:hover { color: var(--brand); }

.site-header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__menu > li > a {
  display: block; padding: 10px 16px; font-weight: 500; font-size: .96rem;
  color: var(--ink); border-radius: 8px; transition: .2s; position: relative;
}
.nav__menu > li > a:hover, .nav__menu > li > a.active { color: var(--brand); }
.nav__menu > li > a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--brand); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Logo ---------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 50px; width: auto; display: block; }
.footer .logo__img { height: 42px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.42rem; letter-spacing: .3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo__tag { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--brand-2); font-weight: 600; margin-top: 3px; }

/* =====================================================================
   Hero — scenic image banner slider
   ===================================================================== */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; transform: scale(1.05);
}
.hero__slide.active { opacity: 1; animation: heroZoom 7s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,35,59,.82) 0%, rgba(10,35,59,.35) 45%, rgba(10,35,59,.25) 100%);
}
.hero__inner { max-width: 760px; padding: 0 0 66px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.06rem; margin: 16px 0 28px; color: #eef3f8; max-width: 560px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* slider dots */
.hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero__dots button { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: .25s; }
.hero__dots button.active { background: var(--gold); border-color: var(--gold); width: 26px; border-radius: 6px; }

/* Search / quick enquiry bar */
.searchbar {
  position: relative; margin-top: -46px; z-index: 5;
}
.searchbar__box {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: end;
}
.searchbar__box .btn { height: 46px; }
.field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.field label { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: .95rem; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink); background: var(--bg-soft); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,53,.12); }

/* =====================================================================
   Feature strip
   ===================================================================== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  text-align: center; padding: 32px 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature__icon {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 20px;
  display: grid; place-items: center; color: #fff; font-size: 1.8rem; transition: .3s;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  box-shadow: 0 8px 18px rgba(255,107,53,.3);
}
.feature:hover .feature__icon { transform: translateY(-3px) scale(1.05); }
.feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: .93rem; }

/* =====================================================================
   Cards — Destinations & Packages
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); transition: .35s; color: #fff;
  isolation: isolate;
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .6s; z-index: 0; }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,35,59,.88), rgba(10,35,59,.15) 60%, transparent); }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card:hover img { transform: scale(1.08); }
.dest-card__body { padding: 24px; width: 100%; position: relative; z-index: 2; }
.dest-card__body h3 { color: #fff; font-size: 1.5rem; }
.dest-card__body p { color: #e2eaf2; font-size: .9rem; margin-top: 4px; }
.dest-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 600; font-size: .9rem; color: var(--gold); }

/* Package card */
.pkg-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: .3s; display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.pkg-card:hover .pkg-card__media img { transform: scale(1.07); }
.pkg-card__badge { position: absolute; top: 14px; left: 14px; background: var(--brand); color: #fff; font-size: .74rem; font-weight: 600; padding: 6px 12px; border-radius: 50px; }
.pkg-card__badge--sale { background: #708238; letter-spacing: .02em; }
.pkg-card__price .orig { text-decoration: line-through; color: var(--muted); font-size: .82rem; font-weight: 400; margin-right: 6px; }
.booking-card__price .orig { text-decoration: line-through; color: var(--muted); font-size: 1rem; font-weight: 400; }
.pkg-card__fav { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--brand); }
.pkg-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__meta { display: flex; gap: 14px; font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.pkg-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.pkg-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pkg-card__desc { color: var(--ink-soft); font-size: .9rem; flex: 1; }
.pkg-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.pkg-card__price .from { font-size: .74rem; color: var(--muted); display: block; }
.pkg-card__price .amount { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--brand); }
.pkg-card__price .amount small { font-size: .78rem; color: var(--muted); font-weight: 400; }
.rating { color: var(--gold); font-size: .9rem; }

/* =====================================================================
   About / split sections
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__media .badge-float {
  position: absolute; bottom: -22px; right: -18px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.split__media .badge-float .big { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--brand); }
.split__media .badge-float .sm { font-size: .82rem; color: var(--ink-soft); }
.split h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 16px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.checklist li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.checklist li::before { content: "✓"; width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(10,147,150,.12); color: var(--brand-2); display: grid; place-items: center; font-weight: 700; font-size: .8rem; }

/* =====================================================================
   Steps / How it works
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step__num {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--gold)); box-shadow: 0 10px 22px rgba(255,107,53,.35);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); position: relative;
}
.testi__quote { font-size: 3rem; font-family: var(--font-head); color: var(--brand); opacity: .18; position: absolute; top: 12px; right: 22px; }
.testi p { color: var(--ink-soft); font-size: .96rem; font-style: italic; }
.testi__person { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testi__avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-soft-2); display: grid; place-items: center; font-weight: 700; color: var(--brand); font-family: var(--font-head); }
.testi__person strong { display: block; font-size: .96rem; }
.testi__person span { font-size: .82rem; color: var(--muted); }

/* =====================================================================
   CTA banner
   ===================================================================== */
.cta-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff; text-align: center;
  padding: 70px 30px; margin: 0 auto; isolation: isolate;
}
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(10,35,59,.9), rgba(232,83,28,.75)); }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; z-index: 2; }
.cta-banner p { color: #eef2f6; max-width: 560px; margin: 14px auto 26px; position: relative; z-index: 2; }
.cta-banner .hero__actions { position: relative; z-index: 2; }

/* =====================================================================
   Page hero (inner pages)
   ===================================================================== */
.page-hero { position: relative; color: #fff; padding: 92px 0; text-align: center; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,35,59,.88), rgba(10,35,59,.6)); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 12px; font-size: .9rem; color: #d5e0ea; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); margin-bottom: 18px; transition: .25s; }
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.info-card__icon { width: 52px; height: 52px; flex: none; border-radius: 14px; background: rgba(255,107,53,.12); color: var(--brand); display: grid; place-items: center; font-size: 1.3rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: .95rem; }
.info-card a:hover { color: var(--brand); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card .field { margin-bottom: 18px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: rgba(10,147,150,.1); color: var(--brand-2-dark); padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 500; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--ink); color: #b7c5d4; padding-top: 66px; }
.footer a { color: #b7c5d4; transition: .2s; }
.footer a:hover { color: var(--brand); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer .logo__name { font-size: 1.35rem; }
.footer__about p { margin: 18px 0; font-size: .92rem; line-height: 1.8; }
.footer h4 { color: #fff; font-family: var(--font); font-weight: 600; font-size: 1.05rem; margin-bottom: 20px; }
.footer__links li { margin-bottom: 11px; font-size: .93rem; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .93rem; align-items: flex-start; }
.footer__contact li i { color: var(--brand); margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--brand); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }

.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input { flex: 1; padding: 12px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-family: var(--font); }
.newsletter input::placeholder { color: #8ea0b3; }
.newsletter input:focus { outline: none; border-color: var(--brand); }
.newsletter button { border: 0; border-radius: 50px; padding: 0 20px; background: var(--brand); color: #fff; cursor: pointer; font-weight: 600; }
.newsletter button:hover { background: var(--brand-dark); }

/* Floating actions */
.float-actions { position: fixed; right: 20px; bottom: 22px; z-index: 950; display: flex; flex-direction: column; gap: 12px; }
.float-actions a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem; box-shadow: var(--shadow); transition: .25s; }
.float-actions a:hover { transform: scale(1.08); }
.fa-wa { background: #25d366; }
.fa-call { background: var(--brand); }
.to-top { position: fixed; left: 20px; bottom: 22px; z-index: 950; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: .3s; cursor: pointer; border: 0; }
.to-top.show { opacity: 1; pointer-events: auto; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   Package card actions (Book Now / Details)
   ===================================================================== */
/* Package filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 auto 44px; max-width: 900px; }
.filter-chip {
  padding: 9px 18px; border-radius: 50px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font); font-weight: 600; font-size: .88rem; color: var(--ink-soft);
  cursor: pointer; transition: .2s;
}
.filter-chip:hover { border-color: var(--brand); color: var(--brand); }
.filter-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(255,107,53,.3); }
.pkg-card.is-hidden { display: none; }
.filter-empty { text-align: center; color: var(--muted); padding: 30px 0; display: none; }

.pkg-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.btn--sm { padding: 10px 14px; font-size: .86rem; }
.btn--block { width: 100%; }

/* =====================================================================
   Package detail page
   ===================================================================== */
.pkg-detail { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.pkg-detail__main img.pkg-hero-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 26px; aspect-ratio: 16/9; object-fit: cover; }
.pkg-facts { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 26px; }
.pkg-fact { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 50px; padding: 9px 16px; font-size: .9rem; font-weight: 500; }
.pkg-fact i { color: var(--brand); }
.pkg-detail__main h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.pkg-detail__main p { color: var(--ink-soft); }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 8px; }
.incl-box h3 { font-size: 1.15rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.incl-list li { display: flex; gap: 11px; padding: 8px 0; font-size: .94rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.incl-list li:last-child { border-bottom: 0; }
.incl-list.yes li::before { content: "\f00c"; }
.incl-list.no li::before { content: "\f00d"; }
.incl-list li::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900; flex: none; width: 22px; height: 22px;
  border-radius: 50%; display: grid; place-items: center; font-size: .72rem;
}
.incl-list.yes li::before { background: rgba(10,147,150,.12); color: var(--brand-2); }
.incl-list.no li::before { background: rgba(232,83,28,.12); color: var(--brand-dark); }

.itinerary { margin-top: 8px; }
.itin-day { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.itin-day:last-child { border-bottom: 0; }
.itin-day__no { flex: none; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg,var(--brand),var(--gold)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.itin-day__no small { display: block; font-size: .58rem; font-weight: 500; letter-spacing: .1em; margin-top: -2px; }
.itin-day h4 { font-family: var(--font); font-size: 1.02rem; margin-bottom: 4px; }
.itin-day p { font-size: .92rem; }

/* Sticky booking card */
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; position: sticky; top: 96px; }
.booking-card__price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.booking-card__price .amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--brand); }
.booking-card__price .from { font-size: .8rem; color: var(--muted); }
.booking-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.booking-card .field { margin-bottom: 14px; }
.booking-card__note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.booking-card__call { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .9rem; }
.booking-card__call a { font-weight: 700; color: var(--brand); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .searchbar__box { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .pkg-detail { grid-template-columns: 1fr; gap: 30px; }
  .booking-card { position: static; }
}
@media (max-width: 860px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: #fff;
    flex-direction: column; align-items: stretch; padding: 90px 22px 30px; gap: 4px;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-lg);
    z-index: 899; overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu > li > a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__toggle { display: flex; z-index: 901; }
  .nav__cta .btn:not(.nav__toggle) { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid--3, .grid--4, .testi-grid, .features { grid-template-columns: 1fr 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .split__media .badge-float { right: 12px; }
  /* Hide the mini top contact bar on mobile for a cleaner header */
  .topbar { display: none; }
}
@media (max-width: 560px) {
  :root { --container: 100%; }
  .container { padding-inline: 18px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 36px; }
  .grid--3, .grid--4, .testi-grid, .features, .steps, .incl-grid { grid-template-columns: 1fr; }
  .searchbar__box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav { min-height: 66px; }
  .logo__img { height: 40px; }
  .logo__name { font-size: 1.2rem; }
  .hero { min-height: 74vh; }
  .hero__inner { padding-bottom: 52px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .hero p { font-size: .98rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .cta-banner { padding: 48px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { justify-content: center; text-align: center; }
  /* keep floating buttons from covering content edges */
  .float-actions a { width: 48px; height: 48px; font-size: 1.2rem; }
  .to-top { width: 42px; height: 42px; }
}
