/* ============================================================
   أجازات مصر - رحلات أنطاليا
   styles.css - تصميم Mobile First / RTL
   ============================================================ */

/* ===================== المتغيرات (هوية اللوجو) ===================== */
:root {
  /* ألوان الهوية المستخرجة من اللوجو */
  --turquoise: #16b0ad;
  --turquoise-dark: #0d8f8c;
  --teal-deep: #0d6e78;
  --blue: #1478c4;
  --blue-deep: #0c5aa0;
  --green: #7cbf3f;
  --green-dark: #5fa22a;
  --yellow: #ffc72c;
  --orange: #f2822c;
  --orange-dark: #e06d18;
  --white: #ffffff;

  /* ألوان محايدة */
  --ink: #123038;
  --ink-soft: #40575e;
  --muted: #6b8087;
  --line: #e2ecec;
  --bg: #ffffff;
  --bg-soft: #f2f9f9;
  --bg-tint: #eaf6f6;

  /* تدرجات */
  --grad-sea: linear-gradient(135deg, var(--turquoise) 0%, var(--blue) 100%);
  --grad-warm: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  --grad-fresh: linear-gradient(135deg, var(--turquoise) 0%, var(--green) 100%);

  /* ظلال وحواف */
  --shadow-sm: 0 4px 14px rgba(13, 110, 120, 0.08);
  --shadow-md: 0 10px 30px rgba(13, 110, 120, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 110, 120, 0.18);
  --radius: 18px;
  --radius-lg: 26px;

  --container: 1200px;
  --header-h: 68px;
}

/* ===================== إعادة الضبط ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  font-family: 'Almarai', 'Segoe UI', Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { line-height: 1.35; margin: 0; font-weight: 800; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}
.container--narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  right: -999px;
  top: 0;
  background: var(--teal-deep);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 10px 10px;
}
.skip-link:focus { right: 12px; }

/* ===================== الأزرار ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  font-size: 17px;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  background: var(--grad-warm);
  color: #4a2600;
  box-shadow: 0 8px 20px rgba(242, 130, 44, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(242, 130, 44, 0.45); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #073b1c; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn--whatsapp:hover { transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 18px; }
.btn--sm { padding: 10px 20px; font-size: 15px; }
.btn--block { width: 100%; }

/* ===================== شريط التنبيه ===================== */
.alert-bar {
  background: var(--grad-fresh);
  color: #fff;
  font-size: 15px;
}
.alert-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
}
.alert-bar__icon { font-size: 20px; }
.alert-bar p { margin: 0; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--header-h);
}
.brand__logo { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; }
.nav-links { display: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-tint);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span { display: block; height: 3px; background: var(--teal-deep); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.header-cta { display: none; }

/* قائمة الموبايل المنسدلة */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  right: 0;
  left: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 10px 18px 18px;
  gap: 4px;
}
.nav-links.open li a {
  display: block;
  padding: 12px 8px;
  font-weight: 700;
  border-bottom: 1px solid var(--bg-soft);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 110, 120, 0.55) 0%, rgba(12, 90, 160, 0.55) 55%, rgba(13, 110, 120, 0.78) 100%);
}
.hero__content { position: relative; color: #fff; max-width: 760px; }
.hero__eyebrow {
  display: inline-block;
  background: var(--grad-warm);
  color: #4a2600;
  font-weight: 800;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(30px, 7vw, 56px);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
}
.hero__subtitle {
  font-size: clamp(16px, 2.4vw, 20px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 22px;
  max-width: 620px;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero__facts li {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  backdrop-filter: blur(4px);
}
.hero__price {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.hero__price-label { font-size: 14px; color: var(--muted); font-weight: 700; }
.hero__price-value { font-size: clamp(30px, 6vw, 42px); font-weight: 800; color: var(--orange-dark); line-height: 1.1; }
.hero__price-currency { font-size: 20px; }
.hero__price-note { font-size: 13px; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-weight: 700;
  font-size: 15px;
}
.hero__trust li { display: flex; align-items: center; gap: 6px; }
.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 0; }
.hero__wave svg { width: 100%; height: 70px; }
.hero__wave path { fill: var(--bg); }

/* ===================== عناوين الأقسام ===================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.section-head--start { text-align: right; margin: 0 0 24px; }
.section-head__eyebrow {
  display: inline-block;
  color: var(--turquoise-dark);
  background: var(--bg-tint);
  font-weight: 800;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-head__title { font-size: clamp(26px, 4.5vw, 40px); color: var(--ink); }
.section-head__sub { color: var(--ink-soft); margin-top: 10px; font-size: 17px; }

/* ===================== المميزات السريعة ===================== */
.features { padding: 56px 0; background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  font-size: 34px;
  width: 66px; height: 66px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  background: var(--bg-tint);
  border-radius: 50%;
}
.feature-card h3 { font-size: 19px; margin-bottom: 6px; color: var(--teal-deep); }
.feature-card p { color: var(--ink-soft); font-size: 15px; }

/* ===================== ليه أنطاليا ===================== */
.why { padding: 60px 0; background: var(--bg-soft); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  box-shadow: var(--shadow-sm);
}
.why-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.why-card:hover img { transform: scale(1.06); }
.why-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(9, 50, 56, 0.85) 100%);
}
.why-card__body h3 { font-size: 21px; margin-bottom: 4px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.why-card__body p { font-size: 14.5px; text-shadow: 0 1px 6px rgba(0,0,0,.5); }

/* ===================== الفنادق والأسعار ===================== */
.hotels { padding: 62px 0; }
.hotels__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.hotel-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hotel-card--featured {
  border: 2px solid var(--turquoise);
  box-shadow: var(--shadow-md);
}
.hotel-card__ribbon {
  position: absolute;
  top: 16px; left: -6px;
  background: var(--grad-warm);
  color: #4a2600;
  font-weight: 800;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.hotel-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.badge {
  font-weight: 800;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
}
.badge--3 { background: var(--grad-fresh); }
.badge--4 { background: var(--grad-sea); }
.hotel-card__board {
  font-size: 13px;
  font-weight: 700;
  color: var(--turquoise-dark);
  background: var(--bg-tint);
  padding: 5px 12px;
  border-radius: 999px;
}
.hotel-card__name { font-size: 22px; color: var(--ink); margin-bottom: 14px; }
.hotel-card__name span { display: block; font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: .5px; }
.hotel-card__price {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: center;
}
.price-old { display: inline-block; color: var(--muted); text-decoration: line-through; font-size: 17px; font-weight: 700; }
.price-new { display: block; font-size: 34px; font-weight: 800; color: var(--orange-dark); line-height: 1.1; }
.price-new .cur { font-size: 17px; }
.price-per { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.hotel-card__rows { margin-bottom: 18px; }
.hotel-card__rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 9px 2px;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.hotel-card__rows li span { color: var(--ink-soft); }
.hotel-card__rows li b { color: var(--ink); white-space: nowrap; }
.price-old-inline { color: var(--muted); text-decoration: line-through; font-weight: 400; font-size: 13px; margin-left: 3px; }
.hotel-card .btn { margin-top: auto; }

.hotels__notes {
  margin-top: 26px;
  background: var(--bg-soft);
  border-right: 5px solid var(--turquoise);
  border-radius: 14px;
  padding: 20px 22px;
}
.hotels__notes h3 { font-size: 18px; color: var(--teal-deep); margin-bottom: 10px; }
.hotels__notes li { position: relative; padding-right: 22px; margin-bottom: 8px; color: var(--ink-soft); font-size: 15px; }
.hotels__notes li::before { content: "•"; position: absolute; right: 4px; color: var(--turquoise); font-weight: 800; }

/* ===================== البرنامج يشمل ===================== */
.includes { padding: 62px 0; background: var(--grad-sea); color: #fff; }
.includes .section-head__title { color: #fff; }
.includes .section-head__eyebrow { background: rgba(255,255,255,.2); color: #fff; }
.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.include-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(4px);
}
.include-card__icon {
  font-size: 30px;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18);
  border-radius: 14px;
  margin-bottom: 10px;
}
.include-card h3 { font-size: 18px; margin-bottom: 4px; }
.include-card p { font-size: 14.5px; opacity: .92; }

/* ===================== الأسعار لا تشمل ===================== */
.excludes { padding: 50px 0; background: #fff5ee; }
.excludes__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.excludes__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ffe0cc;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--ink);
}
.excludes__list li span {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: #ffe0cc;
  color: var(--orange-dark);
  border-radius: 50%;
  font-weight: 800;
}

/* ===================== التأشيرة ===================== */
.visa { padding: 62px 0; background: var(--bg-soft); }
.visa__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.visa-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.visa-card h3 {
  font-size: 19px;
  color: var(--teal-deep);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-tint);
}
.visa-card__list li { position: relative; padding-right: 22px; margin-bottom: 12px; font-size: 15px; color: var(--ink-soft); }
.visa-card__list li::before { content: "✓"; position: absolute; right: 0; color: var(--green-dark); font-weight: 800; }
.visa-card__list strong { color: var(--ink); }
.visa-card__intro { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; }
.visa-card__hint {
  margin-top: 12px;
  font-size: 14px;
  background: #fff8e8;
  border-radius: 12px;
  padding: 12px 14px;
  color: #7a5a00;
  border: 1px solid #ffe9b0;
}
.visa__disclaimer {
  margin-top: 22px;
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--turquoise);
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 900px;
  margin-inline: auto;
}

/* ===================== المغامرات ===================== */
.excursions { padding: 62px 0; }
.excursions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.excursion-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.excursion-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.excursion-card__img { position: relative; aspect-ratio: 16 / 10; }
.excursion-card__img img { width: 100%; height: 100%; object-fit: cover; }
.excursion-card__price {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--grad-warm);
  color: #4a2600;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.excursion-card__body { padding: 20px; }
.excursion-card__body h3 { font-size: 21px; color: var(--ink); margin-bottom: 8px; }
.excursion-card__body h3 span { display: block; font-size: 13px; color: var(--turquoise-dark); font-weight: 700; letter-spacing: .5px; }
.excursion-card__body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; }
.excursion-card__meal {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  background: #eef8e3;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===================== المعرض ===================== */
.gallery { padding: 62px 0; background: var(--bg-soft); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery__item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.08); }

/* ===================== مناسبة لمين ===================== */
.audience { padding: 62px 0; }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card span { font-size: 40px; display: block; margin-bottom: 8px; }
.audience-card h3 { font-size: 18px; color: var(--teal-deep); margin-bottom: 4px; }
.audience-card p { font-size: 14px; color: var(--ink-soft); }

/* ===================== الرحلة سياحية فقط ===================== */
.tourism-only { padding: 56px 0; }
.tourism-only__box {
  background: var(--grad-fresh);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.tourism-only__badge {
  display: inline-block;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.4);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tourism-only__box h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 12px; }
.tourism-only__box > p { max-width: 720px; margin: 0 auto 20px; font-size: 17px; opacity: .96; }
.tourism-only__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
  text-align: right;
}
.tourism-only__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
}
.tourism-only__list li span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--green-dark);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
}

/* ===================== ليه تحجز معانا ===================== */
.trust { padding: 60px 0; background: var(--bg-soft); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.trust-card span { font-size: 34px; display: block; margin-bottom: 8px; }
.trust-card h3 { font-size: 17px; color: var(--teal-deep); margin-bottom: 4px; }
.trust-card p { font-size: 14px; color: var(--ink-soft); }

/* ===================== الأسئلة الشائعة ===================== */
.faq { padding: 62px 0; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding: 18px 20px;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint);
  color: var(--turquoise-dark);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  transition: transform .25s ease;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); background: var(--turquoise); color: #fff; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item__a p { padding: 0 20px 18px; color: var(--ink-soft); font-size: 15.5px; }

/* ===================== نموذج الحجز ===================== */
.booking { padding: 62px 0; background: var(--grad-sea); }
.booking__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.booking__media { position: relative; min-height: 220px; }
.booking__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.booking__media-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  color: #fff;
  background: linear-gradient(180deg, rgba(13,110,120,.15) 0%, rgba(9,50,56,.85) 100%);
}
.booking__media-overlay h3 { font-size: 24px; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.booking__media-overlay p { font-size: 15px; opacity: .95; }
.booking__form-side { padding: 30px 22px; }

.form-notice {
  background: #fff8e8;
  border: 1px solid #ffe9b0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: #7a5a00;
  margin-bottom: 22px;
}

.booking-form .field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label, .field legend {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 7px;
  color: var(--ink);
  padding: 0;
}
.req { color: var(--orange-dark); }
.field input[type="text"],
.field input[type="tel"],
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(22, 176, 173, 0.15);
  background: #fff;
}
.field input.invalid, .field select.invalid { border-color: #e0483c; background: #fff5f4; }
.field__error { display: block; color: #d33a2e; font-size: 13px; margin-top: 5px; min-height: 0; }
.field__hint { display: block; color: var(--muted); font-size: 13px; margin-top: 5px; }

.field--radio { border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px; margin: 0 0 16px; }
.field--radio legend { float: right; width: 100%; margin-bottom: 10px; }
.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 7px 0;
  cursor: pointer;
  margin-bottom: 0;
}
.radio input { width: 18px; height: 18px; accent-color: var(--turquoise); }

.field--check { margin-bottom: 18px; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--ink-soft);
  cursor: pointer;
  margin-bottom: 0;
  line-height: 1.6;
}
.checkbox input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }

.work-warning {
  background: #fff3f1;
  border: 1px solid #ffc9c1;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  color: #a3352a;
  margin-bottom: 16px;
  font-weight: 700;
}

.form-subnote { text-align: center; font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.form-subnote--muted { color: var(--muted); font-size: 13px; margin-top: 6px; }

.form-status { border-radius: 12px; padding: 14px 16px; font-weight: 700; margin-top: 16px; font-size: 15px; }
.form-status--success { background: #e8f8ec; border: 1px solid #a9e4bb; color: #1e7a3d; }
.form-status--error { background: #fff3f1; border: 1px solid #ffc9c1; color: #a3352a; }

/* ===================== Footer ===================== */
.site-footer { background: var(--ink); color: #d6e4e6; padding: 50px 0 24px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.site-footer__logo { height: 46px; width: auto; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 14px; }
.site-footer__brand p { font-size: 15px; color: #a9c1c4; max-width: 340px; }
.site-footer__col h3 { font-size: 18px; color: #fff; margin-bottom: 14px; }
.site-footer__contact li, .site-footer__links li { margin-bottom: 10px; }
.site-footer__contact a, .site-footer__links a { color: #cbdcde; font-size: 15px; transition: color .18s ease; }
.site-footer__contact a:hover, .site-footer__links a:hover { color: var(--yellow); }
.site-footer__note {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #b9cccd;
  margin-bottom: 20px;
  text-align: center;
}
.site-footer__copy { text-align: center; font-size: 14px; color: #8ba4a6; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }

/* ===================== واتساب عائم ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .5);
  transition: transform .2s ease;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 8px 22px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 8px 22px rgba(37, 211, 102, .5), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 22px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================== Sticky CTA للموبايل ===================== */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
}
.mobile-cta .btn { flex: 1; padding: 13px 10px; font-size: 16px; }
.mobile-cta .btn--whatsapp { flex: 0 0 44%; }

/* ===================== Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9, 30, 34, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  object-fit: contain;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 18px; left: 18px; width: 48px; height: 48px; font-size: 30px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 34px; }
.lightbox__nav--prev { right: 14px; }
.lightbox__nav--next { left: 14px; }

/* ===================== أنيميشن الظهور ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ===================== احترام تقليل الحركة ===================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive - نقاط الكسر (Mobile First)
   ============================================================ */

/* شاشات صغيرة جدًا: منع الأزرار المزدحمة */
@media (max-width: 360px) {
  body { font-size: 16px; }
  .hero__cta .btn { width: 100%; }
}

/* Tablet - 640px وأكثر */
@media (min-width: 640px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .excludes__list { grid-template-columns: repeat(3, 1fr); }
  .visa__grid { grid-template-columns: repeat(3, 1fr); }
  .excursions__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .hotels__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .why-card--tall { grid-row: span 2; }
  .tourism-only__list { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop - 900px وأكثر */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 6px;
  }
  .nav-links li a {
    padding: 9px 14px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    border: none !important;
    transition: background .18s ease, color .18s ease;
  }
  .nav-links li a:hover { background: var(--bg-tint); color: var(--turquoise-dark); }
  .header-cta { display: inline-flex; }
  .whatsapp-float { bottom: 24px; left: 24px; }
  .mobile-cta { display: none; }

  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .includes__grid { grid-template-columns: repeat(3, 1fr); }
  .hotels__grid { grid-template-columns: repeat(4, 1fr); }
  .excursions__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .audience__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }

  .booking__wrap { grid-template-columns: 1fr 1.15fr; }
  .booking__media { min-height: 100%; }
  .booking__form-side { padding: 40px 40px; }

  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* شاشات كبيرة - 1200px */
@media (min-width: 1200px) {
  .why__grid { grid-auto-rows: 260px; }
}
