

:root {

  --hero-dark: 0.62;
  --navy-900: #062536;
  --navy-800: #0A3A54;
  --navy-700: #0E4C6E;
  --navy-600: #14628C;
  --turq-600: #0E8CA8;
  --turq-500: #16A6C4;
  --turq-400: #34C2DD;
  --turq-100: #DDF3F7;
  --green-500: #6FB344;
  --gold: #C9A24B;

  --ink: #0B2735;
  --slate: #46606E;
  --muted: #7C909B;
  --line: #E6EEF2;
  --line-strong: #D4E1E8;
  --surface: #FFFFFF;
  --bg: #F4F8FA;
  --bg-warm: #F7F4EE;

  --accent: var(--turq-500);
  --accent-strong: var(--turq-600);

  --font: "Cairo", system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;
  --sh-sm: 0 2px 10px rgba(11, 39, 53, 0.06);
  --sh-md: 0 14px 38px rgba(11, 39, 53, 0.10);
  --sh-lg: 0 30px 70px rgba(11, 39, 53, 0.16);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.18; font-weight: 800; letter-spacing: -0.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--accent-strong);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--accent);
}

.section { padding-block: clamp(14px, 9vw, 30px); }
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 35px);
  margin-top: 14px;
  color: var(--navy-800);
}
.section-head p { margin: 14px 0 0; color: var(--slate); font-size: 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy-800); color: #fff; box-shadow: 0 10px 26px rgba(10,58,84,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(10,58,84,.34); background: var(--navy-700); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(22,166,196,.32); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(22,166,196,.40); background: var(--accent-strong); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy-800); border: 1.5px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.btn-lg { padding: 14px 34px; font-size: 16px; }

.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,37,54,calc(var(--hero-dark) * .62)) 0%, rgba(6,37,54,.12) 30%, rgba(6,37,54,var(--hero-dark)) 100%),
    linear-gradient(90deg, rgba(6,37,54,calc(var(--hero-dark) * .88)), rgba(6,37,54,.10));
}
.hero-inner { padding-top: clamp(54px, 9vw, 104px); padding-bottom: clamp(150px, 18vw, 230px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  padding: 7px 16px 7px 7px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  font-size: 14px; font-weight: 600; backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.hero-badge .dot svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(30px, 6vw, 60px); max-width: 16ch; font-weight: 800;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 em { font-style: normal; color: var(--turq-400); }
.hero-sub { margin: 22px 0 0; max-width: 52ch; font-size: clamp(17px, 2vw, 19px); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.search-card {
  position: relative; z-index: 5;
  max-width: var(--maxw); margin: -96px auto 0; margin-inline: auto;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 14px;
}
.search-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr 0.95fr auto; gap: 8px; align-items: stretch; }
.search-field {
  display: flex; flex-direction: column; gap: 3px; padding: 12px 18px;
  border-radius: var(--r-md); background: var(--bg); border: 1px solid transparent;
  transition: border-color .15s, background .15s; cursor: pointer; min-width: 0;
}
.search-field:hover { border-color: var(--line-strong); background: #fff; }
.search-field label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.search-field .val { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 15.5px; }
.search-field .val svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.search-field select, .search-field input {
  border: 0; background: none; font-family: var(--font); font-weight: 700;
  font-size: 15.5px; color: var(--ink); padding: 0; width: 100%; cursor: pointer;
}
.search-field select:focus, .search-field input:focus { outline: none; }

.search-field .datepicker-wrap::after { content: none; display: none; }
.search-field .ui-datepicker-trigger { display: none; }
.search-field.pax-field { cursor: default; }

.ui-datepicker.sw-dp .ui-datepicker-prev,
.ui-datepicker.sw-dp .ui-datepicker-next { top: 50%; transform: translateY(-50%); }

.pax-field .val { gap: 10px; }
.pax-item { display: inline-flex; align-items: baseline; gap: 4px; min-width: 0; cursor: pointer; }
.pax-item input[type="number"] {
  width: 2.6ch; min-width: 2.6ch; padding: 0; text-align: center;
  -moz-appearance: textfield; appearance: textfield;
}
.pax-item input[type="number"]::-webkit-outer-spin-button,
.pax-item input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pax-item > span {
  font-size: 13px; font-weight: 600; color: var(--muted);
  white-space: nowrap; text-transform: none;
}
.search-submit { display: flex; align-items: center; }
.search-submit .btn { width: 100%; height: auto; padding-block: 13px; padding-inline: 16px; font-size: 14px; gap: 7px; }
.search-submit .btn svg { width: 15px; height: 15px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.stat { background: #fff; padding-block: clamp(28px, 7vw, 44px); padding-inline: 22px; text-align: center; }
.stat b { display: block; font-size: clamp(30px, 4vw, 35px); color: var(--navy-800); font-weight: 800; }
.stat b i { font-style: normal; color: var(--accent); }
.stat span { color: var(--slate); font-size: 15px; font-weight: 600; }

.dest-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--r-md); cursor: pointer;
  color: #fff; isolation: isolate; box-shadow: var(--sh-sm);
}
.dest-card.feature { grid-column: span 3; grid-row: span 2; }
.dest-card.tall { grid-column: span 3; }
.dest-card.wide { grid-column: span 3; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,37,54,0) 35%, rgba(6,37,54,.82) 100%); }
.dest-link { position: absolute; inset: 0; z-index: 4; }
.dest-card:hover img { transform: scale(1.07); }
.dest-card:hover { box-shadow: var(--sh-md); }
.dest-body { position: absolute; inset-inline: 0; bottom: 0; padding: 22px 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.dest-body h3 { font-size: 23px; }
.dest-card.feature .dest-body h3 { font-size: 22px; }
.dest-body .meta { font-size: 13.5px; opacity: .88; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.dest-body .meta svg { width: 14px; height: 14px; }
.dest-go {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background .2s, transform .2s;
}
.dest-go svg { width: 18px; height: 18px; }
.dest-card:hover .dest-go { background: var(--accent); border-color: var(--accent); transform: rotate(-45deg); }
.dest-tag { position: absolute; top: 16px; inset-inline-start: 16px; background: rgba(255,255,255,.92); color: var(--navy-800); font-size: 12.5px; font-weight: 800; padding: 6px 13px; border-radius: var(--r-pill); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .25s ease, border-color .2s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.pkg-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg:hover .pkg-media img { transform: scale(1.06); }
.pkg-fav {
  position: absolute; top: 14px; inset-inline-end: 14px; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(255,255,255,.9); border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; color: var(--slate);
  transition: color .2s, transform .2s;
}
.pkg-fav:hover { color: #e2526b; transform: scale(1.1); }
.pkg-fav svg { width: 18px; height: 18px; }
.pkg-discount { position: absolute; top: 14px; inset-inline-start: 14px; background: var(--green-500); color: #fff; font-size: 12.5px; font-weight: 800; padding: 6px 13px; border-radius: var(--r-pill); }
.pkg-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-loc { display: flex; align-items: center; gap: 6px; color: var(--accent-strong); font-size: 14px; font-weight: 700; }
.pkg-loc svg { width: 15px; height: 15px; }
.pkg h3 { font-size: 19px; margin-top: 8px; color: var(--navy-800); line-height: 1.4; }
.pkg-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pkg-feat { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--slate); background: var(--bg); padding: 6px 12px; border-radius: var(--r-pill); }
.pkg-feat svg { width: 14px; height: 14px; color: var(--accent); }
.pkg-rate { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--slate); }
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.pkg-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 18px; }
.pkg-price small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.pkg-price b { font-size: 26px; color: var(--navy-800); font-weight: 800; }
.pkg-price b i { font-style: normal; font-size: 15px; color: var(--slate); font-weight: 700; }

.why { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.why::before { content:""; position:absolute; inset-inline-start:-10%; top:-30%; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle, rgba(22,166,196,.22), transparent 70%); }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.75); }
.why .eyebrow { color: var(--turq-400); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 30px 26px; transition: background .2s, transform .2s, border-color .2s; }
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); border-color: rgba(52,194,221,.4); }
.why-ico { width: 56px; height: 56px; border-radius: 16px; background: rgba(52,194,221,.16); color: var(--turq-400); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-ico svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 15.5px; line-height: 1.65; }

.ctry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ctry {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .25s ease, border-color .2s;
}
.ctry:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.ctry-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--navy-800); }
.ctry-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ctry:hover .ctry-media img { transform: scale(1.06); }
.ctry-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,37,54,0) 45%, rgba(6,37,54,.72) 100%); }
.ctry-name {
  position: absolute; inset-inline-start: 20px; bottom: 16px; z-index: 2;
  color: #fff; font-size: 20px; font-weight: 800;
}
.ctry-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.ctry-body h3 { font-size: 19px; line-height: 1.4; }
.ctry-body h3 a { color: var(--navy-800); transition: color .15s; }
.ctry-body h3 a:hover { color: var(--accent-strong); }
.ctry-links { list-style: none; margin: 16px 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ctry-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--slate); transition: color .15s;
}
.ctry-links a:hover { color: var(--accent-strong); }
.ctry-links svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.ctry-more { margin-top: auto; width: 100%; justify-content: center; padding: 11px 18px; font-size: 15px; }

.vid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vid {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); color: inherit;
  transition: transform .22s ease, box-shadow .25s ease, border-color .2s;
}
.vid:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.vid-media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-800); }
.vid-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.vid:hover .vid-media img { transform: scale(1.06); }
.vid-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,37,54,0) 45%, rgba(6,37,54,.55) 100%); }
.vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--accent-strong);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(6,37,54,.3);
  transition: background .2s, color .2s, transform .2s;
}
.vid-play svg { width: 22px; height: 22px; margin-left: 3px; }
.vid:hover .vid-play { background: var(--accent); color: #fff; transform: translate(-50%, -50%) scale(1.08); }
.vid-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vid-body b {
  font-size: 15.5px; line-height: 1.5; color: var(--navy-800); font-weight: 700;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.vid-meta { margin-top: auto; display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--accent-strong); }
.vid-meta svg { width: 15px; height: 15px; }
.vid-more { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 40px); }

.vid-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(4,22,33,.86); backdrop-filter: blur(4px);
}
.vid-modal.open { display: flex; }
.vid-modal-inner { position: relative; width: min(960px, 100%); }
.vid-modal-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: #000; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.vid-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid-modal-title { color: #fff; font-size: 16px; font-weight: 700; margin-top: 14px; text-align: center; }
.vid-modal-close {
  position: absolute; top: -46px; inset-inline-end: 0;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.34); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s;
}
.vid-modal-close:hover { background: rgba(255,255,255,.3); }
.vid-modal-close svg { width: 18px; height: 18px; }

.cta-band { position: relative; color: #fff; isolation: isolate; border-radius: var(--r-lg); overflow: hidden; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(100deg, rgba(6,37,54,.92) 30%, rgba(10,58,84,.55)); }
.cta-inner { padding: clamp(48px, 7vw, 80px) clamp(30px, 6vw, 76px); max-width: 720px; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 40px); }
.cta-inner p { margin: 16px 0 0; font-size: 19px; color: rgba(255,255,255,.85); }
.cta-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.34); }
.btn-wa:hover { background: #1eb858; transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}@media (max-width: 1024px) {
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-submit { grid-column: span 2; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .dest-card.feature, .dest-card.tall, .dest-card.wide { grid-column: span 1; grid-row: span 1; }
  .dest-card.feature { grid-column: span 2; }
  .pkg-grid, .vid-grid, .ctry-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); column-gap: 14px; row-gap: 15px; }

  .why-card { padding: 20px 16px; }
  .why-card h3 { font-size: 14px; }
  .why-card p { font-size: 13px; line-height: 1.3; }
  .why-ico svg { width: 23px; height: 23px; }

  .section-head h2 { font-size: clamp(24px, 4vw, 35px); }
  .section-head p { font-size: 15px; }

  .hero-inner { text-align: center; }
  .hero h1, .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
}@media (max-width: 760px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .ctry-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vid-body { padding: 13px 14px 15px; }
  .vid-body b { font-size: 14px; -webkit-line-clamp: 2; }
  .vid-meta { font-size: 12.5px; }
  .vid-play { width: 44px; height: 44px; }
  .vid-play svg { width: 18px; height: 18px; }
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .dest-card.feature { grid-column: span 1; }
  .search-grid { grid-template-columns: 1fr; }
  .search-submit { grid-column: span 1; }
  .hero-inner { padding-bottom: clamp(120px, 30vw, 180px); }

  .hero-actions { flex-wrap: nowrap; gap: 10px; margin-top: 24px; }
  .hero-actions .btn { font-size: 13.5px; padding: 11px 12px; gap: 6px; }
  .hero-actions .btn svg { width: 14px; height: 14px; }
}

.cta-inner { margin-inline: auto; text-align: center; }
.cta-actions { justify-content: center; }

h1, h2, h3, h4, h5, h6 { color: inherit; }

section#content { padding: 0; background: transparent; }
