/* =========================================================
   سِياحتي — Siyahaty Travel & Tourism
   Design System / Global Stylesheet (RTL, Arabic)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --teal-900: #0a3d3f;
  --teal-800: #0e4f52;
  --teal-700: #106b6e;
  --teal-600: #128487;
  --teal-500: #17a2a6;
  --teal-400: #3dbfc2;
  --teal-100: #d6f2f2;
  --teal-50:  #eefafa;

  --gold-700: #b8862f;
  --gold-600: #cc9a3a;
  --gold-500: #d9ad4d;
  --gold-400: #e6c473;
  --gold-100: #f7ecd0;

  --sand-50:  #fbf8f2;
  --sand-100: #f4ede0;

  --ink-900: #0f1e24;
  --ink-700: #35474e;
  --ink-500: #64757c;
  --ink-400: #8a9aa0;

  --white: #ffffff;
  --line:  #e7ecee;
  --line-2: #eceff0;

  /* Semantic */
  --bg: #ffffff;
  --bg-soft: var(--sand-50);
  --text: var(--ink-900);
  --muted: var(--ink-500);
  --primary: var(--teal-600);
  --primary-dark: var(--teal-800);
  --accent: var(--gold-600);

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(15, 30, 36, .06);
  --shadow: 0 12px 30px rgba(15, 30, 36, .08);
  --shadow-lg: 0 24px 60px rgba(15, 30, 36, .14);
  --shadow-teal: 0 16px 40px rgba(18, 132, 135, .28);

  --container: 1200px;
  --gutter: 24px;
  --header-h: 78px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "Cairo", "Tajawal", system-ui, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; font-weight: 800; color: var(--ink-900); letter-spacing: -0.2px; }
p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--teal { background: linear-gradient(135deg, var(--teal-800), var(--teal-600)); color: #eafafa; }
.section--tight { padding: 60px 0; }
.grid { display: grid; gap: 26px; }
.center { text-align: center; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 800; letter-spacing: .5px;
  color: var(--primary); background: var(--teal-50);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 16px;
}
.section--teal .eyebrow { color: var(--gold-400); background: rgba(255,255,255,.1); }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; }
.sec-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.sec-title span { color: var(--primary); }
.section--teal .sec-title, .section--teal h2, .section--teal h3 { color: #fff; }
.section--teal .sec-title span { color: var(--gold-400); }
.sec-sub { margin-top: 14px; color: var(--muted); font-size: 1.06rem; }
.section--teal .sec-sub { color: #d5efef; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-weight: 800; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--teal-600), var(--teal-500)); color: #fff; box-shadow: var(--shadow-teal); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(18,132,135,.4); color:#fff; }
.btn--gold { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); color: #3a2a06; box-shadow: 0 16px 40px rgba(204,154,58,.35); }
.btn--gold:hover { transform: translateY(-3px); color:#3a2a06; }
.btn--ghost { background: transparent; color: var(--primary); border: 2px solid var(--teal-100); }
.btn--ghost:hover { border-color: var(--primary); background: var(--teal-50); }
.btn--white { background: #fff; color: var(--primary-dark); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--primary-dark); }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--header-h);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); height: 66px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.35rem; color: var(--ink-900); }
.brand__mark {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-teal);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-size: .62rem; font-weight: 700; color: var(--muted); letter-spacing: 2px; }
.site-header:not(.scrolled):not(.header--solid) .brand,
.site-header:not(.scrolled):not(.header--solid) .nav > li > a { color: #fff; }
.site-header:not(.scrolled):not(.header--solid) .brand small { color: rgba(255,255,255,.75); }
.header--solid { background: #fff; box-shadow: var(--shadow-sm); position: sticky; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 5px; padding: 10px 15px; border-radius: 10px;
  font-weight: 700; font-size: .96rem; transition: color .2s, background .2s;
}
.nav > li > a:hover, .nav > li.active > a { color: var(--primary); }
.nav > li > a .caret { width: 14px; height: 14px; opacity: .6; }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* dropdown */
.has-drop > .dropdown {
  position: absolute; inset-block-start: calc(100% + 10px); inset-inline-end: 0;
  min-width: 240px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all .25s var(--ease); border: 1px solid var(--line-2);
}
.has-drop:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; color: var(--ink-700); font-weight: 600; font-size: .93rem; }
.dropdown a:hover { background: var(--teal-50); color: var(--primary); }
.dropdown a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); flex: none; }

/* burger */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; place-items: center; background: rgba(255,255,255,.15); }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; inset-inline: 0; height: 2px; background: currentColor; border-radius: 2px; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.site-header.scrolled .burger, .header--solid .burger { color: var(--ink-900); background: var(--sand-100); }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(10,30,36,.5); z-index: 110; opacity: 0; visibility: hidden; transition: .3s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; bottom: 0; right: 0; width: min(340px, 86vw); z-index: 120;
  background: #fff; transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
  box-shadow: -10px 0 40px rgba(15,30,36,.12);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer__close { width: 42px; height: 42px; border-radius: 12px; background: var(--sand-100); display: grid; place-items: center; font-size: 1.4rem; }
.drawer nav a { display: block; padding: 13px 14px; border-radius: 12px; font-weight: 700; color: var(--ink-700); }
.drawer nav a:hover { background: var(--teal-50); color: var(--primary); }
.drawer nav .group-label { font-size: .78rem; color: var(--muted); font-weight: 800; padding: 16px 14px 6px; letter-spacing: 1px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; isolation: isolate; }
.hero .container { position: relative; z-index: 1; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(8,45,47,.92) 0%, rgba(10,61,63,.72) 45%, rgba(10,61,63,.25) 100%);
}
.hero__inner { padding-block: calc(var(--header-h) + 40px) 60px; max-width: 760px; }
.hero h1 { font-size: clamp(2.1rem, 5.6vw, 4rem); color: #fff; line-height: 1.15; }
.hero h1 .hl { color: var(--gold-400); }
.hero p.lead { margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: #e7f4f4; max-width: 600px; }
.hero__actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { margin-top: 56px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat b { display: block; font-size: 2rem; color: var(--gold-400); font-weight: 900; }
.hero__stat span { color: #cfe8e8; font-size: .92rem; }
.hero-scroll { position: absolute; inset-block-end: 26px; inset-inline-start: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .8rem; display: grid; justify-items: center; gap: 6px; animation: bob 2s infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* page hero (inner pages) */
.page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 70px; color: #fff; overflow: hidden; isolation: isolate; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(8,45,47,.94), rgba(14,79,82,.7)); }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: #fff; }
.page-hero p { margin-top: 14px; color: #d5efef; max-width: 620px; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: #bfe0e0; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { opacity: .6; }

/* ---------- Cards: features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 32px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature__ic { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px; background: var(--teal-50); color: var(--primary); }
.feature__ic svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- Destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  isolation: isolate;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: #fff; }
.dest-card__img { position: absolute; inset: 0; z-index: -2; }
.dest-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dest-card:hover .dest-card__img img { transform: scale(1.09); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,45,47,.92) 8%, rgba(8,45,47,.35) 55%, rgba(8,45,47,.05) 100%); }
.dest-card__body { padding: 26px; width: 100%; }
.dest-card__tag { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 800; background: rgba(217,173,77,.95); color: #3a2a06; padding: 5px 13px; border-radius: 999px; margin-bottom: 12px; }
.dest-card h3 { color: #fff; font-size: 1.5rem; }
.dest-card__meta { display: flex; align-items: center; gap: 16px; margin-top: 10px; color: #dbeeee; font-size: .9rem; flex-wrap: wrap; }
.dest-card__meta .price { color: var(--gold-400); font-weight: 800; font-size: 1.05rem; }
.dest-card__meta .di { display: inline-flex; align-items: center; gap: 5px; }
.dest-card__meta svg { width: 15px; height: 15px; }
.dest-card__go { position: absolute; inset-block-start: 20px; inset-inline-end: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: grid; place-items: center; opacity: 0; transform: translateY(-8px); transition: .3s var(--ease); }
.dest-card:hover .dest-card__go { opacity: 1; transform: translateY(0); }
.dest-card__go svg { width: 20px; height: 20px; }

/* ---------- Package / offer cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pkg:hover .pkg__media img { transform: scale(1.08); }
.pkg__badge { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; background: var(--gold-600); color: #3a2a06; font-weight: 800; font-size: .76rem; padding: 5px 13px; border-radius: 999px; }
.pkg__fav { position: absolute; inset-block-start: 14px; inset-inline-end: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--ink-500); }
.pkg__fav:hover { color: #e0466a; }
.pkg__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pkg__loc { display: flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: .86rem; margin-bottom: 8px; }
.pkg__loc svg { width: 15px; height: 15px; }
.pkg h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pkg p { color: var(--muted); font-size: .93rem; }
.pkg__row { display: flex; align-items: center; gap: 14px; margin: 16px 0; padding: 14px 0; border-block: 1px solid var(--line-2); color: var(--ink-700); font-size: .86rem; flex-wrap: wrap; }
.pkg__row .i { display: inline-flex; align-items: center; gap: 6px; }
.pkg__row svg { width: 16px; height: 16px; color: var(--primary); }
.pkg__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pkg__price small { display: block; color: var(--muted); font-size: .74rem; }
.pkg__price b { font-size: 1.4rem; color: var(--ink-900); }
.pkg__price b span { font-size: .9rem; color: var(--primary); font-weight: 700; }
.stars { color: var(--gold-500); display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media .badge-float {
  position: absolute; inset-block-end: -22px; inset-inline-start: -22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.badge-float .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; }
.badge-float b { font-size: 1.4rem; display: block; }
.badge-float span { font-size: .82rem; color: var(--muted); }
.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); }
.check-list .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--teal-50); color: var(--primary); display: grid; place-items: center; }
.check-list .ic svg { width: 15px; height: 15px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat b { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--gold-400); display: block; }
.stat span { color: #d5efef; font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step__num { width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, var(--teal-600), var(--teal-400)); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 1.3rem; margin-bottom: 18px; box-shadow: var(--shadow-teal); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.tst .quote { color: var(--gold-500); margin-bottom: 12px; }
.tst .quote svg { width: 34px; height: 34px; }
.tst p { color: var(--ink-700); font-size: 1rem; }
.tst__who { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.tst__who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.tst__who b { display: block; }
.tst__who span { color: var(--muted); font-size: .85rem; }
.tst__who .stars { margin-top: 4px; }

/* ---------- Logos / partners ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; opacity: .7; }
.logos span { font-weight: 800; color: var(--ink-400); font-size: 1.3rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: 64px; color: #fff; text-align: center; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(8,45,47,.93), rgba(18,132,135,.82)); }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.cta-band p { color: #d5efef; margin-top: 14px; max-width: 560px; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #cfe2e2; padding-top: 74px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand small { color: rgba(255,255,255,.6); }
.footer-about p { color: #a9c8c8; font-size: .95rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe2e2; transition: .25s; }
.footer-social a:hover { background: var(--gold-600); color: #3a2a06; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #a9c8c8; font-size: .94rem; }
.footer-col a:hover { color: var(--gold-400); padding-inline-start: 5px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: #a9c8c8; font-size: .94rem; margin-bottom: 14px; }
.footer-contact .ic { flex: none; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); color: var(--gold-400); display: grid; place-items: center; }
.footer-contact svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #93b3b3; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; inset-block-end: 24px; inset-inline-start: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 8px; color: var(--ink-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line-2); border-radius: 12px;
  background: var(--sand-50); color: var(--ink-900); transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Info / contact tiles ---------- */
.info-tile { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px; }
.info-tile .ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--teal-50); color: var(--primary); display: grid; place-items: center; }
.info-tile .ic svg { width: 24px; height: 24px; }
.info-tile b { display: block; margin-bottom: 4px; }
.info-tile span, .info-tile a { color: var(--muted); font-size: .95rem; }
.info-tile a:hover { color: var(--primary); }

/* ---------- FAQ / accordion ---------- */
.acc-item { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.acc-q { width: 100%; text-align: start; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-weight: 800; font-size: 1.06rem; color: var(--ink-900); }
.acc-q .pm { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--teal-50); color: var(--primary); display: grid; place-items: center; font-size: 1.3rem; transition: transform .3s, background .3s; }
.acc-item.open .acc-q .pm { transform: rotate(45deg); background: var(--primary); color: #fff; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-a__inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post__media { aspect-ratio: 16/10; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.07); }
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__cat { color: var(--primary); font-weight: 800; font-size: .8rem; margin-bottom: 10px; }
.post h3 { font-size: 1.18rem; margin-bottom: 10px; }
.post p { color: var(--muted); font-size: .94rem; }
.post__meta { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .84rem; }
.post__meta .d { display: inline-flex; align-items: center; gap: 5px; } .post__meta svg { width: 15px; height: 15px; }

/* ---------- Filter chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center; }
.chip { padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff; font-weight: 700; font-size: .9rem; color: var(--ink-700); transition: .2s; }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- Detail page bits ---------- */
.detail-hero { position: relative; height: 60vh; min-height: 420px; border-radius: 0; overflow: hidden; color: #fff; display: flex; align-items: flex-end; isolation: isolate; }
.detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.detail-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,45,47,.9), rgba(8,45,47,.2)); }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.detail-layout > * { min-width: 0; }
.booking-card { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; }
.prose h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 12px; }
.prose p { color: var(--ink-700); margin-bottom: 14px; }
.prose ul.dots { display: grid; gap: 10px; margin: 14px 0; }
.prose ul.dots li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); }
.prose ul.dots li::before { content: ""; flex: none; width: 9px; height: 9px; margin-top: 9px; border-radius: 50%; background: var(--gold-500); }
.itinerary-day { border-inline-start: 2px solid var(--teal-100); padding: 0 22px 26px; position: relative; }
.itinerary-day::before { content: ""; position: absolute; inset-inline-start: -8px; top: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--teal-100); }
.itinerary-day h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 6px; }
.itinerary-day p { color: var(--muted); font-size: .95rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; cursor: pointer; transition: .3s; }
.gallery-grid img:hover { opacity: .9; transform: scale(1.01); }

/* ---------- Riyal symbol ---------- */
.riyal { height: .92em; width: auto; display: inline-block; vertical-align: -0.06em; }

/* ---------- Package/Detail enhancements ---------- */
.detail-hero--tall { height: 68vh; min-height: 520px; }
.detail-hero__content { position: relative; z-index: 1; padding-bottom: 112px; }
@media (max-width: 1024px) { .detail-hero__content { padding-bottom: 44px; } }
.detail-hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.hbadge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.28); color: #fff; padding: 7px 14px; border-radius: 999px; font-weight: 800; font-size: .84rem; }
.hbadge svg { width: 15px; height: 15px; }
.hbadge.gold { background: var(--gold-600); color: #3a2a06; border-color: transparent; }

.trip-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -48px; position: relative; z-index: 5; }
.fact { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow); }
.fact .ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--teal-50); color: var(--primary); display: grid; place-items: center; }
.fact .ic svg { width: 22px; height: 22px; }
.fact small { color: var(--muted); font-size: .8rem; display: block; }
.fact b { font-size: 1.02rem; }

.detail-nav { position: sticky; top: 66px; z-index: 20; display: flex; gap: 4px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border: 1px solid var(--line-2); border-radius: 999px; padding: 6px; margin-bottom: 34px; overflow-x: auto; }
.detail-nav a { padding: 11px 20px; border-radius: 999px; font-weight: 800; font-size: .92rem; color: var(--ink-700); white-space: nowrap; }
.detail-nav a:hover { color: var(--primary); }
.detail-nav a.active { background: var(--primary); color: #fff; }

.det-section { scroll-margin-top: 130px; margin-bottom: 44px; }
.det-section > h2 { font-size: 1.5rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.det-section > h2 .bar { width: 5px; height: 26px; border-radius: 4px; background: var(--gold-500); display: inline-block; }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.inc-card { border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 24px; background: #fff; }
.inc-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; margin-bottom: 16px; }
.inc-card h3 svg { width: 22px; height: 22px; flex: none; padding: 3px; border-radius: 7px; }
.inc-card.yes h3 svg { background: #e7f7ef; color: #0a7d4b; }
.inc-card ul { display: grid; gap: 12px; }
.inc-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); font-size: .95rem; }
.inc-card li .ic { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; margin-top: 2px; }
.inc-card.yes li .ic { background: #e7f7ef; color: #0a7d4b; }
.inc-card.no li .ic { background: #fdeaee; color: #d23b5c; }
.inc-card .ic svg { width: 13px; height: 13px; }

.hl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hl-item { display: flex; gap: 12px; align-items: center; background: var(--sand-50); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 16px 18px; }
.hl-item .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; }
.hl-item .ic svg { width: 20px; height: 20px; }
.hl-item b { font-size: .98rem; }

.booking-card__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); margin-bottom: 16px; }
.booking-card__top .from { color: var(--muted); font-size: .78rem; }
.booking-card__top .now { font-size: 1.9rem; font-weight: 900; color: var(--ink-900); line-height: 1; }
.booking-card__top .now span { font-size: .95rem; color: var(--primary); }
.booking-card__top s { color: var(--muted); font-size: .9rem; }
.save-badge { background: #e7f7ef; color: #0a7d4b; font-weight: 800; font-size: .78rem; padding: 5px 12px; border-radius: 999px; }
.booking-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.booking-specs .s { background: var(--sand-50); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .88rem; color: var(--ink-700); }
.booking-specs svg { width: 17px; height: 17px; color: var(--primary); }
.booking-trust { display: grid; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.booking-trust li { display: flex; gap: 10px; align-items: center; color: var(--ink-700); font-size: .85rem; }
.booking-trust .ic { color: var(--primary); display: grid; place-items: center; flex: none; }
.booking-trust svg { width: 17px; height: 17px; }

.det-review { background: linear-gradient(135deg, var(--teal-800), var(--teal-600)); color: #fff; border-radius: var(--radius-lg); padding: 30px; }
.det-review .stars { color: var(--gold-400); }
.det-review p { color: #eafafa; font-size: 1.1rem; margin: 12px 0 16px; }
.det-review .who { display: flex; align-items: center; gap: 12px; }
.det-review .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.det-review .who b { color: #fff; } .det-review .who span { color: #cfe8e8; font-size: .84rem; }

@media (max-width: 1024px) { .trip-facts { grid-template-columns: repeat(2, 1fr); margin-top: 22px; } }
@media (max-width: 620px) { .trip-facts, .inc-exc, .hl-grid, .booking-specs { grid-template-columns: 1fr; } }

/* ---------- Values / team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member { text-align: center; }
.member__ph { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow); }
.member__ph img { width: 100%; height: 100%; object-fit: cover; }
.member b { font-size: 1.1rem; } .member span { color: var(--primary); font-size: .9rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.mx-auto { margin-inline: auto; }
.maxw-720 { max-width: 720px; }
.hidden { display: none !important; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .dest-grid, .pkg-grid, .tst-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: grid; }
  .section { padding: 64px 0; }
  .hero__stats { gap: 26px; }
}
@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .features, .dest-grid, .pkg-grid, .tst-grid, .blog-grid, .team-grid, .stats, .steps, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 44px 24px; }
  .hero__actions .btn, .hero__actions { width: 100%; }
  .hero__actions .btn { justify-content: center; }
}
