/* =========================================================
   UFUK LINE — أفق لاين للسياحة
   Design System / Global Styles  (RTL · Arabic · Minimal)
   ========================================================= */

:root{
  /* Brand palette (from logo) */
  --navy:        #0A1A8C;   /* الكحلي الأساسي */
  --navy-deep:   #061163;   /* كحلي أغمق للخلفيات */
  --navy-700:    #122aa8;
  --sky:         #1FA8E8;   /* السماوي */
  --sky-light:   #5fc6f5;
  --gold:        #F0A020;   /* البرتقالي/الذهبي */
  --gold-dark:   #d68a12;

  /* Neutrals */
  --ink:         #0e1430;
  --body:        #4a5170;
  --line:        #e7eaf3;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fc;
  --bg-soft-2:   #eef2fb;
  --white:       #ffffff;

  /* Effects */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   28px;
  --shadow-sm:   0 4px 14px rgba(10,26,140,.06);
  --shadow:      0 12px 36px rgba(10,26,140,.10);
  --shadow-lg:   0 26px 60px rgba(10,26,140,.16);
  --gradient:    linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  --gradient-soft: linear-gradient(135deg, #0A1A8C 0%, #122aa8 55%, #1FA8E8 130%);

  --ease: cubic-bezier(.16,.84,.44,1);
  --container: 1200px;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family:'Tajawal','Cairo',system-ui,-apple-system,'Segoe UI',sans-serif;
  background:var(--bg);
  color:var(--body);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  direction:rtl;
}

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

h1,h2,h3,h4{ color:var(--ink); font-weight:800; line-height:1.3; letter-spacing:-.01em; }

.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:24px; }

.section{ padding:78px 0; position:relative; }
.section--soft{ background:var(--bg-soft); }

/* ---------- Section heading ---------- */
.sec-head{ text-align:center; max-width:680px; margin:0 auto 44px; }
.sec-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--sky); font-weight:700; font-size:.9rem;
  letter-spacing:.04em; margin-bottom:14px;
}
.sec-eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); border-radius:2px; }
.sec-eyebrow::after{  content:""; width:26px; height:2px; background:var(--gold); border-radius:2px; }
.sec-title{ font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:12px; }
.sec-sub{ font-size:1rem; color:var(--body); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:inherit; font-weight:700; font-size:.92rem; letter-spacing:-.005em;
  padding:11px 22px; border-radius:50px; border:none; cursor:pointer;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space:nowrap; line-height:1.2;
}
.btn svg{ width:17px; height:17px; }
.btn--primary{ background:var(--gradient); color:#fff; box-shadow:0 10px 26px rgba(31,168,232,.32); }
.btn--primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(31,168,232,.42); }
.btn--gold{ background:var(--gold); color:#3a2600; box-shadow:0 10px 26px rgba(240,160,32,.34); }
.btn--gold:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(240,160,32,.45); }
.btn--ghost{ background:transparent; color:var(--navy); border:2px solid var(--line); }
.btn--ghost:hover{ border-color:var(--sky); color:var(--sky); transform:translateY(-3px); }
.btn--white{ background:#fff; color:var(--navy); box-shadow:var(--shadow); }
.btn--white:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }

/* ---------- Header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:1000;
  padding:18px 0; transition:all .4s var(--ease);
}
.header.scrolled{
  background:rgba(255,255,255,.92); backdrop-filter:blur(14px);
  box-shadow:0 6px 24px rgba(10,26,140,.08); padding:11px 0;
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:50px; width:auto; transition:height .4s var(--ease); }
.header.scrolled .brand img{ height:42px; }
.brand-text{ line-height:1.15; }
.brand-name{ font-weight:800; font-size:1.15rem; color:#fff; letter-spacing:.02em; }
.brand-tag{ font-size:.72rem; color:var(--sky-light); font-weight:600; }
.header.scrolled .brand-name{ color:var(--navy); }
.header.scrolled .brand-tag{ color:var(--sky); }

.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  position:relative; padding:8px 13px; font-weight:600; font-size:.9rem;
  color:rgba(255,255,255,.92); border-radius:10px; transition:color .3s, background .3s;
}
.header.scrolled .nav-links a{ color:var(--ink); }
.nav-links a::after{
  content:""; position:absolute; right:16px; left:16px; bottom:4px; height:2px;
  background:var(--gold); border-radius:2px; transform:scaleX(0); transform-origin:right;
  transition:transform .3s var(--ease);
}
.nav-links a:hover::after,.nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--gold); }
.header.scrolled .nav-links a:hover{ color:var(--navy); }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:26px; height:2px; background:#fff; border-radius:2px; margin:5px 0; transition:.3s; }
.header.scrolled .nav-toggle span{ background:var(--navy); }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:var(--gradient-soft); overflow:hidden; padding:120px 0 70px;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 18%, rgba(31,168,232,.42), transparent 42%),
    radial-gradient(circle at 8% 86%, rgba(240,160,32,.18), transparent 45%);
}
.hero::after{
  content:""; position:absolute; inset:0; opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size:34px 34px;
  -webkit-mask-image:radial-gradient(circle at 70% 50%, #000, transparent 75%);
          mask-image:radial-gradient(circle at 70% 50%, #000, transparent 75%);
}
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center; }
.hero-badge{
  display:inline-flex; align-items:center; gap:9px; padding:8px 18px; margin-bottom:24px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22);
  border-radius:50px; color:#fff; font-weight:600; font-size:.9rem; backdrop-filter:blur(6px);
}
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 0 rgba(240,160,32,.6); animation:pulse 2s infinite; }
.hero h1{ color:#fff; font-size:clamp(2rem,4.4vw,3.1rem); line-height:1.2; margin-bottom:20px; }
.hero h1 .accent{ color:var(--gold); }
.hero h1 .sky{ background:linear-gradient(120deg,#fff,var(--sky-light)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.hero p{ color:rgba(255,255,255,.9); font-size:1.04rem; max-width:540px; margin-bottom:28px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:40px; }
.hero-stats{ display:flex; gap:36px; flex-wrap:wrap; }
.hero-stat .num{ font-size:1.9rem; font-weight:800; color:#fff; }
.hero-stat .num span{ color:var(--gold); }
.hero-stat .label{ font-size:.9rem; color:rgba(255,255,255,.78); }

/* hero visual */
.hero-visual{ position:relative; }
.hero-card{
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-lg); padding:30px; backdrop-filter:blur(12px);
  box-shadow:0 30px 70px rgba(0,0,0,.3);
}
.hero-card img{ height:120px; margin:0 auto 18px; }
.hero-card .hc-title{ text-align:center; color:#fff; font-weight:800; font-size:1.35rem; margin-bottom:4px; }
.hero-card .hc-sub{ text-align:center; color:var(--sky-light); font-weight:600; margin-bottom:22px; }
.hc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.hc-item{
  display:flex; align-items:center; gap:11px; padding:13px;
  background:rgba(255,255,255,.08); border-radius:14px; border:1px solid rgba(255,255,255,.12);
  transition:transform .3s var(--ease), background .3s;
}
.hc-item:hover{ transform:translateY(-3px); background:rgba(255,255,255,.16); }
.hc-item img{ height:30px; width:30px; margin:0; filter:brightness(0) invert(1); opacity:.95; }
.hc-item span{ color:#fff; font-weight:600; font-size:.92rem; }

.hero-float{
  position:absolute; background:#fff; border-radius:16px; padding:13px 18px;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:12px;
  animation:floaty 4.5s ease-in-out infinite;
}
.hero-float .fi{ width:42px; height:42px; border-radius:12px; display:grid; place-items:center; background:var(--bg-soft-2); }
.hero-float .fi svg{ width:22px; height:22px; }
.hero-float .ft strong{ display:block; color:var(--ink); font-size:.95rem; }
.hero-float .ft small{ color:var(--body); font-size:.78rem; }
.hero-float--1{ top:6%; right:-18px; }
.hero-float--2{ bottom:8%; left:-22px; animation-delay:1.5s; }

/* ---------- Wave divider ---------- */
.wave{ display:block; width:100%; height:auto; margin-top:-2px; }

/* ---------- Services grid ---------- */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.svc-card{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:32px 26px; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  overflow:hidden;
}
.svc-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:4px; background:var(--gradient);
  transform:scaleX(0); transform-origin:right; transition:transform .4s var(--ease);
}
.svc-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.svc-card:hover::before{ transform:scaleX(1); }
.svc-ic{
  width:74px; height:74px; border-radius:20px; display:grid; place-items:center; margin-bottom:20px;
  background:linear-gradient(135deg,#eef4ff,#e2ecff); transition:transform .4s var(--ease);
}
.svc-card:hover .svc-ic{ transform:rotate(-6deg) scale(1.06); }
.svc-ic img{ width:42px; height:42px; }
.svc-card h3{ font-size:1.22rem; margin-bottom:10px; }
.svc-card p{ font-size:.97rem; }
.svc-link{ display:inline-flex; align-items:center; gap:7px; margin-top:16px; color:var(--sky); font-weight:700; font-size:.95rem; }
.svc-link svg{ width:16px; height:16px; transition:transform .3s; }
.svc-card:hover .svc-link svg{ transform:translateX(-5px); }

/* ---------- Feature / Why us ---------- */
.why{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.why-visual{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/3.4; }
.why-visual .ph{ position:absolute; inset:0; background:var(--gradient-soft); display:grid; place-items:center; }
.why-visual .ph img{ height:140px; filter:brightness(0) invert(1); opacity:.95; }
.why-badge{
  position:absolute; bottom:22px; right:22px; left:22px; background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px); border-radius:16px; padding:18px 20px; display:flex; gap:16px; align-items:center;
}
.why-badge .wn{ font-size:2rem; font-weight:800; color:var(--navy); }
.why-badge .wt{ font-size:.92rem; color:var(--body); }
.feat-list{ margin-top:26px; display:grid; gap:18px; }
.feat-item{ display:flex; gap:16px; align-items:flex-start; }
.feat-ic{ flex:none; width:48px; height:48px; border-radius:14px; background:var(--bg-soft-2); display:grid; place-items:center; }
.feat-ic svg{ width:24px; height:24px; color:var(--sky); }
.feat-item h4{ font-size:1.1rem; margin-bottom:4px; }
.feat-item p{ font-size:.96rem; }

/* ---------- Destinations ---------- */
.dest-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.dest-card{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4;
  box-shadow:var(--shadow-sm); transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dest-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.dest-card .dbg{ position:absolute; inset:0; background:var(--gradient-soft); transition:transform .6s var(--ease); }
.dest-card:hover .dbg{ transform:scale(1.08); }
.dest-card .dbg::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,17,99,.85) 8%, transparent 60%); }
.dest-ic{ position:absolute; top:18px; right:18px; width:54px; height:54px; border-radius:14px; background:rgba(255,255,255,.16); backdrop-filter:blur(4px); display:grid; place-items:center; }
.dest-ic img{ width:30px; height:30px; filter:brightness(0) invert(1); }
.dest-meta{ position:absolute; inset:auto 20px 20px; z-index:2; }
.dest-meta h3{ color:#fff; font-size:1.25rem; margin-bottom:4px; }
.dest-meta p{ color:rgba(255,255,255,.82); font-size:.88rem; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; background:var(--gradient-soft); border-radius:var(--radius-lg); padding:60px; text-align:center; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 20% 20%, rgba(240,160,32,.22), transparent 40%); }
.cta-band > *{ position:relative; z-index:2; }
.cta-band h2{ color:#fff; font-size:clamp(1.6rem,3vw,2.3rem); margin-bottom:14px; }
.cta-band p{ color:rgba(255,255,255,.9); max-width:560px; margin:0 auto 28px; font-size:1.08rem; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:s; }
.step{ position:relative; padding:30px 24px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); text-align:center; }
.step .sn{ width:58px; height:58px; margin:0 auto 16px; border-radius:50%; background:var(--gradient); color:#fff; font-weight:800; font-size:1.3rem; display:grid; place-items:center; }
.step h4{ font-size:1.1rem; margin-bottom:8px; }
.step p{ font-size:.94rem; }

/* ---------- Testimonials ---------- */
.tst-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tst-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; transition:transform .35s var(--ease), box-shadow .35s; }
.tst-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.tst-stars{ color:var(--gold); margin-bottom:14px; letter-spacing:2px; }
.tst-card p{ font-size:1rem; color:var(--ink); margin-bottom:20px; }
.tst-who{ display:flex; align-items:center; gap:13px; }
.tst-av{ width:46px; height:46px; border-radius:50%; background:var(--gradient); color:#fff; display:grid; place-items:center; font-weight:800; }
.tst-who strong{ display:block; color:var(--ink); font-size:.98rem; }
.tst-who small{ color:var(--body); }

/* ---------- Footer ---------- */
.footer{ background:var(--navy-deep); color:rgba(255,255,255,.72); padding:70px 0 26px; position:relative; }
.footer::before{ content:""; position:absolute; inset:0 0 auto 0; height:4px; background:var(--gradient); }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.1); }
.foot-brand img{ height:64px; margin-bottom:18px; }
.foot-brand p{ font-size:.95rem; max-width:300px; }
.foot-col h4{ color:#fff; font-size:1.05rem; margin-bottom:18px; }
.foot-col a{ display:block; padding:7px 0; font-size:.95rem; transition:color .25s, padding .25s; }
.foot-col a:hover{ color:var(--sky-light); padding-inline-start:6px; }
.foot-contact li{ display:flex; gap:12px; align-items:flex-start; padding:8px 0; font-size:.95rem; }
.foot-contact svg{ width:19px; height:19px; color:var(--sky); flex:none; margin-top:3px; }
.foot-social{ display:flex; gap:12px; margin-top:18px; }
.foot-social a{ width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,.08); display:grid; place-items:center; transition:.3s; }
.foot-social a:hover{ background:var(--gradient); transform:translateY(-3px); }
.foot-social svg{ width:20px; height:20px; color:#fff; }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:24px; font-size:.88rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ background:var(--gradient-soft); padding:160px 0 90px; text-align:center; position:relative; overflow:hidden; }
.page-hero::after{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 75% 25%, rgba(31,168,232,.4), transparent 45%); }
.page-hero > .container{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; font-size:clamp(2rem,4.5vw,3.2rem); margin-bottom:14px; }
.page-hero p{ color:rgba(255,255,255,.88); font-size:1.12rem; max-width:600px; margin:0 auto; }
.crumb{ display:inline-flex; gap:8px; align-items:center; color:rgba(255,255,255,.7); font-size:.9rem; margin-bottom:18px; }
.crumb a:hover{ color:var(--gold); }
.crumb span{ color:var(--gold); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:48px; align-items:start; }
.contact-info-card{ background:var(--gradient-soft); border-radius:var(--radius-lg); padding:40px; color:#fff; position:relative; overflow:hidden; }
.contact-info-card::after{ content:""; position:absolute; bottom:-40px; left:-40px; width:180px; height:180px; border-radius:50%; background:rgba(31,168,232,.3); filter:blur(20px); }
.contact-info-card > *{ position:relative; z-index:2; }
.contact-info-card h3{ color:#fff; font-size:1.5rem; margin-bottom:10px; }
.contact-info-card > p{ color:rgba(255,255,255,.85); margin-bottom:28px; }
.ci-list li{ display:flex; gap:16px; align-items:flex-start; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.ci-list li:last-child{ border-bottom:none; }
.ci-ic{ flex:none; width:46px; height:46px; border-radius:13px; background:rgba(255,255,255,.14); display:grid; place-items:center; }
.ci-ic svg{ width:22px; height:22px; color:#fff; }
.ci-list strong{ display:block; color:#fff; font-size:1rem; }
.ci-list small{ color:rgba(255,255,255,.78); font-size:.86rem; }
.ci-list a{ color:rgba(255,255,255,.92); }
.ci-list a:hover{ color:var(--gold); }

.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:38px; box-shadow:var(--shadow); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:600; color:var(--ink); margin-bottom:8px; font-size:.95rem; }
.field input,.field select,.field textarea{
  width:100%; padding:13px 16px; border:1.6px solid var(--line); border-radius:var(--radius-sm);
  font-family:inherit; font-size:.98rem; color:var(--ink); background:var(--bg-soft); transition:border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--sky); background:#fff; box-shadow:0 0 0 4px rgba(31,168,232,.12); }
.field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:.88rem; color:var(--body); margin-top:10px; }
.form-success{ display:none; background:#e9f9ef; border:1.5px solid #9fe0b8; color:#1c7a44; border-radius:var(--radius-sm); padding:14px 18px; margin-bottom:18px; font-weight:600; }

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-visual{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:1/1; background:var(--gradient-soft); display:grid; place-items:center; position:relative; }
.about-visual img{ height:160px; filter:brightness(0) invert(1); }
.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card{ text-align:center; padding:34px 24px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); transition:transform .35s var(--ease), box-shadow .35s; }
.value-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.value-ic{ width:66px; height:66px; margin:0 auto 18px; border-radius:18px; background:var(--gradient); display:grid; place-items:center; }
.value-ic svg{ width:32px; height:32px; color:#fff; }
.value-card h4{ font-size:1.18rem; margin-bottom:8px; }

.stat-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.stat-band .sb-num{ font-size:clamp(2rem,4vw,3rem); font-weight:800; color:var(--navy); }
.stat-band .sb-num span{ color:var(--gold); }
.stat-band .sb-label{ color:var(--body); font-size:.98rem; }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; bottom:26px; left:26px; z-index:900;
  width:60px; height:60px; border-radius:50%; background:#25D366;
  display:grid; place-items:center; box-shadow:0 12px 30px rgba(37,211,102,.45);
  transition:transform .3s var(--ease);
}
.wa-float:hover{ transform:scale(1.1); }
.wa-float svg{ width:32px; height:32px; color:#fff; }
.wa-float::after{ content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25D366; animation:ring 2.2s infinite; }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }
.reveal[data-d="4"]{ transition-delay:.32s; }

/* ---------- Keyframes ---------- */
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(240,160,32,.6);} 70%{box-shadow:0 0 0 10px rgba(240,160,32,0);} 100%{box-shadow:0 0 0 0 rgba(240,160,32,0);} }
@keyframes floaty{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes ring{ 0%{transform:scale(1);opacity:.7;} 100%{transform:scale(1.6);opacity:0;} }

/* ---------- Responsive ---------- */
@media(max-width:980px){
  .hero .container{ grid-template-columns:1fr; gap:40px; text-align:center; }
  .hero p{ margin-inline:auto; }
  .hero-actions,.hero-stats{ justify-content:center; }
  .hero-visual{ max-width:440px; margin:0 auto; }
  .why,.about-grid,.contact-grid{ grid-template-columns:1fr; }
  .svc-grid,.tst-grid,.values-grid{ grid-template-columns:repeat(2,1fr); }
  .dest-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .stat-band{ grid-template-columns:repeat(2,1fr); gap:24px; }
}
@media(max-width:680px){
  .section{ padding:64px 0; }
  .nav-links,.nav-cta .btn{ display:none; }
  .nav-toggle{ display:block; }
  .nav-links.open{
    display:flex; flex-direction:column; position:absolute; top:100%; right:0; left:0;
    background:#fff; padding:16px; gap:4px; box-shadow:var(--shadow); margin:0 16px; border-radius:16px;
  }
  .nav-links.open a{ color:var(--ink); padding:12px 16px; }
  .svc-grid,.tst-grid,.values-grid,.dest-grid,.steps,.form-row{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; }
  .cta-band,.contact-info-card,.form-card{ padding:32px 22px; }
  .hero-float{ display:none; }
}

/* =========================================================
   PRO UPGRADE — real images, richer motion, gallery, faq, map
   ========================================================= */

/* ---------- Real photo in hero background ---------- */
.hero{ background:var(--navy-deep); }
.hero-bg{
  position:absolute; inset:0; z-index:0;
  background-image:var(--gradient-soft);
  background-size:cover; background-position:center;
}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(6,17,99,.94) 0%, rgba(10,26,140,.85) 42%, rgba(31,168,232,.55) 100%);
}
/* fallback when image fails: keep brand gradient visible */
.hero-bg{ background-color:var(--navy); }

/* photos in destination cards */
.dest-card .dbg{ background-size:cover; background-position:center; }
.dest-card[data-img] .dbg{ background-image:var(--img); }

/* photo in why/about visual */
.why-visual.has-photo .ph,.about-visual.has-photo{ background-image:var(--img); background-size:cover; background-position:center; }
.why-visual.has-photo .ph img,.about-visual.has-photo img{ display:none; }
.why-visual.has-photo .ph::after,.about-visual.has-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,17,99,.45), transparent 55%); }

/* ---------- Richer motion ---------- */
.reveal{ transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal[data-anim="left"]{ transform:translateX(36px); }
.reveal[data-anim="right"]{ transform:translateX(-36px); }
.reveal[data-anim="scale"]{ transform:scale(.92); }
.reveal[data-anim="left"].in,.reveal[data-anim="right"].in,.reveal[data-anim="scale"].in{ transform:none; }

.svc-card,.dest-card,.value-card,.tst-card,.step{ will-change:transform; }
.svc-card:hover{ transform:translateY(-10px) scale(1.015); }
.svc-ic{ position:relative; }
.svc-ic::after{ content:""; position:absolute; inset:-6px; border-radius:24px; background:var(--gradient); opacity:0; transform:scale(.8); transition:.45s var(--ease); z-index:-1; }
.svc-card:hover .svc-ic::after{ opacity:.14; transform:scale(1); }

.btn{ position:relative; overflow:hidden; }
.btn::after{
  content:""; position:absolute; inset:0; background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
  transform:translateX(-130%); transition:transform .7s var(--ease);
}
.btn:hover::after{ transform:translateX(130%); }

.hero-content > *{ opacity:0; transform:translateY(22px); animation:heroIn .9s var(--ease) forwards; }
.hero-content > *:nth-child(1){ animation-delay:.05s; }
.hero-content > *:nth-child(2){ animation-delay:.18s; }
.hero-content > *:nth-child(3){ animation-delay:.31s; }
.hero-content > *:nth-child(4){ animation-delay:.44s; }
.hero-content > *:nth-child(5){ animation-delay:.57s; }
.hero-visual{ opacity:0; animation:heroIn 1s var(--ease) .5s forwards; }
@keyframes heroIn{ to{ opacity:1; transform:none; } }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:3;
  width:26px; height:42px; border:2px solid rgba(255,255,255,.5); border-radius:14px; display:grid; justify-items:center;
}
.scroll-cue span{ width:4px; height:8px; background:#fff; border-radius:3px; margin-top:7px; animation:cue 1.6s infinite; }
@keyframes cue{ 0%{opacity:0;transform:translateY(-4px);} 40%{opacity:1;} 80%{opacity:0;transform:translateY(10px);} }

/* ---------- Gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; grid-auto-rows:200px; }
.g-item{ position:relative; overflow:hidden; border-radius:var(--radius); cursor:pointer; box-shadow:var(--shadow-sm); }
.g-item .gimg{ position:absolute; inset:0; background-size:cover; background-position:center; background-image:var(--gradient-soft); transition:transform .7s var(--ease); }
.g-item[data-img] .gimg{ background-image:var(--img); }
.g-item:hover .gimg{ transform:scale(1.1); }
.g-item::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,17,99,.6), transparent 55%); opacity:0; transition:opacity .4s; }
.g-item:hover::after{ opacity:1; }
.g-cap{ position:absolute; inset:auto 16px 14px; z-index:2; color:#fff; font-weight:700; opacity:0; transform:translateY(10px); transition:.4s var(--ease); }
.g-item:hover .g-cap{ opacity:1; transform:none; }
.g-item.tall{ grid-row:span 2; }
.g-item.wide{ grid-column:span 2; }

/* lightbox */
.lightbox{ position:fixed; inset:0; z-index:2000; background:rgba(6,17,99,.92); display:none; align-items:center; justify-content:center; padding:30px; backdrop-filter:blur(6px); }
.lightbox.open{ display:flex; }
.lightbox .lb-img{ max-width:90vw; max-height:85vh; border-radius:16px; background-size:cover; background-position:center; box-shadow:var(--shadow-lg); width:min(900px,90vw); aspect-ratio:16/10; }
.lightbox .lb-close{ position:absolute; top:24px; left:24px; width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,.16); border:none; color:#fff; font-size:1.6rem; cursor:pointer; transition:.3s; }
.lightbox .lb-close:hover{ background:rgba(255,255,255,.3); transform:rotate(90deg); }

/* ---------- FAQ ---------- */
.faq-wrap{ max-width:820px; margin:0 auto; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); margin-bottom:14px; overflow:hidden; transition:box-shadow .3s, border-color .3s; }
.faq-item.open{ box-shadow:var(--shadow); border-color:transparent; }
.faq-q{ width:100%; text-align:right; background:none; border:none; cursor:pointer; font-family:inherit; font-weight:700; font-size:1.08rem; color:var(--ink); padding:22px 26px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.faq-q .fic{ flex:none; width:30px; height:30px; border-radius:50%; background:var(--bg-soft-2); display:grid; place-items:center; transition:.35s var(--ease); }
.faq-q .fic svg{ width:16px; height:16px; color:var(--sky); transition:transform .35s var(--ease); }
.faq-item.open .fic{ background:var(--gradient); }
.faq-item.open .fic svg{ color:#fff; transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner{ padding:0 26px 22px; color:var(--body); }

/* ---------- Map ---------- */
.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); position:relative; }
.map-wrap iframe{ width:100%; height:420px; border:0; display:block; filter:grayscale(.1); }

@media(max-width:980px){
  .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
}
@media(max-width:680px){
  .gallery{ grid-template-columns:1fr; grid-auto-rows:200px; }
  .g-item.wide{ grid-column:span 1; }
  .g-item.tall{ grid-row:span 1; }
  .scroll-cue{ display:none; }
}

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

/* ============================================================
   مكوّنات الأقسام الديناميكية (سيارات/باقات/فنادق/عروض/معرض/أسئلة)
   ============================================================ */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:26px}
.card-item{background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;
  box-shadow:0 10px 30px rgba(10,26,140,.06);transition:transform .3s,box-shadow .3s;display:flex;flex-direction:column}
.card-item:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(10,26,140,.14)}
.ci-img{position:relative;aspect-ratio:16/11;background:linear-gradient(135deg,#eef3fc,#dde8f7);overflow:hidden}
.ci-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.card-item:hover .ci-img img{transform:scale(1.06)}
.ci-badge{position:absolute;top:12px;inset-inline-start:12px;background:rgba(10,26,140,.9);color:#fff;
  font-size:.78rem;font-weight:800;padding:5px 12px;border-radius:50px;backdrop-filter:blur(4px)}
.ci-body{padding:18px 20px 20px;display:flex;flex-direction:column;gap:10px;flex:1}
.ci-body h3{font-size:1.12rem;color:var(--ink)}
.ci-specs{display:flex;flex-wrap:wrap;gap:8px}
.ci-specs span{background:var(--bg,#f5f7fc);border:1px solid var(--line);color:var(--body);
  font-size:.82rem;font-weight:600;padding:4px 11px;border-radius:50px}
.ci-feats{list-style:none;display:flex;flex-direction:column;gap:6px;margin:2px 0}
.ci-feats li{position:relative;padding-inline-start:20px;font-size:.88rem;color:var(--body)}
.ci-feats li::before{content:"✓";position:absolute;inset-inline-start:0;color:var(--sky);font-weight:900}
.ci-desc{font-size:.9rem;color:var(--body);line-height:1.6}
.ci-foot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding-top:12px;border-top:1px dashed var(--line)}
.ci-price{font-weight:900;color:var(--navy,#0A1A8C);font-size:1.05rem}
.btn-sm{padding:7px 15px;font-size:.82rem}

/* العروض */
.offer-card{background:linear-gradient(135deg,#fff,#fbfdff);border:1px solid var(--line);border-radius:18px;
  overflow:hidden;box-shadow:0 10px 30px rgba(10,26,140,.06);display:flex;flex-direction:column}
.offer-body{padding:22px;position:relative}
.offer-disc{display:inline-block;background:var(--gold,#F0A020);color:#3a2600;font-weight:900;
  padding:6px 16px;border-radius:50px;font-size:1.05rem;margin-bottom:10px}
.offer-body h3{font-size:1.2rem;color:var(--ink);margin-bottom:6px}
.offer-body p{color:var(--body);font-size:.94rem}
.offer-exp{display:block;margin-top:10px;color:#a32d2d;font-weight:700;font-size:.82rem}

/* المعرض */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px;grid-auto-flow:dense}
.gal-item{position:relative;border-radius:14px;overflow:hidden;aspect-ratio:1;display:block;background:#eef3fc}
.gal-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gal-item:hover img{transform:scale(1.07)}
.gal-wide{grid-column:span 2}
.gal-tall{grid-row:span 2;aspect-ratio:auto}
.gal-cap{position:absolute;inset-inline:0;bottom:0;background:linear-gradient(transparent,rgba(6,17,99,.85));
  color:#fff;padding:24px 14px 12px;font-size:.86rem;font-weight:700;opacity:0;transition:.3s}
.gal-item:hover .gal-cap{opacity:1}

/* الأسئلة الشائعة */
.faq-wrap{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;box-shadow:0 6px 20px rgba(10,26,140,.05)}
.faq-item summary{cursor:pointer;list-style:none;padding:18px 22px;font-weight:800;color:var(--ink);
  font-size:1.02rem;display:flex;justify-content:space-between;align-items:center;gap:12px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:1.5rem;color:var(--sky);font-weight:400;transition:transform .3s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-ans{padding:0 22px 20px;color:var(--body);line-height:1.8;font-size:.95rem}

/* رسائل التحميل/الفراغ/الخطأ */
.data-loading,.data-empty{grid-column:1/-1;text-align:center;color:var(--body);padding:40px 20px;font-size:.95rem}
.ld-spin{display:inline-block;width:16px;height:16px;border:2.5px solid rgba(31,168,232,.3);
  border-top-color:var(--sky);border-radius:50%;animation:ldsp .7s linear infinite;vertical-align:-3px}
@keyframes ldsp{to{transform:rotate(360deg)}}
.form-error{display:none;background:#fceaea;color:#a32d2d;border:1px solid #f0bcbc;
  padding:12px 16px;border-radius:10px;font-weight:700;font-size:.9rem;margin-bottom:14px}

@media(max-width:640px){
  .cards-grid{grid-template-columns:1fr}
  .gal-wide,.gal-tall{grid-column:auto;grid-row:auto;aspect-ratio:1}
}

/* ============================================================
   تجربة الموبايل بمستوى التطبيقات + Above the Fold + PWA
   ============================================================ */

/* مناطق آمنة للأجهزة ذات النوتش (iPhone) */
:root{ --safe-bottom: env(safe-area-inset-bottom, 0px); }

/* زر تثبيت التطبيق العائم (يظهر فقط عند توفّر التثبيت) */
.pwa-install{position:fixed;inset-inline-start:18px;bottom:calc(20px + var(--safe-bottom));z-index:60;
  display:none;align-items:center;gap:8px;background:linear-gradient(135deg,#0A1A8C,#1FA8E8);color:#fff;
  border:none;font-family:inherit;font-weight:800;font-size:.9rem;padding:12px 18px;border-radius:50px;
  box-shadow:0 12px 30px rgba(10,26,140,.4);cursor:pointer;animation:pwaPop .4s}
.pwa-install.show{display:inline-flex}
.pwa-install svg{width:18px;height:18px}
@keyframes pwaPop{from{transform:translateY(20px);opacity:0}to{transform:none;opacity:1}}

/* ===== شريط التنقّل السفلي للموبايل (App-like) ===== */
.tabbar{display:none}
@media(max-width:860px){
  .tabbar{display:flex;position:fixed;inset-inline:0;bottom:0;z-index:70;
    background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
    border-top:1px solid var(--line);padding:8px 6px calc(8px + var(--safe-bottom));
    justify-content:space-around;box-shadow:0 -8px 30px rgba(10,26,140,.08)}
  .tabbar a{flex:1;display:flex;flex-direction:column;align-items:center;gap:3px;text-decoration:none;
    color:var(--body);font-size:.68rem;font-weight:700;padding:4px 2px;border-radius:12px;transition:.2s}
  .tabbar a svg{width:22px;height:22px;stroke-width:2}
  .tabbar a.active{color:var(--navy,#0A1A8C)}
  .tabbar a.active svg{transform:translateY(-1px)}
  .tabbar a.tb-cta{color:#fff}
  .tabbar a.tb-cta .tb-ic{background:linear-gradient(135deg,#F0A020,#ffb840);width:46px;height:46px;
    border-radius:50%;display:grid;place-items:center;margin-top:-22px;box-shadow:0 8px 20px rgba(240,160,32,.5);color:#3a2600}
  .tabbar a.tb-cta .tb-ic svg{width:24px;height:24px}
  /* مساحة سفلية حتى لا يغطي الشريط المحتوى */
  body{padding-bottom:74px}
  .wa-float{bottom:90px!important}
  .pwa-install{bottom:calc(90px + var(--safe-bottom))}
}

/* ملاحظة: تم دمج كل تعديلات الموبايل في كتلة واحدة موحّدة بنهاية الملف
   (MOBILE — كتلة موحّدة) لإزالة التكرار والتعارض. */

/* تمرير أفقي للبطاقات على الموبايل (إحساس تطبيقي) */
@media(max-width:640px){
  .svc-grid{grid-template-columns:1fr}
  .dest-grid{grid-template-columns:1fr 1fr;gap:12px}
  .steps{grid-template-columns:1fr 1fr}
}

/* لمسة: ضغط الأزرار يعطي ردّ فعل */
.btn:active{transform:scale(.97)}
.card-item:active{transform:scale(.99)}

/* تحسين الخط على الشاشات الكبيرة + Above the Fold للكمبيوتر */
@media(min-width:1024px){
  .hero{min-height:88vh;display:flex;align-items:center}
  .hero h1{font-size:2.9rem}
}

/* احترام تفضيل الوضع الداكن لشريط المتصفح */
@media (display-mode: standalone){
  /* في وضع التطبيق المثبّت: أخفِ بعض عناصر الويب */
  .header{padding-top:max(0px, env(safe-area-inset-top))}
}

/* ============================================================
   CREATIVE UPGRADE — strong, eye-catching motion (2026)
   ============================================================ */

/* ===== 1) Hero trust bar (replaces fake stat numbers) ===== */
.hero-trust{ display:flex; flex-wrap:wrap; gap:14px 26px; margin-top:6px; }
.hero-trust li{
  display:inline-flex; align-items:center; gap:9px;
  color:rgba(255,255,255,.92); font-weight:600; font-size:.9rem;
  opacity:0; transform:translateY(14px); animation:trustIn .7s var(--ease) forwards;
}
.hero-trust li:nth-child(1){ animation-delay:.7s; }
.hero-trust li:nth-child(2){ animation-delay:.82s; }
.hero-trust li:nth-child(3){ animation-delay:.94s; }
.hero-trust li:nth-child(4){ animation-delay:1.06s; }
.hero-trust svg{
  width:22px; height:22px; flex:none; padding:4px; border-radius:50%;
  color:#3a2600; background:linear-gradient(135deg,var(--gold),#ffc659);
  box-shadow:0 4px 12px rgba(240,160,32,.45);
}
@keyframes trustIn{ to{ opacity:1; transform:none; } }
@media(max-width:980px){ .hero-trust{ justify-content:center; } }
/* (تنسيق hero-trust على الموبايل موحّد في الكتلة الختامية) */

/* ===== 2) Living hero background ===== */
.hero{ isolation:isolate; background:var(--navy-deep); }
.hero-bg{
  position:absolute; inset:0; z-index:0;
  background:var(--gradient-soft); background-size:cover; background-position:center;
  transition:transform .25s ease-out;
}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(6,17,99,.92) 0%, rgba(10,26,140,.80) 42%, rgba(31,168,232,.45) 100%);
}
.hero-bg::before{
  content:""; position:absolute; inset:-12%; z-index:1;
  background:
    radial-gradient(circle at 22% 30%, rgba(31,168,232,.55), transparent 38%),
    radial-gradient(circle at 82% 22%, rgba(240,160,32,.32), transparent 36%),
    radial-gradient(circle at 68% 88%, rgba(95,198,245,.40), transparent 40%);
  filter:blur(10px); animation:auroraMove 18s ease-in-out infinite alternate;
}
@keyframes auroraMove{
  0%{ transform:translate3d(0,0,0) scale(1); }
  50%{ transform:translate3d(2%,-2%,0) scale(1.08); }
  100%{ transform:translate3d(-2%,2%,0) scale(1.04); }
}
.hero-grid-fx{
  position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size:38px 38px;
  -webkit-mask-image:radial-gradient(circle at 65% 45%, #000, transparent 72%);
          mask-image:radial-gradient(circle at 65% 45%, #000, transparent 72%);
  animation:gridDrift 28s linear infinite;
}
@keyframes gridDrift{ to{ background-position:380px 380px; } }
.hero .container{ position:relative; z-index:3; }
.hero-orb{
  position:absolute; border-radius:50%; z-index:1; pointer-events:none;
  background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), rgba(255,255,255,.02) 60%);
  border:1px solid rgba(255,255,255,.12); animation:floaty 7s ease-in-out infinite;
}
.hero-orb--1{ width:120px; height:120px; top:14%; inset-inline-start:8%; animation-delay:.5s; }
.hero-orb--2{ width:70px; height:70px; bottom:18%; inset-inline-start:40%; animation-delay:2s; }
.hero-orb--3{ width:46px; height:46px; top:24%; inset-inline-start:55%; animation-delay:3.4s; }
@media(max-width:768px){ .hero-orb,.hero-grid-fx{ display:none; } }

/* ===== 3) Hero card polish ===== */
.hero-card{ position:relative; overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18); }
.hero-card::before{
  content:""; position:absolute; top:-60%; inset-inline-start:-30%; width:80%; height:200%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent);
  transform:rotate(8deg); animation:cardShine 6s ease-in-out infinite;
}
@keyframes cardShine{ 0%,70%{ inset-inline-start:-40%; } 100%{ inset-inline-start:130%; } }
.hc-item{ position:relative; overflow:hidden; }
.hc-item:hover img{ transform:scale(1.12) rotate(-4deg); transition:transform .4s var(--ease); }
.hero-float{ transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.hero-float:hover{ transform:translateY(-6px) scale(1.04); box-shadow:0 30px 60px rgba(0,0,0,.28); }

/* ===== 4) Animated gradient on hero headline ===== */
.hero h1 .sky{
  background:linear-gradient(120deg,#fff 0%, var(--sky-light) 40%, #fff 80%);
  background-size:220% auto; -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; animation:shimmer 5s linear infinite;
}
@keyframes shimmer{ to{ background-position:220% center; } }
.hero h1 .accent{ position:relative; }
.hero h1 .accent::after{
  content:""; position:absolute; inset-inline-end:0; bottom:.06em; height:.10em; width:0;
  background:var(--gold); border-radius:4px; animation:underline 1s var(--ease) 1.1s forwards;
}
@keyframes underline{ to{ width:100%; } }
.hero-badge{ box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 8px 24px rgba(0,0,0,.18); }

/* ===== 5) Section-wide motion polish ===== */
.svc-card::after{
  content:""; position:absolute; inset:0; border-radius:var(--radius);
  background:radial-gradient(circle at 50% 0%, rgba(31,168,232,.10), transparent 60%);
  opacity:0; transition:opacity .45s var(--ease); pointer-events:none;
}
.svc-card:hover::after{ opacity:1; }
.dest-card .dest-meta{ transition:transform .4s var(--ease); }
.dest-card:hover .dest-meta{ transform:translateY(-4px); }
.dest-ic{ transition:transform .45s var(--ease), background .3s; }
.dest-card:hover .dest-ic{ transform:rotate(-8deg) scale(1.08); background:rgba(240,160,32,.3); }
.step{ transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.step:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.step .sn{ position:relative; transition:transform .4s var(--ease); }
.step:hover .sn{ transform:scale(1.1) rotate(-6deg); }
.step .sn::after{
  content:""; position:absolute; inset:-6px; border-radius:50%;
  background:var(--gradient); opacity:0; transform:scale(.7); transition:.45s var(--ease); z-index:-1;
}
.step:hover .sn::after{ opacity:.18; transform:scale(1); }
.tst-card{ position:relative; overflow:hidden; }
.tst-card::before{
  content:"\201D"; position:absolute; top:6px; inset-inline-start:18px;
  font-family:Georgia,serif; font-size:5rem; line-height:1; color:var(--sky);
  opacity:.10; transition:opacity .35s, transform .35s var(--ease);
}
.tst-card:hover::before{ opacity:.20; transform:translateY(4px); }
.card-item{ position:relative; }
.card-item::before{
  content:""; position:absolute; inset:0 0 auto 0; height:3px; z-index:2;
  background:var(--gradient); transform:scaleX(0); transform-origin:right;
  transition:transform .45s var(--ease);
}
.card-item:hover::before{ transform:scaleX(1); }
.ci-img img,.gal-item img{ opacity:0; transition:opacity .6s var(--ease); }
.ci-img img.loaded,.gal-item img.loaded{ opacity:1; }

/* Section heads reveal on scroll (JS-driven) */
.sec-head{ opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.sec-head.in{ opacity:1; transform:none; }

/* Reading progress bar */
.read-progress{
  position:fixed; top:0; inset-inline-end:0; height:3px; width:0; z-index:1200;
  background:linear-gradient(90deg,var(--gold),var(--sky)); box-shadow:0 0 10px rgba(31,168,232,.5);
  transition:width .1s linear;
}

/* Back-to-top button */
.to-top{
  position:fixed; bottom:26px; inset-inline-start:96px; z-index:899;
  width:48px; height:48px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(255,255,255,.95); color:var(--navy); box-shadow:var(--shadow);
  display:grid; place-items:center; opacity:0; transform:translateY(20px) scale(.8);
  transition:opacity .35s var(--ease), transform .35s var(--ease), background .3s;
}
.to-top.show{ opacity:1; transform:none; }
.to-top:hover{ background:var(--gradient); color:#fff; transform:translateY(-3px); }
.to-top svg{ width:22px; height:22px; }
@media(max-width:860px){ .to-top{ inset-inline-start:auto; inset-inline-end:18px; bottom:150px; } }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-bg::before,.hero-grid-fx,.hero-card::before,.hero-orb,
  .hero h1 .sky,.hero h1 .accent::after,.hero-trust li{ animation:none!important; }
  .hero-trust li{ opacity:1!important; transform:none!important; }
  .hero h1 .accent::after{ width:100%; }
  .sec-head{ opacity:1!important; transform:none!important; }
}

/* ============================================================
   MOBILE EXPERIENCE — overhaul (2026) — عصري واحترافي
   يأتي بعد كل القواعد السابقة ليتجاوزها
   ============================================================ */
@media(max-width:768px){

  /* ===== الهيرو: متماسك، مدمج واحترافي ===== */
  .hero{
    min-height:auto; padding:88px 0 38px; text-align:center;
  }
  .hero .container{ display:block; padding-inline:22px; }
  .hero-content{ display:flex; flex-direction:column; align-items:center; gap:0; }
  .hero-badge{
    font-size:.74rem; padding:6px 13px; margin-bottom:14px;
  }
  .hero h1{
    font-size:1.95rem; line-height:1.2; margin-bottom:13px;
    text-wrap:balance;
  }
  .hero p{
    font-size:.95rem; line-height:1.65; margin:0 auto 20px; max-width:40ch;
    color:rgba(255,255,255,.86);
  }

  /* أزرار: عمودية وواضحة لكن مدمجة (حد لمس آمن 46px) */
  .hero-actions{
    flex-direction:column; width:100%; max-width:330px; gap:10px; margin-bottom:22px;
  }
  .hero-actions .btn{ width:100%; padding:12px 18px; font-size:.92rem; min-height:46px; }
  .hero-actions .btn svg{ width:17px; height:17px; }

  /* شريط الثقة: شبكة chips أنيقة */
  .hero-trust{
    display:grid; grid-template-columns:1fr 1fr; gap:8px;
    width:100%; max-width:360px; margin:2px auto 0;
  }
  .hero-trust li{
    justify-content:flex-start; gap:7px; font-size:.78rem; font-weight:600;
    background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
    padding:9px 11px; border-radius:12px; backdrop-filter:blur(6px);
    color:#fff; text-align:start; line-height:1.3;
    animation:none; opacity:1; transform:none;   /* ثابتة وواضحة فوراً */
  }
  .hero-trust svg{ width:17px; height:17px; padding:3px; }

  /* إزالة التكرار: بطاقة "باقة الخدمات" تكرّر قسم الخدمات أسفلها،
     فنخفيها على الموبايل ليبقى أعلى الصفحة نظيفاً وسريعاً */
  .hero-visual{ display:none; }
  .hero-float{ display:none; }

  /* ===== عناوين الأقسام: إيقاع أنظف ===== */
  .sec-head{ margin-bottom:30px; padding:0 6px; }
  .sec-eyebrow{ font-size:.8rem; margin-bottom:9px; }
  .sec-title{ font-size:1.5rem; line-height:1.3; }
  .sec-sub{ font-size:.93rem; line-height:1.65; }
  .section{ padding:48px 0; }

  /* ===== بطاقات الخدمات: متناسقة وأصغر ===== */
  .svc-grid{ gap:13px; }
  .svc-card{ padding:22px 18px; border-radius:16px; }
  .svc-ic{ width:56px; height:56px; border-radius:16px; margin-bottom:14px; }
  .svc-ic img{ width:32px; height:32px; }
  .svc-card h3{ font-size:1.1rem; margin-bottom:7px; }
  .svc-card p{ font-size:.9rem; line-height:1.6; }

  /* ===== لماذا نحن / الميزات ===== */
  .why{ gap:30px; }
  .feat-list{ gap:14px; margin-top:20px; }
  .feat-ic{ width:42px; height:42px; }
  .feat-item h4{ font-size:1.02rem; }
  .feat-item p{ font-size:.9rem; }

  /* ===== الوجهات: بطاقتان أنيقتان ===== */
  .dest-grid{ grid-template-columns:1fr 1fr; gap:11px; }
  .dest-card{ aspect-ratio:3/3.6; border-radius:16px; }
  .dest-meta h3{ font-size:1.05rem; }
  .dest-meta p{ font-size:.78rem; }
  .dest-ic{ width:44px; height:44px; top:12px; inset-inline-end:12px; }
  .dest-ic img{ width:24px; height:24px; }

  /* ===== خطوات العمل: عمودان مدمجان ===== */
  .steps{ grid-template-columns:1fr 1fr; gap:11px; }
  .step{ padding:22px 14px; border-radius:16px; }
  .step .sn{ width:48px; height:48px; font-size:1.1rem; margin-bottom:12px; }
  .step h4{ font-size:1rem; margin-bottom:6px; }
  .step p{ font-size:.85rem; line-height:1.55; }

  /* ===== الآراء: بطاقة واحدة مريحة ===== */
  .tst-grid{ gap:13px; }
  .tst-card{ padding:24px 20px; border-radius:16px; }
  .tst-card p{ font-size:.95rem; }

  /* ===== حد لمس آمن موحّد لكل الأزرار (مدمج لكن مريح) ===== */
  .btn{ min-height:44px; }

  /* ===== شريط CTA ===== */
  .cta-band{ padding:34px 22px; border-radius:22px; }
  .cta-band h2{ font-size:1.5rem; }
  .cta-band p{ font-size:.95rem; }
  .cta-actions{ flex-direction:column; width:100%; }
  .cta-actions .btn{ width:100%; min-height:46px; }

  /* الشريط السفلي للموبايل */
  .tabbar a{ font-size:.7rem; }
  .tabbar a svg{ width:22px; height:22px; }

  /* إزالة التكرار: واتساب موجود في الشريط السفلي → إخفاء الزر العائم */
  .wa-float{ display:none !important; }
  /* زر الرجوع لأعلى: فوق الشريط السفلي بلا زحام */
  .to-top{ inset-inline-end:16px; inset-inline-start:auto; bottom:86px; width:42px; height:42px; }

  /* ===== بطاقات المحتوى الديناميكي (سيارات/باقات/فنادق) ===== */
  .cards-grid{ gap:15px; }
  .card-item{ border-radius:16px; }

  /* ===== الفوتر: مضغوط جداً على الموبايل (حجم ونصوص أصغر) ===== */
  .footer{ padding:32px 0 18px; }
  .foot-grid{
    grid-template-columns:1fr 1fr;        /* عمودان مدمجان بدل عمود طويل */
    gap:18px 14px; text-align:start; padding-bottom:20px;
  }
  .foot-brand{ grid-column:1 / -1; text-align:center; }
  .foot-brand img{ height:44px; margin-inline:auto; margin-bottom:12px; }
  .foot-brand p{ display:none; }          /* الفقرة التسويقية الطويلة تُخفى على الجوال */
  .foot-social{ justify-content:center; margin-top:0; gap:10px; }
  .foot-social a{ width:38px; height:38px; }
  .foot-social svg{ width:18px; height:18px; }
  .foot-col h4{ font-size:.9rem; margin-bottom:9px; }
  .foot-col a{ font-size:.82rem; padding:4px 0; }
  .foot-grid > div:last-child{ grid-column:1 / -1; }   /* عمود "تواصل معنا" بعرض كامل أسفل الروابط */
  .foot-contact li{ justify-content:flex-start; font-size:.82rem; padding:5px 0; }
  .foot-contact svg{ width:16px; height:16px; margin-top:2px; }
  .foot-bottom{ flex-direction:column; text-align:center; gap:5px; padding-top:14px; font-size:.74rem; }
}

/* شاشات صغيرة جداً: عمود واحد للخدمات حفاظاً على الوضوح */
@media(max-width:430px){
  .hero h1{ font-size:1.85rem; }
  .svc-grid{ grid-template-columns:1fr; }
}

/* شاشات صغيرة جداً: حافظ على الوضوح دون ضغط مفرط */
@media(max-width:380px){
  .hero h1{ font-size:1.8rem; }
  .hero p{ font-size:.92rem; }
  .hero-trust{ grid-template-columns:1fr; }   /* عمود واحد أوضح من ضغط عمودين */
}

/* ============================================================
   PROFESSIONAL POLISH — بلوكات مقصودة بدل الفراغ · تسلسل هرمي · كسر الرتابة
   (طبقة ختامية واحدة — بدون صور حقيقية)
   ============================================================ */

/* ===== 1) تسلسل أزرار الهيرو: الذهبي = أساسي · واتساب = ثانوي زجاجي ===== */
.hero .btn--white{
  background:rgba(255,255,255,.12); color:#fff;
  border:1.5px solid rgba(255,255,255,.38); backdrop-filter:blur(8px);
  box-shadow:none;
}
.hero .btn--white:hover{
  background:rgba(255,255,255,.2); border-color:#fff; transform:translateY(-3px); box-shadow:none;
}

/* ===== 2) كروت الوجهات: لمسة فاخرة + تنوّع لوني (يكسر تكرار الكحلي) ===== */
.dest-card .dbg{
  background:
    radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.6px) 0 0/24px 24px,
    var(--gradient-soft);
}
.dest-card .dbg::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:radial-gradient(circle at 74% 16%, rgba(31,168,232,.55), transparent 52%);
  transition:opacity .5s var(--ease), transform .6s var(--ease);
}
.dest-card:nth-child(2) .dbg::before{ background:radial-gradient(circle at 72% 18%, rgba(95,198,245,.50), transparent 52%); }
.dest-card:nth-child(3) .dbg::before{ background:radial-gradient(circle at 72% 16%, rgba(240,160,32,.42), transparent 52%); }
.dest-card:nth-child(4) .dbg::before{ background:radial-gradient(circle at 74% 18%, rgba(150,120,230,.46), transparent 52%); }
.dest-card .dbg::after{ background:linear-gradient(to top, rgba(6,17,99,.92) 6%, rgba(6,17,99,.25) 45%, transparent 70%); }
.dest-card:hover .dbg::before{ transform:scale(1.15); }
/* أيقونة الوجهة: زجاجية أنيقة */
.dest-ic{ background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.25); box-shadow:0 8px 22px rgba(0,0,0,.18); }
/* سطر "اكتشف" صغير يعطي إحساس قابلية النقر */
.dest-meta h3{ position:relative; display:inline-block; }
.dest-meta h3::after{
  content:""; display:block; height:2px; width:32px; margin-top:7px;
  background:var(--gold); border-radius:2px; transition:width .4s var(--ease);
}
.dest-card:hover .dest-meta h3::after{ width:54px; }

/* ===== 3) لوحات "لماذا نحن" و"من نحن": بانل مُصمّم بدل مربع فارغ ===== */
.why-visual .ph, .about-visual{
  background:
    radial-gradient(circle at 80% 14%, rgba(31,168,232,.5), transparent 44%),
    radial-gradient(circle at 10% 90%, rgba(240,160,32,.22), transparent 46%),
    var(--gradient-soft);
  position:relative; overflow:hidden;
}
.why-visual .ph::before, .about-visual::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:radial-gradient(rgba(255,255,255,.13) 1px, transparent 1.6px) 0 0/26px 26px;
  -webkit-mask-image:radial-gradient(circle at 68% 38%, #000, transparent 74%);
          mask-image:radial-gradient(circle at 68% 38%, #000, transparent 74%);
}
.why-visual .ph img, .about-visual img{
  position:relative; z-index:2;
  filter:brightness(0) invert(1) drop-shadow(0 14px 34px rgba(0,0,0,.35));
}

/* ===== 4) صفحات داخلية: نقش خفيف في الهيدر العلوي لمظهر أرقى ===== */
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.5;
  background:radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.5px) 0 0/34px 34px;
  -webkit-mask-image:radial-gradient(circle at 72% 45%, #000, transparent 72%);
          mask-image:radial-gradient(circle at 72% 45%, #000, transparent 72%);
}

/* ===== 5) صقل عام: ظلال أنعم وحدود أرقى للكروت ===== */
.svc-card, .tst-card, .value-card, .step, .card-item{ border-color:#eef1f8; }
.cta-band{ box-shadow:0 30px 70px rgba(10,26,140,.22); }

/* احترام تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .dest-card:hover .dbg::before{ transform:none; }
}
