/* ================================================================
   HAQ TRAVELS — design system v3 "cinematic OTA"
   White canvas · emerald brand · amber CTA · photography-first
   Display: Bricolage Grotesque · Accent italic: Fraunces · Body: Instrument Sans
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #0E5A47;
  --brand-dark: #0A3F33;
  --brand-deepest: #07291F;
  --brand-tint: #EAF3F0;
  --cta: #F0A32F;
  --cta-dark: #D98C14;
  --star: #F5A623;
  --whatsapp: #1FAF55;
  --call: #2563EB;
  --bg: #FFFFFF;
  --bg-alt: #F5F7F6;
  --line: #E3E9E6;
  --ink: #17211D;
  --muted: #5D6A64;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(10, 40, 32, .08);
  --shadow-md: 0 6px 24px rgba(10, 40, 32, .10);
  --shadow-lg: 0 20px 50px rgba(10, 40, 32, .18);
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', 'Segoe UI', sans-serif;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; }
.accent-i { font-family: var(--font-accent); font-style: italic; font-weight: 500; letter-spacing: 0; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--ink); margin: 8px 0 10px; }
.section-sub { color: var(--muted); max-width: 640px; font-size: 1.02rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .96rem; border-radius: 10px;
  padding: 14px 26px; border: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cta { background: var(--cta); color: #26200E; box-shadow: 0 3px 12px rgba(240,163,47,.35); }
.btn-cta:hover { background: var(--cta-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(240,163,47,.45); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-white-o { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-white-o:hover { background: rgba(255,255,255,.22); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #179145; transform: translateY(-1px); }
.btn-ghost { background: var(--brand-tint); color: var(--brand); }
.btn-ghost:hover { background: #DCEBE5; }
.btn-block { width: 100%; }

/* ---------- top bar ---------- */
.topbar { background: var(--brand-deepest); color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 600; position: relative; z-index: 91; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 7px; padding-bottom: 7px; }
.topbar .t-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .t-item svg { width: 14px; height: 14px; fill: var(--cta); }
.topbar a:hover { color: #fff; }
.topbar .t-left { display: flex; gap: 22px; }
@media (max-width: 720px) { .topbar .hide-m { display: none; } }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 90; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 14px; padding-bottom: 14px; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -0.02em; }
.logo em { font-style: normal; color: var(--cta-dark); }
.nav { display: flex; gap: 28px; font-weight: 600; font-size: .94rem; color: var(--muted); }
.nav a:hover { color: var(--brand); }
.header-ctas { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--call); color: #fff;
  font-weight: 700; font-size: .92rem;
  padding: 11px 16px; border-radius: 10px;
  box-shadow: 0 3px 12px rgba(37, 99, 235, .35);
  transition: background .14s ease, transform .14s ease, box-shadow .14s ease;
}
.header-phone:hover {
  background: #1D4ED8; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, .45);
}
.header-phone svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.header-phone .hp-label { display: none; }
@media (max-width: 980px) { .nav { display: none; } }
@media (max-width: 640px) {
  .header-phone { padding: 11px 14px; }
  .header-phone .hp-num { display: none; }
  .header-phone .hp-label { display: inline; }
}

/* ================================================================
   HOME HERO — cinematic, layered, lead-first
================================================================ */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 72%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 620px at 16% 74%, rgba(5,22,17,.6), transparent 68%),
    linear-gradient(90deg, rgba(5,22,17,.88) 0%, rgba(5,22,17,.55) 48%, rgba(5,22,17,.35) 100%),
    linear-gradient(to top, rgba(5,22,17,.7) 0%, transparent 45%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: var(--grain); opacity: .05; pointer-events: none; mix-blend-mode: overlay;
}
.hero-inner { width: 100%; padding: 120px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);
  gap: 40px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px);
  border-radius: 100px; padding: 8px 18px; font-size: .84rem; font-weight: 600; margin-bottom: 26px;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 12px var(--cta); animation: pulse 2s ease infinite; }
@keyframes pulse { 50% { opacity: .4; } }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 800; color: #fff;
  line-height: .98; letter-spacing: -0.03em; max-width: 640px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .accent-i { color: var(--cta); font-size: .94em; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.hero-sub { margin: 22px 0 0; color: rgba(255,255,255,.9); font-size: 1.08rem; max-width: 520px; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.hero-sub b { color: #fff; }

/* Discover form — right column */
.discover {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 24px 22px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.35);
  position: relative;
}
.discover-head { margin-bottom: 14px; }
.discover-head h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -.02em;
  text-shadow: none;
  line-height: 1.2;
}
.discover-head p {
  margin-top: 4px;
  font-size: .86rem;
  color: var(--muted);
  font-weight: 500;
}
.discover-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: end;
}
.discover-form .field label { color: var(--ink); }
.discover-form .field input,
.discover-form .field select {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink);
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 500;
}
.discover-form .hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.discover-submit { display: flex; align-items: flex-end; margin-top: 4px; }
.discover-submit .btn {
  width: 100%;
  white-space: nowrap;
  min-height: 48px;
  padding: 12px 20px;
  font-size: .95rem;
}
.discover-done {
  text-align: center;
  padding: 18px 8px 8px;
}
.discover-done b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.discover-done p { color: var(--muted); margin-bottom: 14px; font-size: .92rem; }

/* hero footer strip: stats */
.hero-strip { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.hstat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 10px 14px; text-align: left;
}
.hstat b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; line-height: 1.2; }
.hstat small { font-size: .7rem; color: rgba(255,255,255,.75); font-weight: 600; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { order: 2; }
  .discover { order: 1; max-width: 520px; }
  .hero { align-items: flex-end; min-height: auto; }
  .hero-inner { padding: 110px 0 44px; }
}
@media (max-width: 560px) {
  .discover { padding: 18px 14px 14px; border-radius: 16px; max-width: none; }
  .discover-head h2 { font-size: 1.15rem; }
  .hero-stats .hstat:nth-child(n+3) { display: none; }
}

/* marquee ribbon */
.marquee { background: var(--brand-deepest); border-top: 1px solid rgba(240,163,47,.35); border-bottom: 1px solid rgba(240,163,47,.2); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 600; font-size: .86rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.85); white-space: nowrap; padding-right: 18px;
}
.marquee span i { font-style: normal; color: var(--cta); padding-right: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .hero-media img { animation: none; } }

/* ---------- finder ---------- */
.finder-zone { position: relative; padding: 70px 0 8px; }
.finder-zone .fz-head { text-align: center; margin-bottom: 28px; }
.finder {
  max-width: 860px; margin: 0 auto; background: #fff;
  border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.finder-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 26px; background: var(--brand); color: #fff; }
.finder-top .ft-title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.02rem; font-family: var(--font-display); }
.finder-top .ft-title svg { width: 19px; height: 19px; fill: var(--cta); }
.finder-top .ft-step { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .1em; }
.finder-progress { height: 4px; background: var(--line); }
.finder-progress .bar { height: 100%; width: 20%; background: var(--cta); transition: width .35s ease; }
.finder-body { padding: 28px 30px 32px; min-height: 320px; }
.q-title { font-family: var(--font-display); font-size: 1.42rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; display: flex; align-items: center; gap: 12px; }
.q-title .q-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-tint); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.q-title .q-ico svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; }
.q-hint { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }

.opt-grid { display: grid; gap: 10px; }
.opt-grid.months { grid-template-columns: repeat(4, 1fr); }
.opt-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.opt-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) {
  .opt-grid.months { grid-template-columns: repeat(3, 1fr); }
  .finder-body { padding: 22px 18px 26px; }
}
.opt {
  border: 1.5px solid var(--line); background: #fff;
  border-radius: 10px; padding: 13px 10px; font-weight: 600; font-size: .92rem;
  color: var(--ink); text-align: center; transition: all .14s ease;
}
.opt small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.opt:hover { border-color: var(--brand); background: var(--brand-tint); }
.opt.selected { border-color: var(--brand); background: var(--brand); color: #fff; box-shadow: 0 4px 14px rgba(14,90,71,.28); }
.opt.selected small { color: rgba(255,255,255,.8); }
.opt.special { border-style: dashed; border-color: var(--cta-dark); color: var(--cta-dark); }
.opt.special.selected { border-style: solid; background: var(--cta); border-color: var(--cta); color: #26200E; }

.finder-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.link-back { background: none; border: none; color: var(--muted); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.link-back:hover { color: var(--brand); }
.finder-note { font-size: .78rem; color: var(--muted); }

/* ---------- form fields (shared: finder, modal, sidebar, contact) ---------- */
.contact-fields { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.contact-fields .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 15px; font-size: 1rem; font-family: inherit; background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,90,71,.12); }
.field input.error, .field select.error { border-color: #C4554D; background: #FDF6F5; }
.field .err-msg { display: none; color: #C4554D; font-size: .76rem; font-weight: 600; margin-top: 4px; }
.field.show-err .err-msg { display: block; }
@media (max-width: 560px) { .contact-fields { grid-template-columns: 1fr; } }

.summary-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.summary-chips .chip { background: var(--brand-tint); color: var(--brand-dark); font-size: .78rem; font-weight: 700; border-radius: 100px; padding: 6px 13px; }

/* results */
.results-head { text-align: center; margin-bottom: 22px; }
.results-head .rh-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-tint); color: var(--brand); font-weight: 700; font-size: .82rem; border-radius: 100px; padding: 7px 16px; margin-bottom: 12px; }
.results-head h3 { font-size: 1.55rem; color: var(--ink); font-family: var(--font-display); }
.results-head p { color: var(--muted); font-size: .92rem; margin-top: 6px; }
.result-list { display: grid; gap: 12px; }
.result-item {
  display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--line);
  border-radius: 14px; padding: 12px 16px 12px 12px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.result-item:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.result-item .r-img { width: 82px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.result-item .r-info { flex: 1; min-width: 0; }
.result-item .r-stars { color: var(--star); font-size: .78rem; letter-spacing: 1px; }
.result-item .r-name { font-weight: 700; color: var(--ink); font-size: .98rem; display: block; }
.result-item .r-meta { font-size: .8rem; color: var(--muted); margin-top: 1px; display: block; }
.result-item .r-price { text-align: right; flex-shrink: 0; }
.result-item .r-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--brand-dark); display: block; line-height: 1.1; }
.result-item .r-price small { font-size: .72rem; color: var(--muted); font-weight: 600; }
.results-ctas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
@media (max-width: 560px) { .result-item .r-img { width: 64px; height: 56px; } }

/* ---------- trust bar ---------- */
.trustbar { padding: 46px 0 10px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ti-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item .ti-ico svg { width: 22px; height: 22px; fill: var(--brand); }
.trust-item b { display: block; font-size: .95rem; color: var(--ink); line-height: 1.3; }
.trust-item small { color: var(--muted); font-size: .8rem; font-weight: 500; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- packages grid ---------- */
.packages { padding: 72px 0 80px; }
.pkg-intro { text-align: center; max-width: none; margin: 0 0 48px; }
.pkg-intro .section-sub { margin: 12px auto 0; max-width: 52rem; }
.pkg-browse { margin-bottom: 56px; }
.pkg-browse:last-of-type { margin-bottom: 0; }
.pkg-browse-head { text-align: center; max-width: none; margin: 0 0 36px; }
.pkg-browse-head .section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.pkg-browse-head .section-sub { margin: 12px auto 0; max-width: 52rem; }
.pkg-group { margin-bottom: 42px; }
.pkg-group:last-child { margin-bottom: 0; }
.pkg-group-head { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); text-align: center; }
.pkg-group-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -.02em;
}
.pkg-group-head p {
  margin: 8px auto 0;
  font-size: .98rem;
  color: var(--muted);
  max-width: 52rem;
  line-height: 1.55;
}
.pkg-group-empty { color: var(--muted); font-size: .95rem; padding: 12px 0; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: block; }
.pkg-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pkg-card:hover .pkg-photo img { transform: scale(1.05); }
.pkg-badge {
  position: absolute; top: 12px; left: 12px; background: var(--cta); color: #26200E;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 7px; padding: 5px 11px; box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.pkg-nights {
  position: absolute; bottom: 12px; left: 12px; background: rgba(7,41,31,.78); color: #fff;
  backdrop-filter: blur(4px); font-size: .74rem; font-weight: 700; border-radius: 7px; padding: 5px 11px;
}
.pkg-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pkg-tier-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.stars { color: var(--star); font-size: .85rem; letter-spacing: 2px; }
.pkg-month { font-size: .72rem; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: .08em; background: var(--brand-tint); border-radius: 100px; padding: 4px 12px; }
.pkg-name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.pkg-name a:hover { color: var(--brand); }
.pkg-hotels { display: grid; gap: 6px; margin-bottom: 14px; }
.pkg-hotels .h { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: var(--muted); }
.pkg-hotels .h svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 2; margin-top: 3px; flex-shrink: 0; }
.pkg-hotels .h b { color: var(--ink); font-weight: 600; }
.pkg-inc { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pkg-inc span { font-size: .72rem; font-weight: 600; color: var(--brand-dark); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 100px; padding: 4px 11px; }
.pkg-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.pkg-price small { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); }
.pkg-price .amt { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--brand-dark); line-height: 1.1; }
.pkg-price .amt em { font-style: normal; font-size: .8rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.pkg-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn { width: 42px; height: 42px; border-radius: 10px; border: none; display: inline-flex; align-items: center; justify-content: center; transition: transform .14s ease, background .14s ease; }
.icon-btn:hover { transform: translateY(-1px); }
.icon-btn svg { width: 19px; height: 19px; fill: #fff; }
.icon-btn.wa { background: var(--whatsapp); border-radius: 50%; }
.icon-btn.wa:hover { background: #179145; }
.icon-btn.wa svg { width: 28px; height: 28px; fill: none; }
.icon-btn.call { background: var(--call); }
.icon-btn.call:hover { background: #1D4ED8; }
.btn-quote { padding: 11px 18px; font-size: .86rem; }
.pkg-cta-row { text-align: center; margin-top: 36px; }

/* ---------- inclusions band ---------- */
.included { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 66px 0; }
.inc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 980px) { .inc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .inc-grid { grid-template-columns: repeat(2, 1fr); } }
.inc-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; text-align: center; padding: 22px 10px; transition: box-shadow .15s ease, transform .15s ease; }
.inc-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.inc-item svg { width: 26px; height: 26px; stroke: var(--brand); fill: none; stroke-width: 1.7; margin: 0 auto 10px; }
.inc-item span { font-size: .82rem; font-weight: 600; color: var(--ink); display: block; line-height: 1.35; }

/* ---------- how it works ---------- */
.how { padding: 78px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; counter-reset: step; }
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; } }
.how-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px; box-shadow: var(--shadow-sm); }
.how-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -17px; left: 22px;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  background: var(--brand); color: #fff; width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(14,90,71,.35);
}
.how-step h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 8px; }
.how-step p { color: var(--muted); font-size: .93rem; }

/* ---------- ramadan banner ---------- */
.ramadan { padding: 0 0 80px; }
.ram-card { position: relative; overflow: hidden; border-radius: 20px; color: #fff; min-height: 380px; display: flex; align-items: center; }
.ram-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.ram-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(5,25,19,.9) 0%, rgba(5,25,19,.6) 55%, rgba(5,25,19,.25) 100%); }
.ram-inner { position: relative; z-index: 2; padding: 54px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: center; width: 100%; }
.ram-inner .eyebrow { color: var(--cta); }
.ram-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: #fff; margin: 8px 0 12px; }
.ram-inner p { color: rgba(255,255,255,.88); font-size: .98rem; max-width: 480px; }
.ram-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.ram-price { text-align: right; }
.ram-price small { color: rgba(255,255,255,.75); font-weight: 600; font-size: .85rem; display: block; }
.ram-price .amt { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--cta); line-height: 1.05; }
@media (max-width: 820px) {
  .ram-inner { grid-template-columns: 1fr; padding: 36px 26px; }
  .ram-right { align-items: flex-start; }
  .ram-price { text-align: left; }
}

/* ---------- reviews ---------- */
.reviews { padding: 0 0 80px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.rev-stars { color: var(--star); letter-spacing: 3px; margin-bottom: 12px; font-size: .9rem; }
.rev-text { font-size: .95rem; color: var(--ink); margin-bottom: 16px; }
.rev-who { display: flex; align-items: center; gap: 11px; }
.rev-who .avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: var(--brand); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.rev-who b { display: block; font-size: .9rem; color: var(--ink); }
.rev-who small { color: var(--muted); font-size: .78rem; font-weight: 500; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 22px; font-weight: 700; font-size: .9rem; color: var(--ink); box-shadow: var(--shadow-sm); margin-top: 26px; }
.google-badge .g { font-weight: 800; font-size: 1.05rem; }
.google-badge .g span:nth-child(1){color:#4285F4}.google-badge .g span:nth-child(2){color:#EA4335}.google-badge .g span:nth-child(3){color:#FBBC05}.google-badge .g span:nth-child(4){color:#4285F4}.google-badge .g span:nth-child(5){color:#34A853}.google-badge .g span:nth-child(6){color:#EA4335}

/* ---------- FAQ ---------- */
.faq { padding: 0 0 80px; }
.faq-list { max-width: 780px; margin: 32px auto 0; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; font-weight: 700; color: var(--ink); font-size: .98rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-display); font-size: 1.4rem; color: var(--brand); transition: transform .2s ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--muted); font-size: .93rem; }

/* ---------- SEO block ---------- */
.seo-block { background: var(--bg-alt); padding: 60px 0; border-top: 1px solid var(--line); }
.seo-cols { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; margin-top: 22px; }
@media (max-width: 860px) { .seo-cols { grid-template-columns: 1fr; } }
.seo-block h2 { font-size: 1.55rem; color: var(--ink); }
.seo-block h3 { font-size: 1.05rem; color: var(--ink); margin: 22px 0 8px; }
.seo-block p { color: var(--muted); font-size: .92rem; margin-bottom: 12px; }
.seo-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-content: start; }
.seo-links a { font-size: .86rem; font-weight: 600; color: var(--brand-dark); background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; transition: all .14s ease; }
.seo-links a:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }

/* ---------- final CTA ---------- */
.final-cta { position: relative; color: #fff; text-align: center; padding: 88px 0; overflow: hidden; background: var(--brand-deepest); }
.final-cta img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; opacity: .28; }
.final-cta .container { position: relative; }
.final-cta h2 { font-size: clamp(2rem, 4.4vw, 3rem); color: #fff; }
.final-cta h2 .accent-i { color: var(--cta); }
.final-cta p { color: rgba(255,255,255,.85); margin: 16px auto 30px; max-width: 540px; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--brand-deepest); color: rgba(255,255,255,.68); padding: 54px 0 110px; font-size: .88rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 14px; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .78rem; color: rgba(255,255,255,.45); }

/* ---------- sticky mobile bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(10,40,32,.14);
}
.sticky-bar .btn { padding: 12px 10px; font-size: .82rem; border-radius: 10px; }
@media (max-width: 860px) { .sticky-bar { display: grid; } body { padding-bottom: 74px; } }

/* ---------- floating whatsapp ---------- */
.float-wa { position: fixed; bottom: 26px; right: 26px; z-index: 95; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(31,175,85,.45); transition: transform .18s ease; }
.float-wa:hover { transform: scale(1.07); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 860px) { .float-wa { display: none; } }

/* ================================================================
   QUOTE MODAL (package-specific — “Get Quote”)
================================================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 120; background: rgba(7,32,25,.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  width: 100%; max-width: 520px; max-height: 92vh; overflow: auto; position: relative;
  animation: modalin .25s ease;
}
@keyframes modalin { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.2); color: #fff; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.modal-close:hover { background: rgba(255,255,255,.35); }
.modal-hero { position: relative; height: 130px; overflow: hidden; border-radius: 18px 18px 0 0; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,32,25,.85), rgba(7,32,25,.2)); }
.modal-hero .mh-txt { position: absolute; left: 20px; right: 20px; bottom: 14px; z-index: 1; color: #fff; }
.modal-hero .mh-txt .stars { font-size: .8rem; }
.modal-hero .mh-txt b { font-family: var(--font-display); font-size: 1.15rem; display: block; }
.modal-hero .mh-txt small { font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 600; }
.modal-body { padding: 22px 24px 26px; }
.modal-body .m-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.modal-body .m-price-row .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--brand-dark); }
.modal-body .m-price-row small { color: var(--muted); font-weight: 600; font-size: .8rem; }
.modal-note { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }
.modal-success { text-align: center; padding: 30px 10px 10px; }
.modal-success .ok { width: 62px; height: 62px; border-radius: 50%; background: var(--brand-tint); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.modal-success .ok svg { width: 30px; height: 30px; stroke: var(--brand); fill: none; stroke-width: 2.5; }
.modal-success h3 { font-size: 1.35rem; margin-bottom: 8px; }
.modal-success p { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }

/* ================================================================
   PACKAGE DETAIL PAGE
================================================================ */
.breadcrumb { padding: 16px 0 0; font-size: .82rem; color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { margin: 0 7px; color: var(--line); }

.detail-hero { padding: 18px 0 0; }
.dh-gallery { display: grid; grid-template-columns: 2.2fr 1fr; gap: 12px; border-radius: 18px; overflow: hidden; }
.dh-gallery .g-main { position: relative; aspect-ratio: 16 / 8.5; min-width: 0; }
.dh-gallery .g-main img, .dh-gallery .g-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dh-gallery .g-side { display: grid; gap: 12px; grid-template-rows: 1fr 1fr; min-width: 0; }
.dh-gallery .g-side > div { position: relative; overflow: hidden; }
.dh-badge { position: absolute; top: 14px; left: 14px; background: var(--cta); color: #26200E; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; border-radius: 7px; padding: 6px 12px; z-index: 2; }
@media (max-width: 720px) { .dh-gallery { grid-template-columns: 1fr; } .dh-gallery .g-side { display: none; } }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 30px 0 70px; align-items: start; }
@media (max-width: 980px) { .detail-layout { grid-template-columns: 1fr; } }

.d-main .d-title-row { margin-bottom: 6px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.d-main h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.d-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: .9rem; font-weight: 600; margin: 10px 0 26px; }
.d-meta span { display: inline-flex; align-items: center; gap: 7px; }
.d-meta svg { width: 15px; height: 15px; stroke: var(--brand); fill: none; stroke-width: 2; }

.d-section { margin-bottom: 34px; }
.d-section h2 { font-size: 1.35rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--brand-tint); }
.d-section p { color: var(--muted); font-size: .95rem; margin-bottom: 10px; }

.hotel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .hotel-cards { grid-template-columns: 1fr; } }
.hotel-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: #fff; }
.hotel-card .hc-city { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.hotel-card b { font-size: 1.02rem; display: block; margin-bottom: 4px; }
.hotel-card small { color: var(--muted); font-size: .84rem; display: flex; align-items: center; gap: 6px; }
.hotel-card small svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 2; flex-shrink: 0; }
.hotel-card .hc-nights { margin-top: 10px; display: inline-block; background: var(--brand-tint); color: var(--brand-dark); font-size: .76rem; font-weight: 700; border-radius: 100px; padding: 4px 12px; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
.check-grid .c { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink); font-weight: 500; }
.check-grid .c svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 3px; }
.check-grid .c.no svg { stroke: #C4554D; }
.check-grid .c.no { color: var(--muted); }

.itin { display: grid; gap: 10px; }
.itin-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden; }
.itin-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 15px 18px; font-weight: 700; font-size: .95rem; }
.itin-item summary::-webkit-details-marker { display: none; }
.itin-item summary .day { background: var(--brand-tint); color: var(--brand-dark); font-size: .74rem; font-weight: 800; border-radius: 8px; padding: 5px 11px; white-space: nowrap; }
.itin-item summary::after { content: '+'; margin-left: auto; font-family: var(--font-display); font-size: 1.3rem; color: var(--brand); transition: transform .2s ease; }
.itin-item[open] summary::after { transform: rotate(45deg); }
.itin-item .itin-body { padding: 0 18px 16px 18px; color: var(--muted); font-size: .9rem; }

/* sidebar */
.d-sidebar { position: sticky; top: 90px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); overflow: hidden; }
.quote-card .qc-head { background: var(--brand); color: #fff; padding: 18px 22px; }
.quote-card .qc-head small { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.8); display: block; }
.quote-card .qc-head .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1.15; }
.quote-card .qc-head .amt em { font-style: normal; font-size: .85rem; font-family: var(--font-body); font-weight: 600; color: rgba(255,255,255,.8); }
.quote-card .qc-head .dep { display: inline-block; margin-top: 8px; background: rgba(240,163,47,.2); border: 1px solid rgba(240,163,47,.5); color: var(--cta); font-size: .76rem; font-weight: 700; border-radius: 100px; padding: 4px 12px; }
.quote-card .qc-body { padding: 20px 22px 22px; }
.quote-card .qc-body .fields { display: grid; gap: 12px; margin-bottom: 14px; }
.qc-usps { display: grid; gap: 8px; margin: 16px 0 4px; }
.qc-usps .u { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--muted); font-weight: 600; }
.qc-usps .u svg { width: 15px; height: 15px; stroke: var(--brand); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.qc-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.qc-alt .btn { padding: 11px 10px; font-size: .84rem; }
.d-related { padding: 0 0 80px; }

/* detail sticky mobile price bar */
.detail-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(10,40,32,.14);
}
.detail-bar .db-price small { display: block; font-size: .68rem; color: var(--muted); font-weight: 700; }
.detail-bar .db-price b { font-family: var(--font-display); font-size: 1.25rem; color: var(--brand-dark); }
.detail-bar .db-actions { display: flex; gap: 8px; }
@media (max-width: 860px) { .detail-bar { display: flex; } body.detail-page { padding-bottom: 78px; } body.detail-page .sticky-bar { display: none; } }

/* ---------- contact page ---------- */
.contact-wrap { padding: 60px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; margin-top: 30px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { display: grid; gap: 14px; }
.ci { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: #fff; }
.ci .ti-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--brand-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci .ti-ico svg { width: 20px; height: 20px; fill: var(--brand); }
.ci b { display: block; font-size: .95rem; }
.ci small, .ci a { color: var(--muted); font-size: .86rem; font-weight: 500; }
.ci a:hover { color: var(--brand); }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 28px; }

/* ---------- reveal ---------- */
body.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
body.js .reveal.in { opacity: 1; transform: none; }
body.js .reveal.d1 { transition-delay: .07s; } body.js .reveal.d2 { transition-delay: .14s; } body.js .reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  body.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
