:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5b6472;

  --card:#ffffff;
  --border:rgba(15,23,42,.10);
  --shadow: 0 18px 50px rgba(2,8,23,.08);

  --primary:#1f4ed8;     /* أزرق جذاب */
  --primary2:#0ea5e9;    /* سماوي */
  --wa:#16a34a;          /* واتساب */
  --call:#7c3aed;        /* بنفسجي */

  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

/* خلفية خفيفة نظيفة */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 15% 10%, rgba(31,78,216,.10), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(14,165,233,.10), transparent 45%),
    radial-gradient(circle at 50% 110%, rgba(124,58,237,.10), transparent 55%);
}

a{ color:inherit; }

/* RTL */
html[dir="rtl"] body{ font-family: system-ui, "Cairo", "Tahoma", Arial; }
html[dir="rtl"] input, html[dir="rtl"] textarea{ text-align:right; }

/* ---------------- NAV ---------------- */
.nav{
  position:fixed;
  inset:0 0 auto 0;
  z-index:999;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:14px 16px;
}

.navWrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:280px;
}

.brand img{
  height:44px;
  width:auto;
  display:block;
  object-fit:contain;
}

.brandText{ display:flex; flex-direction:column; line-height:1.1; }
.brandName{ font-weight:950; letter-spacing:.2px; }
.brandTag{ font-size:12px; color:var(--muted); margin-top:3px; }

.menu{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}

.menu a{
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color: rgba(11,18,32,.86);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{
  border-color: rgba(31,78,216,.20);
  background: rgba(31,78,216,.06);
  color: rgba(11,18,32,1);
}

.navActions{
  display:flex;
  gap:10px;
  align-items:center;
}

@media (max-width: 980px){
  .menu{ display:none; }
  .brand{ min-width:auto; }
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: #fff;
  color: rgba(11,18,32,.92);
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
  box-shadow: 0 10px 22px rgba(2,8,23,.06);
}

.btn:hover{ transform: translateY(-1px); box-shadow: 0 16px 30px rgba(2,8,23,.10); }

.btn.small{ padding:10px 12px; border-radius:12px; font-size:13px; }

.btn.primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-color: transparent;
  color:#fff;
}
.btn.ghost{
  background: rgba(31,78,216,.06);
  border-color: rgba(31,78,216,.18);
  color: rgba(11,18,32,.92);
}
.btn.wa{
  background: rgba(22,163,74,.10);
  border-color: rgba(22,163,74,.22);
  color: rgba(11,18,32,.92);
}
.btn.call{
  background: rgba(124,58,237,.10);
  border-color: rgba(124,58,237,.22);
  color: rgba(11,18,32,.92);
}

.dot{
  width:10px; height:10px; border-radius:999px; display:inline-block;
}
.dotWa{ background: var(--wa); box-shadow: 0 0 0 4px rgba(22,163,74,.12); }
.dotCall{ background: var(--call); box-shadow: 0 0 0 4px rgba(124,58,237,.12); }

/* ---------------- Sections ---------------- */
.section{ padding:56px 0; }
.section.alt{ background: rgba(2,8,23,.02); border-top:1px solid rgba(15,23,42,.06); border-bottom:1px solid rgba(15,23,42,.06); }

.topPad{ padding-top: 110px; } /* بسبب الناف */
.sectionHead{ margin-bottom:14px; }

.h1{ margin:0; font-size: clamp(26px, 3.2vw, 38px); letter-spacing:.2px; }
.h2{ margin:0; font-size: clamp(22px, 2.6vw, 30px); letter-spacing:.2px; }
.sub{ margin:8px 0 0; color: var(--muted); line-height:1.65; }

.muted{ color: var(--muted); }
.mt10{ margin-top:10px; }

/* ---------------- Cards ---------------- */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card.mini{ padding:16px; box-shadow: 0 14px 35px rgba(2,8,23,.07); }

.cardTitle{ margin:0 0 10px; font-size:16px; }

.hr{
  height:1px;
  background: rgba(15,23,42,.08);
  margin:14px 0;
}

.p{ margin:0; line-height:1.8; color: rgba(11,18,32,.86); }

/* ---------------- Grid ---------------- */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns:1fr; }
}

/* ---------------- Tabs ---------------- */
.svcTabs,.tripTabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 12px 0;
}

.svcTab,.tripBtn{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color: rgba(11,18,32,.90);
  cursor:pointer;
  font-weight:900;
  transition:.15s ease;
}
.svcTab:hover,.tripBtn:hover{
  background: rgba(31,78,216,.06);
  border-color: rgba(31,78,216,.18);
}
.svcTab.active{
  background: rgba(31,78,216,.10);
  border-color: rgba(31,78,216,.28);
}
.tripBtn.active{
  background: rgba(124,58,237,.10);
  border-color: rgba(124,58,237,.24);
}

/* ---------------- Forms ---------------- */
label{
  font-size:13px;
  color: rgba(11,18,32,.78);
  display:block;
  margin:0 0 6px;
  font-weight:700;
}

input,select,textarea{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background: #fff;
  color: rgba(11,18,32,.92);
  outline:none;
  transition:.12s ease;
}

input:focus,select:focus,textarea:focus{
  border-color: rgba(31,78,216,.40);
  box-shadow: 0 0 0 4px rgba(31,78,216,.10);
}

textarea{ resize:vertical; }
input::placeholder, textarea::placeholder{ color: rgba(11,18,32,.40); }

.field{ position:relative; }

.segment{
  display:grid;
  grid-template-columns:1fr 1fr 180px 180px;
  gap:10px;
  margin-bottom:10px;
}
@media (max-width:980px){ .segment{ grid-template-columns:1fr; } }

.grid4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin:12px 0;
}
@media (max-width:980px){ .grid4{ grid-template-columns:1fr 1fr; } }

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
@media (max-width:980px){ .grid3{ grid-template-columns:1fr; } }

.formActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
  align-items:center;
}

.statusMsg{ color: rgba(11,18,32,.72); font-weight:700; }

/* Suggestions */
.suggestions{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 6px);
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
  border-radius:12px;
  overflow:hidden;
  display:none;
  z-index:50;
  box-shadow: 0 18px 45px rgba(2,8,23,.12);
}

.suggestions .sugItem{
  padding:10px 12px;
  cursor:pointer;
  font-weight:800;
  border-bottom:1px solid rgba(15,23,42,.06);
  color: rgba(11,18,32,.86);
}
.suggestions .sugItem:last-child{ border-bottom:none; }
.suggestions .sugItem:hover{ background: rgba(31,78,216,.06); }

/* ---------------- Offers Slider ---------------- */
.offersWrap{
  display:flex;
  gap:10px;
  align-items:center;
}

.offerNav{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  font-weight:900;
  color: rgba(11,18,32,.78);
  transition:.15s ease;
}
.offerNav:hover{ background: rgba(31,78,216,.06); border-color: rgba(31,78,216,.18); }

.offerSliderInside{
  overflow:hidden;
  flex:1;
}

.offerTrack{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding: 2px;
  scrollbar-width: none;
}
.offerTrack::-webkit-scrollbar{ display:none; }

.offerCard{
  min-width: 270px;
  max-width: 270px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 14px 35px rgba(2,8,23,.07);
  overflow:hidden;
  cursor:pointer;
  transition:.15s ease;
}
.offerCard:hover{ transform: translateY(-2px); box-shadow: 0 20px 45px rgba(2,8,23,.10); }

.offerCard img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  background: rgba(2,8,23,.03);
}

.offerBody{ padding:12px; }
.offerBody h3{ margin:0 0 6px; font-size:15px; }
.offerBody p{ margin:0 0 10px; color: var(--muted); line-height:1.55; font-size:13px; }

.offerBtn{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(22,163,74,.22);
  background: rgba(22,163,74,.10);
  font-weight:900;
  cursor:pointer;
}

/* ---------------- Contact helpers ---------------- */
.phoneBig{ font-size:16px; font-weight:950; margin:8px 0 0; }
.rowBtns{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.miniList{ margin-top:12px; }
.miniLabel{ font-weight:900; font-size:12px; color: rgba(11,18,32,.70); margin-bottom:6px; }

.list{ margin:8px 0 0; padding-left:18px; color: rgba(11,18,32,.78); }
html[dir="rtl"] .list{ padding-left:0; padding-right:18px; }

/* ---------------- Floating buttons ---------------- */
.float{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}

.fab{
  width:54px;
  height:54px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 18px 45px rgba(2,8,23,.12);
  background:#fff;
  transition:.15s ease;
  text-decoration:none;
}
.fab:hover{ transform:translateY(-2px); }
.fab.w{ background: rgba(22,163,74,.10); }
.fab.c{ background: rgba(124,58,237,.10); }

/* ---------------- Footer ---------------- */
.footer{
  border-top:1px solid rgba(15,23,42,.10);
  padding:18px 0;
  background:#fff;
}

.footerWrap{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: rgba(11,18,32,.72);
  font-weight:700;
  font-size:13px;
}