/* =============================================================================
   البكري أوفرسيز — برنامج إسطنبول السياحي
   Landing page styles · RTL · Mobile-first
   ============================================================================= */

/* ---------------------------------------------------------------- 1. Tokens */
:root {
  /* palette */
  --navy: #0B3A67;
  --navy-900: #072844;
  --navy-700: #0E4A85;
  --blue: #1570EF;
  --blue-600: #0F5BC7;
  --sky: #00AEEF;
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --line: #E5E7EB;
  --wa: #25D366;
  --wa-dark: #1DAF52;

  /* tints derived from the palette (no gold / no yellow anywhere) */
  --blue-tint: #EFF6FF;
  --blue-tint-2: #E0EDFD;
  --navy-tint: #EEF3F9;
  --sky-tint: #E6F7FE;

  /* type */
  --font: 'Tajawal', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-latin: 'Outfit', 'Tajawal', system-ui, sans-serif;

  /* geometry */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --wrap: 1180px;

  /* elevation */
  --sh-xs: 0 1px 2px rgba(11, 58, 103, .06);
  --sh-sm: 0 1px 3px rgba(11, 58, 103, .07), 0 1px 2px rgba(11, 58, 103, .04);
  --sh: 0 4px 12px rgba(11, 58, 103, .07), 0 1px 3px rgba(11, 58, 103, .05);
  --sh-lg: 0 12px 32px rgba(11, 58, 103, .10), 0 2px 8px rgba(11, 58, 103, .05);
  --sh-xl: 0 24px 60px rgba(7, 40, 68, .18), 0 4px 14px rgba(7, 40, 68, .08);

  /* rhythm */
  --sp: clamp(56px, 8vw, 100px);
  --nav-h: 64px;
}

/* ------------------------------------------------------------ 2. Base reset */
*, *::before, *::after { box-sizing: border-box; }

/* لازم تسبق أي display في الملف علشان [hidden] تفضل شغالة */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.28; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
strong { font-weight: 800; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
}

/* Latin runs inside RTL text (hotel name, phone, codes) */
.ltr { direction: ltr; unicode-bidi: isolate; }
.nowrap { white-space: nowrap; }
.num { font-family: var(--font-latin); font-variant-numeric: tabular-nums; letter-spacing: 0; }

.skip-link {
  position: fixed;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------------- 3. Utilities */
.wrap {
  width: min(100% - 32px, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 32px, 820px); }

.section { padding-block: var(--sp); }
.section--alt { background: #fff; border-block: 1px solid var(--line); }

.shead { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.shead__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.shead__title { font-size: clamp(25px, 4.4vw, 40px); color: var(--navy); font-weight: 900; }
.shead__sub { margin-top: 12px; color: var(--muted); font-size: clamp(15px, 2vw, 17.5px); line-height: 1.8; }

.section__cta { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }

.linkbtn {
  background: none;
  border: 0;
  padding: 8px 4px;
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.linkbtn:hover { border-bottom-color: var(--blue); }

/* --------------------------------------------------------------- 4. Buttons */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa { --btn-bg: var(--wa); box-shadow: 0 6px 18px rgba(37, 211, 102, .28); }
.btn--wa:hover { --btn-bg: var(--wa-dark); box-shadow: 0 10px 24px rgba(37, 211, 102, .34); }
.btn--wa .ico { width: 1.35em; height: 1.35em; }

.btn--navy { --btn-bg: var(--navy); box-shadow: var(--sh); }
.btn--navy:hover { --btn-bg: var(--navy-700); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .45);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .08);
}
.btn--outline:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }

.btn--ghost {
  --btn-bg: #fff;
  --btn-fg: var(--navy);
  border-color: var(--line);
  box-shadow: var(--sh-xs);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--sm { padding: 9px 17px; font-size: 14.5px; }
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }

/* ------------------------------------------------------------------ 5. Nav  */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11, 58, 103, .06); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--nav-h);
}

/* brand lockup */
.brand { display: flex; align-items: center; flex: none; }
.brand__logo { height: 30px; width: auto; }
.brand__logo--light { height: 38px; }

.nav__links { display: none; gap: 4px; margin-inline-start: auto; }
.nav__links a {
  padding: 8px 11px;
  border-radius: var(--r-xs);
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  transition: color .15s ease, background-color .15s ease;
}
.nav__links a:hover { color: var(--blue); background: var(--blue-tint); }
.nav__links a.is-active { color: var(--navy); background: var(--navy-tint); font-weight: 800; }

.nav__cta { display: none; gap: 8px; flex: none; }

.nav__burger {
  margin-inline-start: auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px 18px;
  display: grid;
  gap: 2px;
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.nav__mobile a {
  padding: 13px 12px;
  border-radius: var(--r-sm);
  font-weight: 700;
  color: #1F2937;
  border-bottom: 1px solid #F1F5F9;
}
.nav__mobile a:last-of-type { border-bottom: 0; }
.nav__mobile-wa {
  margin-top: 10px;
  background: var(--wa);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 100px !important;
  border-bottom: 0 !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .28);
}

/* ------------------------------------------------------------------ 6. Hero */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  padding-block: clamp(34px, 6vw, 76px) clamp(44px, 7vw, 88px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media > img,
.hero__media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero__photo,
.hero__video { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero__media.has-photo .hero__photo,
.hero__media.has-video .hero__video { opacity: 1; }
.hero__media.has-video .hero__photo { opacity: 0; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(7, 40, 68, .94) 0%, rgba(7, 40, 68, .82) 42%, rgba(7, 40, 68, .55) 78%, rgba(7, 40, 68, .45) 100%),
    linear-gradient(to top, rgba(4, 26, 46, .75) 0%, rgba(4, 26, 46, 0) 55%);
}

.hero__inner { display: flex; flex-direction: column; gap: 24px; position: relative; }

.hero__copy { color: #fff; max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #BFE6FA;
  background: rgba(0, 174, 239, .14);
  border: 1px solid rgba(0, 174, 239, .34);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(31px, 6.6vw, 60px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.16;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.hero__lede {
  margin-top: 14px;
  font-size: clamp(15.5px, 2.2vw, 19px);
  line-height: 1.85;
  color: #D7E6F3;
  max-width: 560px;
}
.hero__lede strong { color: #fff; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: #EAF3FA;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero__badges .ico { color: var(--sky); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn { flex: 1 1 200px; }

/* price box */
.pricebox {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--sh-xl);
  position: relative;
}
.pricebox__badge {
  position: absolute;
  top: -13px;
  inset-inline-start: clamp(20px, 3vw, 28px);
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(21, 112, 239, .32);
}
.pricebox__label { color: var(--muted); font-size: 14.5px; font-weight: 600; margin-top: 6px; }
.pricebox__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy);
  font-size: clamp(38px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-family: var(--font-latin);
  margin-top: 2px;
}
.pricebox__cur { font-family: var(--font); font-size: 18px; font-weight: 700; color: #374151; }
.pricebox__after { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

.pricebox__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin: 18px 0;
}
.pricebox__meta > div { background: #fff; padding: 11px 13px; }
.pricebox__meta dt { font-size: 12px; color: var(--muted); font-weight: 600; }
.pricebox__meta dd {
  margin: 2px 0 0;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}
.pricebox__note { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 11px; }

/* ----------------------------------------------------------------- 7. Trust */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.trust__list li {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.45;
}
.trust__ico {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-content: center;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--blue);
}
.trust__ico .ico { width: 20px; height: 20px; }

/* ---------------------------------------------------------------- 8. Prices */
.prices {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.price {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: #D7E3F0; }

.price--top {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 16px 42px rgba(21, 112, 239, .14);
  background: linear-gradient(180deg, var(--blue-tint) 0%, #fff 120px);
}
.price__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(11, 58, 103, .3);
}

.price__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price__title { font-size: 19px; font-weight: 800; color: var(--navy); }
.price__code {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-2);
  padding: 4px 11px;
  border-radius: 7px;
}
.price__note { color: var(--muted); font-size: 13.5px; margin-top: 4px; }

.price__body { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.price__old {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.price__old s { text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: #9CA3AF; }
.price__off {
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  padding: 3px 10px;
  border-radius: 100px;
}
.price__new {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(32px, 6vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-family: var(--font-latin);
}
.price__cur { font-family: var(--font); font-size: 16px; font-weight: 700; color: #374151; }
.price__save { color: var(--blue); font-size: 13.5px; font-weight: 700; margin-top: 8px; }
.price .btn { margin-top: 18px; }

/* ------------------------------------------------------------------ 9. Kids */
.kids { display: grid; gap: 14px; grid-template-columns: 1fr; }
.kid {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.kid__age { font-size: 16px; font-weight: 800; color: var(--navy); }
.kid__hint { font-size: 13px; color: var(--muted); margin-top: 2px; }
.kid__prices { display: flex; align-items: baseline; gap: 12px; }
.kid__old { color: var(--muted); font-size: 15px; font-weight: 600; }
.kid__old s { text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: #9CA3AF; }
.kid__new {
  font-family: var(--font-latin);
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.01em;
}
.kid__cur { font-family: var(--font); font-size: 14px; font-weight: 700; color: #374151; margin-inline-start: 4px; }

/* ---------------------------------------------------------------- 11. Hotel */
.hotel { display: grid; gap: 20px; }
.hotel__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px);
}
.hotel__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-latin);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}
.hotel__name .ico { color: var(--blue); width: 22px; height: 22px; }
.hotel__text { margin-top: 12px; color: #374151; line-height: 1.9; font-size: 15.5px; }
.hotel__facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.hotel__facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 100px;
}
.hotel__facts .ico { color: var(--blue); width: 16px; height: 16px; }

.hotel__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.shot {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.shot:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.shot--live { cursor: zoom-in; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot__cap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 9px;
  width: max-content;
  max-width: calc(100% - 18px);
  background: rgba(7, 40, 68, .82);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  text-align: center;
}

/* empty image slot — clearly marked so the admin can replace it */
.shot--empty {
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  background:
    repeating-linear-gradient(45deg, #F1F5F9 0 10px, #F8FAFC 10px 20px);
  border-style: dashed;
  border-color: #CBD5E1;
  cursor: default;
}
.shot--empty .ico { width: 26px; height: 26px; color: #94A3B8; margin-inline: auto; }
.shot__label { font-size: 13.5px; font-weight: 800; color: #475569; }
.shot__hint { font-size: 11.5px; color: #94A3B8; line-height: 1.5; }

/* ------------------------------------------------------------- 12. Itinerary */
.days__tools { display: flex; justify-content: flex-start; margin-bottom: 14px; }

.days { position: relative; display: grid; gap: 12px; }
.days::before {
  content: "";
  position: absolute;
  inset-block: 18px;
  inset-inline-start: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-tint-2), var(--line));
  border-radius: 2px;
}

.day { position: relative; padding-inline-start: 52px; }
.day__dot {
  position: absolute;
  inset-inline-start: 6px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-tint-2);
  color: var(--blue);
  font-family: var(--font-latin);
  font-size: 12.5px;
  font-weight: 800;
  z-index: 1;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.day[open] .day__dot { background: var(--blue); border-color: var(--blue); color: #fff; }

.day details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.day details[open] { border-color: #D5E4F7; box-shadow: var(--sh); }

.day summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.day summary::-webkit-details-marker { display: none; }
.day summary:hover { background: #FBFDFF; }

.day__num { font-size: 12.5px; font-weight: 800; color: var(--blue); }
.day__title { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.45; }
.day__chev {
  margin-inline-start: auto;
  width: 20px;
  height: 20px;
  flex: none;
  color: #9CA3AF;
  transition: transform .22s ease;
}
.day details[open] .day__chev { transform: rotate(180deg); color: var(--blue); }

.day__body { padding: 0 18px 18px; }
.day__shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 168px));
  justify-content: start;
  gap: 8px;
  margin-bottom: 15px;
}
.day__shot {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #F1F5F9;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.day__shot:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: #D5E4F7; }
.day__shot img { width: 100%; height: 100%; object-fit: cover; }

.day__body ul { display: grid; gap: 10px; border-top: 1px dashed var(--line); padding-top: 14px; }
.day__shots + ul { border-top: 0; padding-top: 0; }
.day__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}
.day__body li .ico { width: 8px; height: 8px; margin-top: .62em; flex: none; }
.day__body li .ico circle { fill: var(--sky); }

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 100px;
  margin-inline-start: 6px;
  white-space: nowrap;
  vertical-align: middle;
}
.chip--opt { color: var(--navy); background: var(--navy-tint); border: 1px solid #DCE6F1; }
.chip--inc { color: #fff; background: var(--blue); }

/* -------------------------------------------------------- 13. Includes / not */
.incex { display: grid; gap: 18px; }
.incex__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--sh-sm);
}
.incex__title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(19px, 3vw, 23px);
  color: var(--navy);
  font-weight: 900;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.incex__title .ico {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 10px;
  flex: none;
}
.incex__card--yes .incex__title .ico { background: var(--blue-tint); color: var(--blue); }
.incex__card--no .incex__title .ico { background: #F1F5F9; color: #64748B; }

.incex__list { display: grid; gap: 2px; }
.incex__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 0;
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid #F4F7FA;
}
.incex__list li:last-child { border-bottom: 0; }
.incex__list .ico { width: 19px; height: 19px; margin-top: .22em; flex: none; }
.incex__card--yes .incex__list .ico { color: var(--blue); }
.incex__card--no .incex__list .ico { color: #9CA3AF; }
.incex__card--no .incex__list li { color: var(--muted); }

/* -------------------------------------------------------------- 14. Reviews */
.reviews { display: grid; gap: 16px; }

.review {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: clamp(22px, 3vw, 28px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: #D7E3F0; }

.review__q { width: 30px; height: 30px; color: var(--blue-tint-2); margin-bottom: 10px; }

.review__text {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
}

.review__by {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.review__name { font-size: 15px; font-weight: 800; color: var(--navy); }
.review__trip { font-size: 13px; color: var(--muted); }

/* --------------------------------------------------------------- 15. Papers */
.papers { display: grid; gap: 12px; }

.paper {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-xs);
  overflow: hidden;
}
.paper[open] { border-color: #D5E4F7; box-shadow: var(--sh); }

.paper summary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.paper summary::-webkit-details-marker { display: none; }
.paper summary:hover { background: #FBFDFF; }

.paper__ico {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-content: center;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--blue);
}
.paper__ico .ico { width: 19px; height: 19px; }
.paper__title { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.5; }
.paper__chev {
  margin-inline-start: auto;
  width: 20px;
  height: 20px;
  flex: none;
  color: #9CA3AF;
  transition: transform .22s ease;
}
.paper[open] .paper__chev { transform: rotate(180deg); color: var(--blue); }

.paper__body { padding: 2px 18px 20px; }
.paper__lede {
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-2);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1E3A5F;
  line-height: 1.75;
  margin-bottom: 16px;
}
.paper__block + .paper__block { margin-top: 18px; }
.paper__heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  padding-inline-start: 12px;
  border-inline-start: 3px solid var(--blue);
  line-height: 1.5;
}
.paper__block ul { display: grid; gap: 8px; }
.paper__block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
}
.paper__block li .ico { width: 7px; height: 7px; margin-top: .68em; flex: none; }
.paper__block li .ico circle { fill: var(--sky); }

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 15px 17px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.8;
  color: #374151;
}
.notice .ico { width: 21px; height: 21px; flex: none; margin-top: .18em; color: var(--blue); }
.notice--warn {
  background: var(--navy);
  border-color: var(--navy);
  color: #E4EEF7;
}
.notice--warn .ico { color: var(--sky); }
.notice--warn strong { color: #fff; }


/* ------------------------------------------------------------------ 16. FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-xs);
  overflow: hidden;
}
.faq details[open] { border-color: #D5E4F7; box-shadow: var(--sh); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: #FBFDFF; }
.faq__chev {
  margin-inline-start: auto;
  width: 20px;
  height: 20px;
  flex: none;
  color: #9CA3AF;
  transition: transform .22s ease;
}
.faq details[open] .faq__chev { transform: rotate(180deg); color: var(--blue); }
.faq__a {
  padding: 0 18px 18px;
  color: #374151;
  font-size: 15px;
  line-height: 1.85;
}
.faq__a > span { display: block; border-top: 1px dashed var(--line); padding-top: 14px; }

/* ---------------------------------------------------------------- 17. Final */
.final {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  padding-block: clamp(50px, 8vw, 88px);
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(0, 174, 239, .32) 0%, rgba(0, 174, 239, 0) 55%),
    radial-gradient(90% 120% at 10% 100%, rgba(21, 112, 239, .34) 0%, rgba(21, 112, 239, 0) 60%);
}
.final__inner { text-align: center; max-width: 660px; margin-inline: auto; }
.final__title { font-size: clamp(26px, 5vw, 42px); font-weight: 900; letter-spacing: -.02em; }
.final__sub { margin: 14px 0 26px; color: #CFE1F0; font-size: clamp(15px, 2.2vw, 18px); line-height: 1.85; }
.final__sub strong { color: #fff; }
.final__note { margin-top: 16px; color: #9FBBD4; font-size: 13px; }

/* --------------------------------------------------------------- 18. Footer */
.foot { background: var(--navy-900); color: #C7D8E6; padding-top: clamp(36px, 5vw, 52px); }
.foot__inner {
  display: grid;
  gap: 26px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.foot__brand { display: flex; align-items: center; }
.foot__name { font-family: var(--font-latin); font-size: 17px; font-weight: 800; color: #fff; letter-spacing: .06em; }
.foot__since { font-size: 12.5px; color: #8FA9BF; margin-top: 3px; direction: rtl; }
.foot__links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.foot__links a { font-size: 14.5px; font-weight: 600; color: #C7D8E6; }
.foot__links a:hover { color: #fff; }
.foot__phone {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-latin);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  transition: border-color .18s ease, background-color .18s ease;
}
.foot__phone:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .06); }
.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
  padding-block: 18px;
  font-size: 12.5px;
  color: #7F98AE;
}

/* ---------------------------------------------------------------- 19. Modal */
.modal { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 40, 68, .62);
  backdrop-filter: blur(4px);
  animation: fade .25s ease;
}
.modal__panel {
  position: relative;
  width: min(100%, 440px);
  background: #fff;
  border-radius: var(--r-xl);
  padding: 34px 26px 26px;
  box-shadow: var(--sh-xl);
  text-align: center;
  animation: pop .3s cubic-bezier(.2, .9, .3, 1.1);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
}
.modal__x {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
}
.modal__x:hover { color: var(--navy); border-color: #CBD5E1; }
.modal__badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.modal__title { font-size: clamp(20px, 4.5vw, 25px); color: var(--navy); font-weight: 900; line-height: 1.4; }
.modal__text { margin: 12px 0 22px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.modal__text strong { color: var(--navy); }
.modal__later {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  cursor: pointer;
}
.modal__later:hover { color: var(--navy); }

@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.96) } to { opacity: 1; transform: none } }

/* ------------------------------------------------------------- 20. Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(4, 22, 40, .93);
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  padding: 16px;
  animation: fade .2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox__figure {
  margin: 0;
  grid-column: 2;
  display: grid;
  gap: 12px;
  justify-items: center;
  max-height: calc(100dvh - 32px);
}
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100dvh - 126px);
  width: auto;
  object-fit: contain;
  border-radius: var(--r);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox__figure figcaption { color: #D7E6F3; font-size: 14px; font-weight: 700; }
.lightbox__x {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox__x:hover { background: rgba(255, 255, 255, .2); }
.lightbox__nav {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, .2); }
.lightbox__nav .ico { width: 22px; height: 22px; }
.lightbox__nav--prev { grid-column: 3; transform: rotate(-90deg); }
.lightbox__nav--next { grid-column: 1; transform: rotate(90deg); }

/* ------------------------------------------------- 21. Floating actions bar */
.fab {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 18px;
  z-index: 100;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  background: var(--wa);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  transition: transform .18s ease, box-shadow .2s ease, background-color .18s ease;
}
.fab:hover { transform: translateY(-3px); background: var(--wa-dark); }
.fab .ico { width: 22px; height: 22px; }

.mobar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(11, 58, 103, .08);
}
.mobar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}
.mobar__btn--prices { background: #fff; border: 1px solid var(--line); color: var(--navy); }
.mobar__btn--prices .ico { color: var(--blue); width: 18px; height: 18px; }
.mobar__btn--wa { background: var(--wa); color: #fff; box-shadow: 0 6px 16px rgba(37, 211, 102, .3); }
.mobar__btn--wa .ico { width: 20px; height: 20px; }

/* keep the bar from covering page content */
body { padding-bottom: 74px; }

/* ------------------------------------------------------- 22. Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.2, .7, .3, 1), transform .6s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------------------------------------------- mobile density (hero fold) */
@media (max-width: 559px) {
  .hero { padding-block: 26px 34px; }
  .hero__eyebrow { margin-bottom: 14px; font-size: 12px; padding: 5px 12px; }
  .hero__lede { margin-top: 11px; line-height: 1.75; }
  .hero__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 17px;
  }
  .hero__badges li {
    font-size: 12.5px;
    padding: 7px 11px;
    gap: 6px;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
  }
  .hero__inner { gap: 20px; }
  .pricebox { padding: 20px 18px; }
  .pricebox__meta { margin: 15px 0; }
}

/* ================================================================ 23. ≥560px */
@media (min-width: 560px) {
  .prices, .kids { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 0 1 auto; }
}

/* ================================================================ 24. ≥768px */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }

  body { padding-bottom: 0; }
  .mobar { display: none; }
  .fab { display: inline-flex; }

  .trust__list { grid-template-columns: repeat(4, 1fr); }
  .trust__list li { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px 20px; }

  .prices { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .kids { grid-template-columns: repeat(3, 1fr); }
  .kid { flex-direction: column; align-items: flex-start; gap: 14px; }
  .kid__prices { flex-direction: column; gap: 2px; }

  .incex { grid-template-columns: 1fr 1fr; }
  .hotel__gallery { grid-template-columns: repeat(3, 1fr); }

  .reviews { grid-template-columns: 1fr 1fr; }

  .brand__logo { height: 36px; }

  .foot__inner { grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
  .foot__links { justify-content: center; }
}

/* ============================================================== 25. ≥1024px */
@media (min-width: 1024px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__burger, .nav__mobile { display: none !important; }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 372px;
    grid-template-areas:
      "copy box"
      "actions box";
    gap: 20px 44px;
    align-items: start;
  }
  .hero__copy { grid-area: copy; }
  .hero__actions { grid-area: actions; align-self: start; }
  .pricebox { grid-area: box; position: sticky; top: calc(var(--nav-h) + 20px); }

  .hotel { grid-template-columns: 340px minmax(0, 1fr); align-items: start; }
  .hotel__gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hotel__card { position: sticky; top: calc(var(--nav-h) + 20px); }

  .days { gap: 14px; }
  .day__title { font-size: 17px; }

  .reviews { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ============================================================== 26. ≥1180px */
@media (min-width: 1180px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) 400px; gap: 24px 60px; }
}

/* ================================================================= 28. A11y */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================ 29. Print */
@media print {
  .nav, .fab, .mobar, .modal, .lightbox, .hero__media, .section__cta { display: none !important; }
  body { padding: 0; background: #fff; }
  .hero { background: #fff; color: var(--text); }
  .hero__copy, .hero__title { color: var(--navy); }
  .day details, .paper, .faq details { break-inside: avoid; }
  .day details:not([open]) .day__body,
  .paper:not([open]) .paper__body,
  .faq details:not([open]) .faq__a { display: block; }
}
