/* ============================================
   NASEEM SAFARI — Premium Luxury Brand Styles
   نسيم سفاري — تجربة سفاري استثنائية
   ============================================ */

:root {
  --green-deep: #013A02;
  --green-dark: #012501;
  --green-mid: #025E04;
  --green-light: #E8F0E8;
  --green-pale: #F4F8F4;
  --gold: #EAC306;
  --gold-light: #F5E07A;
  --gold-dark: #C4A205;
  --gold-muted: rgba(234, 195, 6, 0.15);
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F7F5F0;
  --charcoal: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-light: #8A8A8A;
  --text-on-dark: #F0EDE8;
  --overlay-dark: rgba(1, 37, 1, 0.72);
  --overlay-hero: linear-gradient(180deg, rgba(1,37,1,0.55) 0%, rgba(1,58,2,0.78) 100%);
  --shadow-soft: 0 4px 30px rgba(1, 58, 2, 0.06);
  --shadow-card: 0 8px 40px rgba(1, 58, 2, 0.08);
  --shadow-elevated: 0 20px 60px rgba(1, 58, 2, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxe: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Amiri', 'Noto Naskh Arabic', serif;
  --font-body: 'Tajawal', 'Segoe UI', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--off-white);
  direction: rtl;
  line-height: 1.8;
  overflow-x: hidden;
}

body[dir="ltr"] { direction: ltr; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--green-deep); }

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.container--narrow { max-width: 900px; }
.section-pad { padding: clamp(60px, 10vw, 140px) 0; }
.gold-line { width: 60px; height: 2px; background: var(--gold); display: block; margin: 0 auto 24px; }
.gold-line--right { margin: 0 0 24px; }
body[dir="ltr"] .gold-line--right { margin: 0 0 24px; }
.text-center { text-align: center; }

/* ---------- Typography ---------- */
.heading-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.heading-section {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.text-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.text-body-lg {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 2;
  color: var(--text-secondary);
}

.text-elegant {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 2.2;
  color: var(--text-secondary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.btn:hover::after { transform: translateX(0); }

.btn--primary {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(234, 195, 6, 0.3);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(234, 195, 6, 0.4); }

.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--outline-dark { background: transparent; color: var(--green-deep); border: 1.5px solid var(--green-deep); }
.btn--outline-dark:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }

.btn--whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25); }
.btn--whatsapp:hover { background: #1EBE5B; transform: translateY(-2px); }

.btn--dark { background: var(--green-deep); color: var(--white); }
.btn--dark:hover { background: var(--green-mid); transform: translateY(-2px); }

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  transition: var(--transition-smooth);
  padding: 16px 0;
}

.header--scrolled {
  background: var(--green-dark);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; }

.header__logo { display: flex; align-items: center; }
.header__logo img, .header__logo svg { height: 40px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 32px; }

.header__link {
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.85);
  position: relative; padding: 4px 0;
}
.header__link::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: var(--transition-fast);
}
body[dir="ltr"] .header__link::after { right: auto; left: 0; }
.header__link:hover { color: var(--white); }
.header__link:hover::after { width: 100%; }

.header__cta { padding: 10px 28px; font-size: 0.9rem; }

/* Language Toggle */
.lang-toggle {
  display: flex; gap: 4px; align-items: center;
  background: rgba(255,255,255,0.1); border-radius: 100px; padding: 3px;
}
.lang-toggle__btn {
  padding: 5px 14px; border-radius: 100px; border: none;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition-fast);
  background: transparent; color: rgba(255,255,255,0.6);
}
.lang-toggle__btn.active {
  background: var(--gold); color: var(--green-deep);
}
.lang-toggle__btn:hover:not(.active) { color: var(--white); }

/* Mobile Menu */
/* Mobile Toggle — Hamburger ↔ X */
.header__mobile-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
  width: 44px; height: 44px; position: relative; z-index: 1100;
}
.header__mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: var(--transition-fast); transform-origin: center;
}
.header__mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
  background: var(--green-dark); z-index: 1050;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; transition: var(--transition-smooth);
}
.mobile-nav.active { display: flex; opacity: 1; }
.mobile-nav__link {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--white);
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.5s forwards;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 12s ease-out;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: var(--overlay-hero); }
.hero__grain {
  position: absolute; inset: 0; opacity: 0.3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(234, 195, 6, 0.12); border: 1px solid rgba(234, 195, 6, 0.3);
  padding: 8px 24px; border-radius: 100px; font-size: 0.85rem;
  font-weight: 500; color: var(--gold); margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero__title { margin-bottom: 24px; }
.hero__desc {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-on-dark);
  line-height: 1.9; max-width: 680px; margin: 0 auto 44px; font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: clamp(28px, 4vw, 56px); justify-content: center; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat { text-align: center; min-width: 100px; }
.hero__stat-value {
  display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--gold); line-height: 1.1;
}
.hero__stat-label {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.7);
  margin-top: 6px; font-weight: 400;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: float 3s ease-in-out infinite;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--green-deep); padding: 28px 0; border-bottom: 1px solid rgba(234, 195, 6, 0.15); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 60px); flex-wrap: wrap; }
.trust-bar__item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; }
.trust-bar__icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* ---------- About ---------- */
.about { background: var(--off-white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__visual { position: relative; height: 500px; border-radius: var(--radius-lg); overflow: hidden; }
.about__img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease-out; }
.about__visual:hover .about__img { transform: scale(1.05); }
.about__visual-accent {
  position: absolute; bottom: -20px; left: -20px; width: 120px; height: 120px;
  border: 2px solid var(--gold); border-radius: var(--radius-md); z-index: -1;
}
body[dir="ltr"] .about__visual-accent { left: auto; right: -20px; }
.about__stat-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(1, 37, 1, 0.9); backdrop-filter: blur(15px);
  padding: 20px 28px; border-radius: var(--radius-md);
  border: 1px solid rgba(234, 195, 6, 0.2);
}
body[dir="ltr"] .about__stat-badge { right: auto; left: 24px; }
.about__stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ========== PACKAGES SECTION — Horizontal Cards ========== */
.packages { background: var(--cream); position: relative; }
.packages::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.packages__list { display: flex; flex-direction: column; gap: 28px; margin-top: 60px; }

.pkg-card {
  display: grid; grid-template-columns: 380px 1fr;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition-luxe);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }

.pkg-card__img-wrap { position: relative; overflow: hidden; min-height: 260px; }
.pkg-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease-out; }
.pkg-card:hover .pkg-card__img { transform: scale(1.06); }
.pkg-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,37,1,0.3) 0%, transparent 60%);
}
.pkg-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(1, 37, 1, 0.85); backdrop-filter: blur(10px);
  color: var(--gold); padding: 6px 18px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid rgba(234, 195, 6, 0.2);
}
body[dir="ltr"] .pkg-card__badge { right: auto; left: 20px; }

.pkg-card__body {
  padding: 36px 40px; display: flex; flex-direction: column; justify-content: center;
}
.pkg-card__category {
  font-size: 0.78rem; font-weight: 600; color: var(--gold-dark);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
.pkg-card__title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--green-deep); margin-bottom: 14px; line-height: 1.5;
}
.pkg-card__desc {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px;
}
.pkg-card__meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.pkg-card__meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-light);
}
.pkg-card__meta-icon { color: var(--gold); font-size: 0.9rem; }
.pkg-card__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.pkg-card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }
.pkg-card__price-label { font-size: 0.8rem; color: var(--text-light); }
.pkg-card__cta .btn { padding: 12px 32px; font-size: 0.9rem; }

/* ---------- Why Section ---------- */
.why { background: var(--green-deep); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(234, 195, 6, 0.06) 0%, transparent 70%);
}
.why .heading-section { color: var(--white); }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 60px; }

.why-card {
  padding: 40px 32px; border: 1px solid rgba(234, 195, 6, 0.12);
  border-radius: var(--radius-lg); transition: var(--transition-smooth);
  background: rgba(255,255,255,0.02); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(234, 195, 6, 0.1) 0%, transparent 70%);
}
.why-card:hover { border-color: rgba(234, 195, 6, 0.3); background: rgba(255,255,255,0.04); transform: translateY(-4px); }
.why-card__icon {
  width: 52px; height: 52px; background: rgba(234, 195, 6, 0.1);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; font-size: 1.4rem; color: var(--gold);
}
.why-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.why-card__desc { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.9; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off-white); }
.testimonials__slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; margin-top: 60px; }

.testimonial-card {
  background: var(--white); padding: 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); position: relative; transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.testimonial-card:hover { box-shadow: var(--shadow-card); border-color: rgba(234, 195, 6, 0.15); transform: translateY(-4px); }
.testimonial-card__quote { position: absolute; top: 20px; left: 20px; font-family: var(--font-display); font-size: 4rem; color: var(--gold); opacity: 0.2; line-height: 1; }
body[dir="ltr"] .testimonial-card__quote { left: auto; right: 20px; }
.testimonial-card__text { font-family: var(--font-display); font-size: 1.1rem; line-height: 2; color: var(--text-secondary); margin-bottom: 28px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-deep);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 1rem; color: var(--green-deep); }
.testimonial-card__origin { font-size: 0.82rem; color: var(--text-light); margin-top: 2px; }
.testimonial-card__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-top: 4px; }

/* ---------- CTA Section ---------- */
.cta-section { position: relative; padding: clamp(80px, 12vw, 160px) 0; overflow: hidden; }
.cta-section__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-section__overlay { position: absolute; inset: 0; background: var(--overlay-hero); }
.cta-section__content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-section__content .heading-section { color: var(--white); margin-bottom: 20px; }
.cta-section__desc { color: var(--text-on-dark); font-size: 1.1rem; line-height: 1.9; margin-bottom: 40px; }
.cta-section__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo { height: 36px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand-desc { font-size: 0.92rem; line-height: 1.9; max-width: 360px; }
.footer__heading { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.footer__link { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); padding: 6px 0; transition: var(--transition-fast); }
.footer__link:hover { color: var(--gold); padding-right: 8px; }
body[dir="ltr"] .footer__link:hover { padding-right: 0; padding-left: 8px; }
.footer__contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin-bottom: 12px; }
.footer__contact-icon { color: var(--gold); flex-shrink: 0; }
.footer__bottom {
  padding: 28px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--transition-fast); font-size: 0.9rem;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35); transition: var(--transition-smooth);
  cursor: pointer;
}
body[dir="ltr"] .whatsapp-float { left: auto; right: 28px; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float__pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2s infinite; }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 100px; left: 28px; z-index: 900;
  width: 48px; height: 48px; background: var(--green-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); border: 1px solid rgba(234,195,6,0.2);
  cursor: pointer; transition: var(--transition-smooth);
  opacity: 0; pointer-events: none; transform: translateY(20px);
}
body[dir="ltr"] .back-to-top { left: auto; right: 28px; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); background: var(--green-medium); }
.back-to-top svg { width: 22px; height: 22px; color: var(--gold); }

/* ========== PACKAGE PAGE STYLES ========== */
.pkg-hero {
  position: relative; min-height: 85vh; display: flex;
  align-items: flex-end; overflow: hidden; padding-bottom: 80px;
}
.pkg-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pkg-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,37,1,0.3) 0%, rgba(1,37,1,0.85) 100%); }
.pkg-hero__content { position: relative; z-index: 2; width: 100%; }
.pkg-hero__meta { display: flex; align-items: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.pkg-hero__meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.pkg-hero__meta-icon { color: var(--gold); }
.pkg-hero__title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 16px;
}
.pkg-hero__subtitle { font-size: 1.15rem; color: var(--text-on-dark); line-height: 1.8; max-width: 600px; margin-bottom: 12px; }
.pkg-hero__price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 32px; }
.pkg-hero__price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.pkg-hero__price-note { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.pkg-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Quick Info Bar */
.quick-info { background: var(--white); border-bottom: 1px solid rgba(1, 58, 2, 0.06); box-shadow: var(--shadow-soft); position: relative; z-index: 10; }
.quick-info__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.quick-info__item { padding: 28px 20px; text-align: center; border-left: 1px solid rgba(1, 58, 2, 0.06); }
body[dir="ltr"] .quick-info__item { border-left: none; border-right: 1px solid rgba(1, 58, 2, 0.06); }
.quick-info__item:last-child { border: none; }
.quick-info__icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 8px; }
.quick-info__label { font-size: 0.75rem; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.quick-info__value { font-weight: 700; font-size: 0.92rem; color: var(--green-deep); }

/* Narrative */
.narrative { background: var(--off-white); }
.narrative__content { max-width: 780px; margin: 0 auto; }
.narrative__text {
  font-family: var(--font-display); font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 2.4; color: var(--text-secondary); text-align: center;
}
.narrative__text p { margin-bottom: 28px; }

/* Itinerary */
.itinerary { background: var(--white); }
.itinerary__timeline { max-width: 860px; margin: 60px auto 0; position: relative; }
.itinerary__timeline::before {
  content: ''; position: absolute; top: 0; right: 23px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), var(--green-deep)); border-radius: 2px;
}
body[dir="ltr"] .itinerary__timeline::before { right: auto; left: 23px; }

.itin-day { position: relative; padding-right: 72px; margin-bottom: 48px; }
body[dir="ltr"] .itin-day { padding-right: 0; padding-left: 72px; }
.itin-day:last-child { margin-bottom: 0; }
.itin-day__dot {
  position: absolute; right: 12px; top: 6px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--gold); border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
body[dir="ltr"] .itin-day__dot { right: auto; left: 12px; }
.itin-day__label {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.itin-day__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; }
.itin-day__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.9; }
.itin-day__highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.itin-day__tag { background: var(--green-pale); color: var(--green-deep); padding: 4px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }
.itin-day__meals { margin-top: 12px; font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }

/* Includes / Excludes */
.includes { background: var(--cream); }
.includes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.includes__col { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); }
.includes__col-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--green-deep); margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.includes__col-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.includes__col-icon--yes { background: rgba(1, 58, 2, 0.1); color: var(--green-deep); }
.includes__col-icon--no { background: rgba(180, 40, 40, 0.08); color: #B42828; }
.includes__item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6;
}
.includes__item:last-child { border-bottom: none; }
.includes__item-icon { flex-shrink: 0; margin-top: 3px; font-size: 0.9rem; }
.includes__item-icon--yes { color: var(--green-mid); }
.includes__item-icon--no { color: #C44; }

/* Booking Form */
.booking { background: var(--off-white); }
.booking__card {
  max-width: 720px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-card); border: 1px solid rgba(234, 195, 6, 0.1);
}
.booking__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--green-deep); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid rgba(1, 58, 2, 0.12);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-primary); background: var(--off-white); transition: var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(234, 195, 6, 0.15); background: var(--white);
}
.form-textarea { min-height: 120px; resize: vertical; }
.booking__submit { grid-column: 1 / -1; margin-top: 8px; }

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--white); padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1); border-top: 1px solid rgba(234, 195, 6, 0.15);
}
.mobile-sticky-cta__inner { display: flex; gap: 10px; }
.mobile-sticky-cta .btn { flex: 1; padding: 12px 16px; font-size: 0.88rem; }

/* ---------- Animations ---------- */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .reveal { opacity: 0; transform: translateY(30px); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Stats Row ---------- */
.about__stats { display: flex; gap: 24px; flex-wrap: wrap; }
.stat-badge {
  background: rgba(1, 37, 1, 0.9); backdrop-filter: blur(15px);
  padding: 18px 24px; border-radius: var(--radius-md);
  border: 1px solid rgba(234, 195, 6, 0.2); text-align: center; min-width: 140px;
}
.stat-badge__num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-badge__label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---------- Back Button ---------- */
.pkg-back-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  color: var(--gold); background: rgba(255,255,255,0.1); border: 1px solid rgba(234, 195, 6, 0.3);
  border-radius: 100px; backdrop-filter: blur(10px); transition: var(--transition-fast);
  margin-bottom: 24px;
}
.pkg-back-btn:hover { background: rgba(234, 195, 6, 0.15); color: var(--white); }

/* ---------- Total Price Display ---------- */
.total-price-display {
  display: none; margin-top: 16px; padding: 16px 24px;
  background: var(--green-pale); border: 1px solid rgba(1, 58, 2, 0.12);
  border-radius: var(--radius-sm); font-size: 1.05rem; color: var(--green-deep);
  text-align: center; grid-column: 1 / -1;
}
.total-price-display strong { font-size: 1.3rem; color: var(--gold-dark); }

/* ---------- Legal Pages ---------- */
.legal-page { padding: 120px 0 60px; background: var(--off-white); min-height: 100vh; }
.legal-content {
  max-width: 900px; margin: 0 auto; background: var(--white);
  padding: clamp(32px, 5vw, 60px); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.legal-content h1 { font-family: var(--font-display); color: var(--green-deep); font-size: 2.2rem; margin-bottom: 10px; }
.legal-content .last-updated { color: var(--text-light); font-size: 0.88rem; margin-bottom: 30px; }
.legal-content h2 { font-family: var(--font-display); color: var(--green-deep); font-size: 1.4rem; margin: 28px 0 14px; }
.legal-content h3 { color: var(--green-deep); font-size: 1.1rem; margin: 18px 0 10px; }
.legal-content p { line-height: 1.9; margin-bottom: 14px; color: var(--text-secondary); }
.legal-content ul { margin: 14px 0; padding-right: 20px; }
body[dir="ltr"] .legal-content ul { padding-right: 0; padding-left: 20px; }
.legal-content li { margin-bottom: 8px; line-height: 1.7; color: var(--text-secondary); list-style: disc; }
.legal-back-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: var(--gold); color: var(--green-deep); border-radius: var(--radius-sm);
  font-weight: 600; transition: var(--transition-fast); margin-bottom: 8px;
}
.legal-back-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .includes__grid { grid-template-columns: 1fr; }
  .pkg-card { grid-template-columns: 300px 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__mobile-toggle { display: flex; }
  .hero { min-height: 90vh; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .trust-bar__inner { flex-direction: column; gap: 16px; }
  .pkg-card { grid-template-columns: 1fr; }
  .pkg-card__img-wrap { min-height: 220px; }
  .why__grid { grid-template-columns: 1fr; }
  .testimonials__slider { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .booking__form { grid-template-columns: 1fr; }
  .quick-info__inner { grid-template-columns: 1fr 1fr; }
  .quick-info__item { border-left: none; border-bottom: 1px solid rgba(1, 58, 2, 0.06); }
  .pkg-hero { min-height: 75vh; padding-bottom: 60px; }
  .pkg-hero__actions { flex-direction: column; align-items: stretch; }
  .pkg-page .header:not(.header--scrolled) { background: rgba(1, 37, 1, 0.85); backdrop-filter: blur(12px); }
  .mobile-sticky-cta { display: block; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  body.pkg-page { padding-bottom: 80px; }
  .hero__stats { gap: 20px; margin-top: 28px; padding-top: 24px; }
  .hero__stat { min-width: 80px; }
  .back-to-top { bottom: 96px; left: 20px; width: 42px; height: 42px; }
  body[dir="ltr"] .back-to-top { left: auto; right: 20px; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 54px; height: 54px; }
  body[dir="ltr"] .whatsapp-float { left: auto; right: 20px; }
}

@media (max-width: 480px) {
  .quick-info__inner { grid-template-columns: 1fr; }
  .hero__badge { font-size: 0.78rem; padding: 6px 18px; }
}

/* SAR Icon */
.sar-icon { display: inline-block; width: 14px; height: 14px; vertical-align: -1px; margin-inline-start: 3px; }
.pkg-card__price .sar-icon { width: 13px; height: 13px; }
.pkg-hero__price .sar-icon { width: 22px; height: 22px; vertical-align: -2px; }
.pricing-table .sar-icon { width: 12px; height: 12px; vertical-align: -1px; }
/* Pricing Table */
.pricing-section { padding: 16px 0 0 !important; margin-bottom: -40px; }
.pricing-section h3 { text-align: center; font-family: var(--font-display); color: var(--green-deep); margin-bottom: 12px; font-size: 1.1rem; }
.pricing-table { width: 100%; max-width: 500px; margin: 16px auto; border-collapse: collapse; direction: rtl; }
.pricing-table th { background: var(--green-deep); color: var(--gold); padding: 10px 16px; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; }
.pricing-table td { padding: 10px 16px; text-align: center; border-bottom: 1px solid rgba(1,58,2,0.08); font-family: var(--font-body); font-size: 0.95rem; }
.pricing-table tr:nth-child(even) td { background: rgba(1,58,2,0.02); }
.pricing-table .highlight-row td { background: var(--gold-muted); font-weight: 600; color: var(--green-deep); }
body[dir="ltr"] .pricing-table { direction: ltr; }
/* Back button: never overlap the fixed header */
.pkg-back-btn { position: relative; z-index: 1; }
/* Mobile/Tablet responsive fixes */
@media (max-width: 768px) {
  .sar-icon { width: 11px; height: 11px; vertical-align: -1px; margin-inline-start: 2px; }
  .pkg-card__price .sar-icon { width: 10px; height: 10px; }
  .pkg-hero__price .sar-icon { width: 16px; height: 16px; vertical-align: -1px; }
  .pricing-table .sar-icon { width: 10px; height: 10px; }
  .pricing-table th { padding: 8px 12px; font-size: 0.82rem; }
  .pricing-table td { padding: 8px 12px; font-size: 0.88rem; }
  .pricing-section { margin-bottom: -30px; }
  .pricing-section h3 { font-size: 1rem !important; }
}
@media (max-width: 480px) {
  .sar-icon { width: 10px; height: 10px; margin-inline-start: 2px; }
  .pkg-card__price .sar-icon { width: 9px; height: 9px; }
  .pkg-hero__price .sar-icon { width: 14px; height: 14px; }
  .pricing-table .sar-icon { width: 9px; height: 9px; }
  .pricing-table th { padding: 7px 10px; font-size: 0.78rem; }
  .pricing-table td { padding: 7px 10px; font-size: 0.82rem; }
}
