/* ============================================================
   إتمام — نظام التصميم
   لوحة الألوان: زمردي عميق + ذهبي صحراوي + رملي دافئ
   ============================================================ */

:root {
  --ink: #0c211d;
  --forest: #0e332d;
  --emerald: #17594e;
  --emerald-soft: #e5efec;
  --gold: #c8963e;
  --gold-light: #e3b960;
  --gold-soft: #f7ecd9;
  --sand: #f6f1e7;
  --cream: #fdfbf6;
  --white: #ffffff;
  --text: #2c3a37;
  --muted: #64756f;
  --radius: 18px;
  --radius-lg: 28px;
  --arch: 999px 999px 24px 24px;
  --shadow-sm: 0 2px 10px rgba(12, 33, 29, .06);
  --shadow-md: 0 10px 34px rgba(12, 33, 29, .1);
  --shadow-lg: 0 24px 60px rgba(12, 33, 29, .16);
  --font-head: 'Almarai', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --pattern: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 4l5.2 7.2 8.5 1.9-1.9 8.5L45.2 28l-5.4 5.2 1.9 8.5-8.5 1.9L28 52l-5.2-8.4-8.5-1.9 1.9-8.5L10.8 28l5.4-5.2-1.9-8.5 8.5-1.9L28 4z' fill='none' stroke='%2317594e' stroke-opacity='.08'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.35;
}

h2 em, h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(64px, 9vw, 110px) 0; }

/* ---------- أزرار ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest);
  box-shadow: 0 8px 24px rgba(200, 150, 62, .35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(200, 150, 62, .45); }
.btn-ghost {
  background: transparent;
  border-color: rgba(14, 51, 45, .25);
  color: var(--forest);
}
.btn-ghost:hover { border-color: var(--forest); background: var(--forest); color: #fff; transform: translateY(-3px); }
.btn-outline {
  border-color: var(--gold);
  color: var(--forest);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--forest); transform: translateY(-3px); }

.text-link {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link span { transition: transform .25s; display: inline-block; }
.text-link:hover span { transform: translateX(-6px); }
.text-link:hover { color: var(--gold); }

/* ---------- الهيدر ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(253, 251, 246, .92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--forest);
}
.logo-text small { font-size: 11px; color: var(--muted); letter-spacing: .3px; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--forest);
  position: relative;
  padding: 4px 0;
}
.main-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
  transition: width .3s;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.is-active::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 14.5px; }

/**
 * الصفحات الداخلية: الترويسة داكنة، فتُقلب ألوان القائمة إلى الفاتح
 * قبل التمرير حتى تبقى مقروءة. وعند التمرير تعود الخلفية الفاتحة والألوان الداكنة.
 */
.site-header.on-dark:not(.scrolled) .main-nav > a:not(.nav-cta),
.site-header.on-dark:not(.scrolled) .logo-text strong {
  color: #fff;
}
.site-header.on-dark:not(.scrolled) .logo-text small {
  color: rgba(246, 241, 231, .7);
}
.site-header.on-dark:not(.scrolled) .nav-toggle span {
  background: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--forest);
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- الهيرو ---------- */
.hero {
  position: relative;
  padding: clamp(130px, 16vw, 190px) 0 0;
  background: var(--sand);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  opacity: .6;
  pointer-events: none;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb-1 { width: 420px; height: 420px; background: #d9ecdf; top: -120px; inset-inline-start: -100px; }
.orb-2 { width: 360px; height: 360px; background: var(--gold-soft); bottom: 0; inset-inline-end: -80px; animation-delay: -5s; }
.orb-3 { width: 220px; height: 220px; background: #e8f2ee; top: 30%; inset-inline-start: 45%; animation-delay: -9s; }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.12); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--emerald);
  background: var(--emerald-soft);
  border: 1px solid rgba(23, 89, 78, .15);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 20px;
}
.word-rotate {
  color: var(--gold);
  display: inline-block;
  min-width: 3.2ch;
  position: relative;
}
.word-rotate.flip { animation: wordFlip .5s ease; }
@keyframes wordFlip {
  0% { opacity: 0; transform: translateY(14px) rotateX(60deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}
.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--forest);
}
.hero-stats span:last-child { font-size: 13.5px; color: var(--muted); }

/* الهيرو المرئي */
.hero-visual {
  position: relative;
  height: clamp(380px, 42vw, 560px);
}
.arch-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--arch);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.arch-card img { width: 100%; height: 100%; object-fit: cover; }
.arch-main {
  width: 62%;
  height: 78%;
  top: 4%;
  inset-inline-start: 16%;
  z-index: 2;
}
.arch-side {
  width: 34%;
  height: 46%;
  bottom: 0;
  inset-inline-start: 0;
  z-index: 3;
}
.arch-side2 {
  width: 30%;
  height: 40%;
  top: 12%;
  inset-inline-end: 0;
  z-index: 1;
}
.float-1 { animation: floaty 7s ease-in-out infinite alternate; }
.float-2 { animation: floaty 8s ease-in-out -2s infinite alternate; }
.float-3 { animation: floaty 9s ease-in-out -4s infinite alternate; }
@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(-16px); }
}
.route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
.route-line path { animation: dashMove 1.2s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -16; } }
.route-label text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  fill: var(--forest);
}

/* ---------- شبكة الأصناف ---------- */
.categories { background: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-tile {
  background: #fff;
  border: 1px solid rgba(14, 51, 45, .08);
  border-radius: var(--radius);
  padding: 26px 14px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat-tile::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 62, .35);
}
.cat-tile:hover::after { transform: scaleX(1); }
.cat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--emerald-soft);
  color: var(--emerald);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.cat-icon svg { width: 27px; height: 27px; }
.cat-tile:hover .cat-icon {
  background: var(--gold-soft);
  color: var(--gold);
  transform: scale(1.08) rotate(-4deg);
}
.cat-tile h3 { font-size: 15px; line-height: 1.4; }
.cat-note {
  text-align: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 15.5px;
}
.cat-note a {
  color: var(--emerald);
  font-weight: 700;
  font-family: var(--font-head);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
  transition: color .25s;
}
.cat-note a:hover { color: var(--gold); }

/* ---------- رؤوس الأقسام ---------- */
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); }
.section-head.row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  text-align: start;
  flex-wrap: wrap;
}
.section-head.light h2, .section-head.light .section-sub { color: var(--sand); }
.section-sub { color: var(--muted); margin-top: 12px; }

/* ---------- لماذا إتمام ---------- */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(14, 51, 45, .07);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: var(--emerald-soft);
  color: var(--emerald);
  border-radius: 18px;
  margin-bottom: 18px;
}
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- الخدمات ---------- */
.services-home { background: var(--sand); position: relative; }
.services-home::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--pattern);
  opacity: .5;
  pointer-events: none;
}
.service-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card.featured { outline: 3px solid var(--gold); outline-offset: -3px; }
.service-media { position: relative; height: 220px; overflow: hidden; }
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-media img { transform: scale(1.08); }
.service-num {
  position: absolute;
  bottom: -14px;
  inset-inline-start: 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 54px;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
  line-height: 1;
}
.service-body { padding: 30px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-body h3 { font-size: 21px; }
.service-body > p { color: var(--muted); font-size: 15px; }
.service-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 6px; }
.service-body li {
  position: relative;
  padding-inline-start: 24px;
  font-size: 14.5px;
}
.service-body li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 800;
}
.service-body .text-link { margin-top: auto; }

/* ---------- رحلة الإتمام ---------- */
.journey {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(200,150,62,.15), transparent 60%),
    var(--forest);
}
.journey .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--gold-light); }
.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.journey-step {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: background .3s, transform .3s;
}
.journey-step:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); }
.j-num {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(200,150,62,.4);
}
.journey-step h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.journey-step p { color: rgba(246,241,231,.75); font-size: 14.5px; }

/* ---------- رحلة الاختيار في الصين ---------- */
.trip { background: var(--cream); }
.trip-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.trip-media { position: relative; }
.trip-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--arch);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}
.trip-img2 {
  position: absolute;
  bottom: -26px;
  inset-inline-start: -22px;
  width: 46%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}
.trip-stamp {
  position: absolute;
  top: 22px;
  inset-inline-end: -14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest);
  padding: 12px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(200, 150, 62, .45);
  transform: rotate(3deg);
}
.trip-stamp strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.2;
}
.trip-stamp small { font-size: 12.5px; opacity: .8; }

.trip-copy h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.trip-lead { color: var(--muted); font-size: 16.5px; margin-bottom: 26px; }
.trip-lead strong { color: var(--forest); }
.trip-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.trip-points li { display: flex; gap: 14px; align-items: flex-start; }
.trip-ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--gold-soft);
  color: var(--gold);
}
.trip-ic svg { width: 22px; height: 22px; }
.trip-points strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--forest);
  margin-bottom: 3px;
}
.trip-points p { font-size: 14.5px; color: var(--muted); }
.trip-after {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--emerald-soft);
  border: 1px solid rgba(23, 89, 78, .18);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 26px;
}
.trip-after-ic {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.trip-after p { font-size: 14.5px; color: var(--text); }
.trip-after strong { color: var(--forest); }

/* ---------- الدفع داخل السعودية ---------- */
.payment {
  background: var(--sand);
  position: relative;
}
.payment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  opacity: .5;
  pointer-events: none;
}
.pay-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
.pay-copy h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.pay-lead { color: var(--muted); font-size: 16.5px; margin-bottom: 28px; max-width: 52ch; }
.pay-list { display: flex; flex-direction: column; gap: 18px; }
.pay-list li { display: flex; gap: 14px; align-items: flex-start; }
.pay-ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--emerald-soft);
  color: var(--emerald);
}
.pay-ic svg { width: 23px; height: 23px; }
.pay-list strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--forest);
  margin-bottom: 3px;
}
.pay-list p { font-size: 14.5px; color: var(--muted); }

.pay-card {
  background: var(--forest);
  color: var(--sand);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pay-card::before {
  content: '';
  position: absolute;
  top: -70px;
  inset-inline-start: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, .3), transparent 70%);
}
.pay-card-top { position: relative; text-align: center; margin-bottom: 24px; }
.riyal {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(200, 150, 62, .4);
}
.pay-card-top h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.pay-card-top p { font-size: 14.5px; color: rgba(246, 241, 231, .75); }
.pay-badges {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}
.pay-badges li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 11px 15px;
  border-radius: 12px;
  font-size: 14.5px;
  font-family: var(--font-head);
  font-weight: 700;
}
.pay-badges span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}
.pay-card .btn { width: 100%; justify-content: center; position: relative; }

/* ---------- شريط الأرقام ---------- */
.stats-band {
  background: var(--gold-soft);
  padding: clamp(48px, 6vw, 72px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--forest);
}
.stat-big span { color: var(--muted); font-size: 15px; }

/* ---------- آراء العملاء ---------- */
.t-slider { position: relative; overflow: hidden; }
.t-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.t-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid rgba(14,51,45,.08);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.t-stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; }
.t-card p { font-size: 15px; color: var(--text); }
.t-card footer strong { display: block; font-family: var(--font-head); color: var(--forest); }
.t-card footer span { font-size: 13px; color: var(--muted); }
.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.t-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  font-size: 18px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.t-nav button:hover { background: var(--forest); color: #fff; }
.t-dots { display: flex; gap: 8px; }
.t-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(14,51,45,.2);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.t-dots button.active { background: var(--gold); transform: scale(1.3); }

/* ---------- الأسئلة الشائعة ---------- */
.faq { background: var(--sand); }
.faq-inner { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(14,51,45,.08);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--forest);
  position: relative;
  padding-inline-end: 56px;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  inset-inline-end: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  transition: transform .3s, background .3s, color .3s;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after {
  content: '−';
  background: var(--gold);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- المدونة ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(14,51,45,.07);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-thumb { position: relative; display: block; height: 210px; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post-card:hover .post-thumb img { transform: scale(1.07); }
.post-cat {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(253,251,246,.94);
  color: var(--emerald);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 13px;
  border-radius: 999px;
}
.post-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-body time { font-size: 13px; color: var(--muted); }
.post-body h3 { font-size: 18px; line-height: 1.5; }
.post-body h3 a:hover { color: var(--gold); }
.post-body p {
  font-size: 14.5px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-body .text-link { margin-top: auto; }

/* ---------- شريط الدعوة ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(200,150,62,.25), transparent 60%),
    var(--forest);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-inner p { color: rgba(246,241,231,.8); max-width: 52ch; }

/* ---------- الفوتر ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(246,241,231,.75);
  padding: 70px 0 0;
  overflow: hidden;
}
.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  opacity: .35;
  filter: invert(1);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text small { color: rgba(246,241,231,.6); }
.footer-about p { font-size: 14.5px; margin-top: 16px; max-width: 40ch; }
.footer-col h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-col a { transition: color .25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px;
}

/* ---------- زر واتساب العائم ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: .8; }
  to { transform: scale(1.7); opacity: 0; }
}

/* ---------- أنيميشن الظهور ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- صفحات داخلية ---------- */
.page-hero {
  position: relative;
  background: var(--forest);
  padding: clamp(150px, 17vw, 210px) 0 clamp(60px, 8vw, 90px);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  opacity: .25;
  filter: invert(1);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.page-hero p { color: rgba(246,241,231,.8); max-width: 65ch; font-size: 17px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(246,241,231,.6);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--gold-light); }

/* خدمات مفصلة */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(50px, 7vw, 80px) 0;
}
.service-detail:nth-child(even) .sd-media { order: 2; }
.sd-media { position: relative; }
.sd-media .main-img {
  border-radius: var(--arch);
  height: 420px;
  width: 100%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}
.sd-media .badge-img {
  position: absolute;
  bottom: -24px;
  inset-inline-end: -20px;
  width: 44%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}
.sd-body .eyebrow { margin-bottom: 12px; }
.sd-body h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.sd-body > p { color: var(--muted); margin-bottom: 18px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.check-list li {
  position: relative;
  padding-inline-start: 34px;
  font-size: 15.5px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}
.check-list li strong { color: var(--forest); }

/* صفحة من نحن */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,51,45,.08);
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .why-icon { margin-inline: auto; }
.value-card h3 { font-size: 18px; margin: 6px 0 8px; }
.value-card p { font-size: 14.5px; color: var(--muted); }

/* صفحة المقال */
.post-hero { height: clamp(320px, 45vw, 480px); position: relative; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,33,29,.85), rgba(12,33,29,.1));
}
.post-hero-content {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding-bottom: 40px;
  z-index: 2;
}
.post-hero-content h1 {
  color: #fff;
  font-size: clamp(24px, 3.4vw, 40px);
  max-width: 20ch;
}
.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(246,241,231,.85);
  font-size: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.post-meta .post-cat { position: static; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 70px) 0;
  font-size: 17px;
}
.article-body h2 {
  font-size: 24px;
  margin: 36px 0 14px;
  position: relative;
  padding-inline-start: 18px;
}
.article-body h2::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(var(--gold-light), var(--gold));
}
.article-body p { margin-bottom: 16px; }
.article-body ul { margin: 0 0 16px; padding-inline-start: 8px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li {
  position: relative;
  padding-inline-start: 26px;
}
.article-body ul li::before {
  content: '◆';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-size: 12px;
  top: 5px;
}
.article-body strong { color: var(--forest); }
.article-cta {
  background: var(--sand);
  border: 1px solid rgba(200,150,62,.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { color: var(--muted); margin-bottom: 18px; }

/* صفحة التواصل */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-info-card {
  background: var(--forest);
  color: var(--sand);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: sticky;
  top: 110px;
}
.contact-info-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(246,241,231,.75); margin-bottom: 24px; font-size: 15px; }
.contact-lines { display: flex; flex-direction: column; gap: 16px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background .25s;
}
.contact-line:hover { background: rgba(255,255,255,.12); }
.contact-line svg { flex-shrink: 0; color: var(--gold-light); }
.contact-line strong { display: block; color: #fff; font-size: 14.5px; }
.contact-line span { font-size: 13.5px; color: rgba(246,241,231,.7); }

.contact-form {
  background: #fff;
  border: 1px solid rgba(14,51,45,.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--forest); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid rgba(14,51,45,.15);
  border-radius: 12px;
  background: var(--cream);
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,150,62,.15);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-weight: 500;
}
.alert-success { background: #e8f6ee; color: #14663b; border: 1px solid #b7e2c8; }
.alert-error { background: #fdeeee; color: #a33030; border: 1px solid #f0c4c4; }

/* ---------- استجابة الشاشات ---------- */
@media (max-width: 1024px) {
  .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .service-cards, .blog-grid, .journey-track, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .t-card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; order: -1; margin-top: -10px; }
  .contact-grid, .about-story, .service-detail, .pay-wrap, .trip-wrap { grid-template-columns: 1fr; }
  .trip-img { height: 340px; }
  .service-detail:nth-child(even) .sd-media { order: 0; }
  .contact-info-card { position: static; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--forest);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s ease, opacity .4s ease;
    z-index: 101;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { color: #fff; font-size: 22px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span { background: #fff; }
}

@media (max-width: 640px) {
  .why-grid, .service-cards, .blog-grid, .journey-track, .stats-grid, .values-grid, .form-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-tile { padding: 20px 10px 16px; }
  .t-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 320px; }
  .sd-media .main-img { height: 300px; }
  .hero-stats { gap: 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
}
