/* ============================================================
   Desert Safari Abu Dhabi — Global Stylesheet
   Fonts: Poppins (headings) / Roboto (body)
   Brand button color: #FD4621, text on buttons: #FFFFFF
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --brand: #FD4621;
  --brand-dark: #e13512;
  --brand-tint: #fff2ee;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;

  --ink: #1b2430;
  --ink-soft: #5a6472;
  --muted: #8a93a1;
  --line: #e9ecf1;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --brand-light: #ff8a5c;

  /* Soft pastel accents for cards (no yellow anywhere) */
  --pastel-violet: #f3f0ff;
  --pastel-peach:  #fff1ec;
  --pastel-mint:   #eefaf3;
  --pastel-blue:   #eef4ff;
  --ic-violet: #6d5bd0;
  --ic-mint:   #1fa971;
  --ic-blue:   #3b7dd8;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(20, 30, 48, 0.06);
  --shadow: 0 14px 40px rgba(20, 30, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 30, 48, 0.16);

  --container: 1200px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

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

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

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section__subtitle { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

.text-brand { color: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(253, 70, 33, 0.28);
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(253, 70, 33, 0.36); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.26);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: #fff5f2; transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--lg { padding: 16px 34px; font-size: 1.06rem; }
.btn--lg .btn__icon { width: 20px; height: 20px; transition: transform var(--transition); }
.btn--lg:hover .btn__icon { transform: translateX(4px); }
.btn__icon { width: 18px; height: 18px; flex: none; }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  padding: 9px 16px;
}
.announce a { text-decoration: underline; font-weight: 600; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), #ff7a4d);
  display: grid; place-items: center; color: #fff; flex: none;
  box-shadow: 0 6px 16px rgba(253, 70, 33, 0.3);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { line-height: 1.05; }
.brand__name small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--brand); background: var(--brand-tint); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--line); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; transition: var(--transition);
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  padding: 90px 0;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg.is-placeholder {
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(253,122,77,0.55), transparent 60%),
    linear-gradient(160deg, #b5471f 0%, #7a2d13 45%, #2c1408 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(10, 8, 6, 0.78) 0%, rgba(10, 8, 6, 0.55) 45%, rgba(10, 8, 6, 0.25) 100%);
}
.hero__inner { max-width: 720px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  padding: 7px 16px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; margin-bottom: 22px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.28); } 50% { box-shadow: 0 0 0 7px rgba(255,255,255,0.05); } }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--brand-light), #ffd0b0);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--brand-light);
}
.hero__desc { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: rgba(255, 255, 255, 0.9); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero stats — compact glass chips */
.hero__stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.hero__stat {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 20px 12px 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  position: relative;
}
.hero__stat + .hero__stat::before {
  content: ""; position: absolute; left: -7px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 26px; background: rgba(255,255,255,0.14);
}
.hero__stat b { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; line-height: 1; color: #fff; letter-spacing: -0.01em; }
.hero__stat b .plus { color: var(--brand-light); margin-left: 1px; }
.hero__stat b i { font-style: normal; font-size: 0.72rem; font-weight: 600; color: var(--brand-light); vertical-align: 0.35em; letter-spacing: 0.04em; }
.hero__stat span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.78); font-family: var(--font-head); font-weight: 400; }

/* Hero entrance animation (staggered via inline --d) */
.hero-anim { opacity: 0; transform: translateY(22px); animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: calc(var(--d, 0) * 0.12s + 0.1s); }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Packages
   ============================================================ */
.pkg-controls {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.pkg-filter {
  font-family: var(--font-head); font-weight: 500; font-size: 0.92rem;
  padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-soft); transition: var(--transition);
}
.pkg-filter:hover { border-color: var(--brand); color: var(--brand); }
.pkg-filter.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.pkg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.pkg-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-card__media img { transform: scale(1.06); }

/* Placeholder media (until real images are added) */
.pkg-card__ph {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center; padding: 20px;
  color: #fff;
  background: linear-gradient(150deg, #c1502a, #6d2810);
}
.pkg-card__ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12), transparent 40%);
}
.pkg-card__ph span { position: relative; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; opacity: 0.9; }

.pkg-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(17, 22, 29, 0.72); color: #fff;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-head); font-weight: 600; font-size: 0.76rem;
  padding: 6px 13px; border-radius: 999px;
}
.pkg-card__fav {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,0.9); color: var(--brand);
  font-family: var(--font-head); font-weight: 600; font-size: 0.74rem;
  padding: 6px 12px; border-radius: 999px;
}

.pkg-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__title { font-size: 1.2rem; margin-bottom: 10px; }

.pkg-card__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 16px; }
.pkg-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.pkg-card__meta svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

.pkg-card__price {
  display: flex; align-items: baseline; gap: 6px;
  padding: 14px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
}
.pkg-card__price b { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); }
.pkg-card__price .cur { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--brand); }
.pkg-card__price .unit { font-size: 0.82rem; color: var(--muted); margin-left: 2px; white-space: nowrap; }

.pkg-card__inc-title { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.pkg-card__inc { display: grid; gap: 8px; margin-bottom: 20px; }
.pkg-card__inc li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4; }
.pkg-card__inc li svg { width: 16px; height: 16px; color: var(--whatsapp); flex: none; margin-top: 3px; }
.pkg-card__inc.is-collapsed li:nth-child(n+6) { display: none; }
.pkg-card__more {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--brand);
  display: inline-flex; align-items: center; gap: 5px; margin-top: -10px; margin-bottom: 18px;
}
.pkg-card__more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.pkg-card__more.is-open svg { transform: rotate(180deg); }

.pkg-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }

/* ============================================================
   Why choose us  (header row + big image + stacked cards)
   ============================================================ */
.why__head {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
  align-items: end; margin-bottom: 48px;
}
.why__title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.1; margin-top: 10px; }
.why__intro { color: var(--ink-soft); font-size: 1.06rem; padding-bottom: 6px; }

.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.why__media {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow); min-height: 440px;
}
.why__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.why__cards { display: grid; gap: 18px; align-content: center; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 26px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.why-card__icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; flex: none; }
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 5px; }
.why-card p { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.55; }
.why-card--1 .why-card__icon { background: var(--pastel-peach); color: var(--brand); }
.why-card--2 .why-card__icon { background: var(--pastel-violet); color: var(--ic-violet); }
.why-card--3 .why-card__icon { background: var(--pastel-mint); color: var(--ic-mint); }
.why-card--4 .why-card__icon { background: var(--pastel-blue); color: var(--ic-blue); }

/* ============================================================
   Gallery  (3D coverflow, horizontally scrollable)
   ============================================================ */
.gallery__stage { position: relative; max-width: 1320px; margin: 0 auto; padding: 10px 0 4px; }
.gallery__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 40px clamp(16px, calc(50vw - 220px), 46vw);
  scrollbar-width: none; cursor: grab;
}
.gallery__viewport::-webkit-scrollbar { display: none; }
.gallery__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery__track { display: flex; gap: 26px; width: max-content; }
.gallery__item {
  position: relative; flex: 0 0 auto;
  width: clamp(260px, 42vw, 440px); aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s, opacity 0.45s;
  transform-origin: center center;
  will-change: transform;
  background: linear-gradient(150deg, #c1502a, #6d2810);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.gallery__ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px;
  color: rgba(255,255,255,0.92); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em;
}
.gallery__ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 80%, rgba(255,255,255,0.14), transparent 42%);
}
.gallery__item.is-active { box-shadow: var(--shadow-lg); }
.gallery__item.is-active::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.9);
}
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; color: var(--ink); box-shadow: var(--shadow);
  display: grid; place-items: center; transition: var(--transition);
}
.gallery__nav:hover { background: var(--brand); color: #fff; transform: translateY(-50%) scale(1.06); }
.gallery__nav svg { width: 22px; height: 22px; }
.gallery__nav--prev { left: clamp(8px, 3vw, 40px); }
.gallery__nav--next { right: clamp(8px, 3vw, 40px); }

/* ============================================================
   FAQ  (accordion)
   ============================================================ */
.faq__wrap { max-width: 820px; }
.faq__list { display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq__item.is-open { border-color: rgba(253, 70, 33, 0.35); box-shadow: var(--shadow); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; gap: 16px; justify-content: space-between;
  font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--ink);
  padding: 20px 24px; line-height: 1.4;
}
.faq__icon { position: relative; width: 20px; height: 20px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--brand); border-radius: 2px; transition: transform var(--transition); }
.faq__icon::before { width: 14px; height: 2.4px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2.4px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq__a-inner { padding: 0 24px 22px; }
.faq__a-inner p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.7; }
.faq__foot { text-align: center; margin-top: 30px; color: var(--ink-soft); font-family: var(--font-head); font-weight: 500; }
.faq__foot a { color: var(--brand); font-weight: 600; text-decoration: underline; }

/* ============================================================
   Feature / Why-us (legacy — used on about page)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.feature { text-align: center; padding: 34px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: var(--transition); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { width: 62px; height: 62px; border-radius: 18px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin: 0 auto 18px; }
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 40px; align-items: center;
  min-height: 360px; padding: 58px clamp(28px, 6vw, 86px);
  color: #fff; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #111d2d 0%, #182c42 58%, #243b51 100%);
  box-shadow: 0 24px 60px rgba(17, 29, 45, 0.22);
}
.cta-band::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(110deg, rgba(253,70,33,0.96) 0%, rgba(253,70,33,0.78) 28%, transparent 66%);
}
.cta-band::after {
  content: ""; position: absolute; z-index: -1; width: 420px; height: 420px; right: -150px; bottom: -210px;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,0.035), 0 0 0 56px rgba(255,255,255,0.025);
}
.cta-band__content { position: relative; max-width: 760px; }
.cta-band__eyebrow { margin: 0 0 12px; color: #ffd2c5; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.cta-band h2 { max-width: 700px; margin: 0 0 16px; color: #fff; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.03; letter-spacing: -0.035em; }
.cta-band__lead { max-width: 650px; margin: 0 0 22px; color: rgba(255,255,255,0.82); font-size: 1.02rem; line-height: 1.65; }
.cta-band__trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 28px; }
.cta-band__trust span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.86); font-size: 0.82rem; }
.cta-band__trust svg { width: 16px; height: 16px; fill: none; stroke: #ffad93; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-band__actions .btn { min-height: 50px; padding-inline: 22px; }
.cta-band__actions .btn--whatsapp { background: #23d66b; color: #082b1a; box-shadow: 0 10px 24px rgba(35,214,107,0.2); }
.cta-band__actions .btn--whatsapp:hover { background: #42e984; color: #062014; }
.cta-band__actions .btn--whatsapp span { display: inline-block; margin-left: 5px; font-size: 1.1em; transition: transform var(--transition); }
.cta-band__actions .btn--whatsapp:hover span { transform: translate(2px, -2px); }
.cta-band__note { margin: 14px 0 0; color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.cta-band__side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; padding-top: 14px; color: rgba(255,255,255,0.7); text-align: right; }
.cta-band__side-label { color: #ffb39e; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.cta-band__side strong { color: rgba(255,255,255,0.94); font-family: var(--font-head); font-size: clamp(4.5rem, 8vw, 7rem); line-height: 0.85; letter-spacing: -0.08em; }
.cta-band__side-line { width: 64px; height: 2px; background: var(--brand); }
.cta-band__side-caption { color: rgba(255,255,255,0.62); font-size: 0.82rem; line-height: 1.55; }
.cta-band__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.cta-band__glow--one { width: 190px; height: 190px; top: -100px; left: 39%; background: rgba(255,157,124,0.16); }
.cta-band__glow--two { width: 130px; height: 130px; right: 12%; top: 22%; background: rgba(253,70,33,0.18); }
.cta-band .hero__actions { justify-content: flex-start; }

/* ============================================================
   Forms
   ============================================================ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: var(--transition); width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(253, 70, 33, 0.12); }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 14px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; display: none; }
.form-status.is-success { display: block; background: #e9f9ef; color: #1a7a43; border: 1px solid #b7e9c9; }
.form-status.is-error { display: block; background: #fdecea; color: #b3261e; border: 1px solid #f6c9c4; }
.contact-success-actions { margin-top: 14px; }
.contact-success-actions .btn { width: 100%; justify-content: center; }

/* ============================================================
   Generic content / legal pages
   ============================================================ */
.page-hero { background: var(--bg-soft); padding: 70px 0; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 0.86rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--brand); }

.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.18rem; margin: 26px 0 10px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.prose ul { padding-left: 0; margin-bottom: 16px; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.prose a { color: var(--brand); text-decoration: underline; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.ph-block { display: grid; place-items: center; color: #fff; text-align: center; padding: 30px; font-family: var(--font-head); font-weight: 600; background: linear-gradient(150deg, #c1502a, #6d2810); height: 100%; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.info-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; }
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.info-card p { color: var(--ink-soft); font-size: 0.94rem; }
.info-card a { color: var(--brand); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #12161d; color: #c3cad6; padding: 64px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand__name small { color: #8a93a1; }
.footer__about { font-size: 0.92rem; color: #9aa3b2; max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #9aa3b2; font-size: 0.92rem; transition: var(--transition); }
.footer__links a:hover { color: var(--brand); padding-left: 4px; }
.footer__contact { display: grid; gap: 12px; }
.footer__contact a, .footer__contact span { display: flex; gap: 10px; color: #9aa3b2; font-size: 0.92rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.07); display: grid; place-items: center; transition: var(--transition); }
.footer__social a:hover { background: var(--brand); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.86rem; color: #8a93a1; }
.footer__bottom a:hover { color: var(--brand); }

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.wa-float,
.call-float {
  position: fixed; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  color: #fff; display: grid; place-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float { right: 22px; background: var(--whatsapp); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); animation: wa-pulse 2.8s ease-out infinite; }
.wa-float:hover { transform: scale(1.08); animation-play-state: paused; }
.wa-float svg { width: 30px; height: 30px; }
.call-float { left: 22px; display: none; background: var(--brand); box-shadow: 0 12px 28px rgba(253, 70, 33, 0.38); }
.call-float:hover { transform: scale(1.08); }
.call-float svg { width: 27px; height: 27px; }
@keyframes wa-pulse {
  0%, 55%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.34); }
  70% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .why__head { grid-template-columns: 1fr; gap: 14px; align-items: start; margin-bottom: 36px; }
  .why__grid { grid-template-columns: 1fr; gap: 24px; }
  .why__media { min-height: 300px; order: -1; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform var(--transition);
    visibility: hidden;
  }
  body.nav-open .nav__links { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 13px 14px; font-size: 1rem; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__actions .btn--primary { display: none; }
  .section { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 42px 28px; }
  .cta-band__side { display: none; }
  .cta-band__lead { font-size: 0.98rem; }
  .cta-band__actions { align-items: stretch; }
  .cta-band__actions .btn { flex: 1 1 220px; justify-content: center; }
}

@media (max-width: 620px) {
  .call-float { display: grid; }
  .wa-float, .call-float { bottom: max(18px, env(safe-area-inset-bottom)); }
  .wa-float { right: 18px; }
  .call-float { left: 18px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 64px 0; }
  .hero__stats { gap: 10px; margin-top: 32px; }
  .hero__stat { flex: 1 1 calc(33.333% - 10px); padding: 11px 12px; text-align: center; align-items: center; }
  .hero__stat + .hero__stat::before { display: none; }
  .hero__stat b { font-size: 1.24rem; }
  .hero__stat span { font-size: 0.72rem; }
  .form-card { padding: 26px 20px; }
  .pkg-card__actions { grid-template-columns: 1fr; }
  .why-card { padding: 20px; gap: 15px; }
  .why-card__icon { width: 48px; height: 48px; }
  .gallery__item { width: 82vw; }
  .gallery__nav { width: 44px; height: 44px; }
  .faq__q { padding: 17px 18px; font-size: 0.98rem; }
  .faq__a-inner { padding: 0 18px 18px; }
  .cta-band { padding: 34px 20px; border-radius: 22px; }
  .cta-band h2 { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .cta-band__eyebrow { font-size: 0.68rem; }
  .cta-band__trust { display: grid; gap: 9px; margin-bottom: 24px; }
  .cta-band__actions { display: grid; gap: 10px; }
  .cta-band__actions .btn { width: 100%; }
  .cta-band__note { line-height: 1.5; }
}

/* ============================================================
   Scroll reveal  (only active once JS marks the page ready;
   without JS or with reduced motion, content shows normally)
   ============================================================ */
.reveals-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveals-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* Stagger children of a shared container */
.reveals-ready .why__cards [data-reveal]:nth-child(2) { --reveal-delay: 0.08s; }
.reveals-ready .why__cards [data-reveal]:nth-child(3) { --reveal-delay: 0.16s; }
.reveals-ready .why__cards [data-reveal]:nth-child(4) { --reveal-delay: 0.24s; }

/* Reduced motion: disable animation but NEVER hide content */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-anim { opacity: 1 !important; transform: none !important; }
  .reveals-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Desert Safari Abu Dhabi logo asset */
.brand__mark { overflow: hidden; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: inherit; }
