/* ============================================================
   أفضل سطحة سيارات في المملكة - ملف التنسيقات الرئيسي
   الهوية البصرية: برتقالي | أسود | أحمر | أصفر
   الخطوط: Cairo (عناوين) + Tajawal (نصوص) + Almarai (تمييز)
   ============================================================ */

/* ---------- الخطوط المحلية ---------- */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/cairo-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/tajawal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/tajawal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/tajawal-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/tajawal-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/almarai-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/almarai-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/almarai-800.woff2') format('woff2');
}

/* ---------- متغيرات الهوية ---------- */
:root {
  --orange: #ff7a00;
  --orange-dark: #e05e00;
  --orange-soft: #fff0e1;
  --red: #e01f1f;
  --red-dark: #b31212;
  --yellow: #ffc400;
  --yellow-dark: #e8ad00;
  --black: #121216;
  --dark: #1c1c23;
  --dark-2: #26262e;
  --gray: #6b7280;
  --gray-light: #9aa1ab;
  --light: #f6f7fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(18, 18, 22, 0.08);
  --shadow-lg: 0 20px 50px rgba(18, 18, 22, 0.16);
  --shadow-orange: 0 12px 30px rgba(255, 122, 0, 0.35);
  --font-head: 'Cairo', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', 'Cairo', sans-serif;
  --font-accent: 'Almarai', 'Cairo', sans-serif;
  --grad: linear-gradient(120deg, var(--orange) 0%, var(--red) 100%);
  --grad-yellow: linear-gradient(120deg, var(--yellow) 0%, var(--orange) 100%);
}

/* ---------- إعادة الضبط ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark);
  background: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.35;
  font-weight: 800;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- أزرار عامة ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(224, 31, 31, .4); }
.btn-yellow { background: var(--grad-yellow); color: var(--black); box-shadow: 0 12px 30px rgba(255, 196, 0, .35); }
.btn-yellow:hover { box-shadow: 0 16px 38px rgba(255, 196, 0, .5); }
.btn-dark { background: var(--black); color: #fff; box-shadow: 0 12px 30px rgba(18, 18, 22, .35); }
.btn-outline { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .35); }
.btn-sm { padding: 10px 22px; font-size: 15px; }

/* ---------- الشريط العلوي ---------- */
.topbar {
  background: var(--black);
  color: #fff;
  font-size: 14.5px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 16px; height: 16px; color: var(--yellow); flex: 0 0 auto; }
.topbar-phone { color: var(--yellow); font-weight: 700; font-family: var(--font-accent); }
.topbar-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- الهيدر ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 20px rgba(18, 18, 22, .08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad);
  border-radius: 14px;
  box-shadow: var(--shadow-orange);
  flex: 0 0 auto;
}
.logo-mark svg { width: 30px; height: 30px; }
.logo-text { line-height: 1.25; }
.logo-text strong { display: block; font-family: var(--font-head); font-size: 19px; color: var(--black); }
.logo-text span { display: block; font-size: 12.5px; color: var(--orange); font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--dark);
  border-radius: 10px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--orange); background: var(--orange-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; background: var(--orange-soft); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--orange); }

/* ---------- الهيرو ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #121216 0%, #26262e 60%, #3a2a12 100%);
  color: #fff;
  overflow: hidden;
  padding: 70px 0 110px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 85% -10%, rgba(255, 122, 0, .35), transparent 60%),
    radial-gradient(500px 300px at 10% 110%, rgba(224, 31, 31, .25), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 196, 0, .15);
  border: 1px solid rgba(255, 196, 0, .45);
  color: var(--yellow);
  font-weight: 700; font-size: 14px;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 .hl { color: var(--yellow); }
.hero h1 .hl2 { color: var(--orange); }
.hero p.lead { font-size: clamp(16px, 2vw, 20px); color: #d5d7de; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #cfd1d8; }
.trust-item svg { width: 20px; height: 20px; color: var(--yellow); flex: 0 0 auto; }
.hero-visual { position: relative; }
.hero-img {
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
  border: 4px solid rgba(255, 255, 255, .08);
}
.hero-float {
  position: absolute;
  background: #fff;
  color: var(--dark);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14px;
  animation: floatY 3.5s ease-in-out infinite;
}
.hero-float svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; }
.hero-float.f1 { top: 20px; right: -14px; }
.hero-float.f2 { bottom: 26px; left: -10px; animation-delay: 1.6s; }
.hero-float.f2 svg { color: #25d366; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- شرائط المعلومات ---------- */
.strip {
  background: var(--grad);
  color: #fff;
  position: relative;
  z-index: 5;
  margin-top: -56px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-item .num {
  font-family: var(--font-accent);
  font-size: 30px; font-weight: 800; line-height: 1;
}
.strip-item .lbl { font-size: 14px; opacity: .95; }
.strip-item svg { width: 30px; height: 30px; flex: 0 0 auto; }

/* ---------- أقسام عامة ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--black); color: #fff; }
.sec-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.sec-head .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800; font-size: 14px;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 6px 18px; border-radius: 999px; margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.sec-head p { color: var(--gray); }
.sec-head.light h2 { color: #fff; }
.sec-head.light p { color: #c5c7d0; }
.sec-head.light .kicker { background: rgba(255, 196, 0, .15); color: var(--yellow); }

/* ---------- بطاقات الخدمات ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f0f1f5;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #eceef3; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: #fff;
  font-size: 12.5px; font-weight: 700; font-family: var(--font-head);
  padding: 5px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(224, 31, 31, .4);
}
.service-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card .body h3 { font-size: 21px; margin-bottom: 10px; color: var(--black); }
.service-card .body h3 a:hover { color: var(--orange); }
.service-card .body p { color: var(--gray); font-size: 15.5px; flex: 1; }
.service-card .body .meta { display: flex; gap: 16px; margin: 14px 0; font-size: 13.5px; color: var(--gray); flex-wrap: wrap; }
.service-card .body .meta span { display: inline-flex; align-items: center; gap: 6px; }
.service-card .body .meta svg { width: 15px; height: 15px; color: var(--orange); }
.service-card .links { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.service-card .links .more { color: var(--orange); font-weight: 700; font-family: var(--font-head); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.service-card .links .more svg { width: 16px; height: 16px; }

/* ---------- لماذا نحن ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-top: 4px solid var(--orange); }
.why-item .ic {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft); margin-bottom: 16px;
}
.why-item .ic svg { width: 28px; height: 28px; color: var(--orange); }
.why-item h3 { font-size: 19px; margin-bottom: 8px; }
.why-item p { color: var(--gray); font-size: 15px; }

/* ---------- مناطق التغطية ---------- */
.areas-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.areas-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.area-chip {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #eef0f4;
  border-radius: 12px; padding: 12px 16px;
  font-size: 15px; font-weight: 500; transition: all .25s ease;
}
.area-chip svg { width: 18px; height: 18px; color: var(--orange); flex: 0 0 auto; }
.area-chip:hover { border-color: var(--orange); color: var(--orange); transform: translateX(-4px); }

/* ---------- كيف نعمل ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow); }
.step .n {
  width: 46px; height: 46px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad); color: #fff;
  font-family: var(--font-accent); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange);
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--gray); }

/* ---------- الأسئلة الشائعة ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 14px; overflow: hidden; border: 1px solid #f0f1f5; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.faq-q .icon { width: 30px; height: 30px; border-radius: 50%; background: var(--orange-soft); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; transition: transform .3s ease; }
.faq-q .icon svg { width: 16px; height: 16px; color: var(--orange); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--gray); font-size: 15.5px; }

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--orange) 0%, var(--red) 100%);
  border-radius: 22px;
  padding: 46px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 20% 0%, rgba(255, 196, 0, .35), transparent 60%);
}
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; position: relative; }
.cta-band p { font-size: 17px; max-width: 640px; margin: 0 auto 26px; opacity: .95; position: relative; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-band .btn { background: #fff; color: var(--orange-dark); box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }
.cta-band .btn.btn-whatsapp { background: #25d366; color: #fff; }
.cta-band .btn.btn-dark { background: var(--black); color: #fff; }

/* ---------- التقييمات ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid #f0f1f5; }
.testi .stars { color: var(--yellow); font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.testi p { color: var(--gray); font-size: 15px; margin-bottom: 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head); flex: 0 0 auto; }
.testi .who strong { display: block; font-size: 15px; }
.testi .who span { font-size: 13px; color: var(--gray); }

/* ---------- الفوتر ---------- */
.site-footer { background: var(--black); color: #d5d7de; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 70px 0 46px; }
.footer-main h4 { color: #fff; font-size: 18px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-main h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: var(--grad); border-radius: 3px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about p { font-size: 15px; line-height: 2; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--yellow); flex: 0 0 auto; margin-top: 4px; }
.footer-contact .phone { color: var(--yellow); font-weight: 700; font-family: var(--font-accent); font-size: 17px; }
.footer-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-keywords a { font-size: 12.5px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); padding: 5px 12px; border-radius: 999px; }
.footer-keywords a:hover { background: var(--orange); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 14px; }
.footer-bottom a { color: var(--yellow); }

/* ---------- الأزرار العائمة ---------- */
.floating-btns { position: fixed; bottom: 20px; left: 20px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.floating-btns a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  transition: transform .25s ease;
  position: relative;
}
.floating-btns a:hover { transform: scale(1.1); }
.floating-btns a svg { width: 26px; height: 26px; }
.float-wa { background: #25d366; color: #fff; }
.float-call { background: var(--grad); color: #fff; }
.float-call::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid var(--orange); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.55); opacity: 0; }
}
.float-tip {
  position: absolute; left: 70px; top: 50%; transform: translateY(-50%);
  background: var(--black); color: #fff; font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .25s ease; direction: rtl;
}
.floating-btns a:hover .float-tip { opacity: 1; }

/* ---------- شريط سفلي للجوال ---------- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 150;
  background: #fff; box-shadow: 0 -4px 20px rgba(18, 18, 22, .12);
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px; font-weight: 800; font-family: var(--font-head); font-size: 14.5px;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .mb-call { background: var(--grad); color: #fff; }
.mobile-bar .mb-wa { background: #25d366; color: #fff; }

/* ---------- صفحة خدمة (صفحات فرعية) ---------- */
.page-hero {
  background: linear-gradient(135deg, #121216 0%, #2b2112 60%, #3a1414 100%);
  color: #fff; padding: 60px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 260px at 90% -20%, rgba(255, 122, 0, .3), transparent 60%);
}
.page-hero .crumbs { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #c5c7d0; margin-bottom: 18px; position: relative; }
.page-hero .crumbs a { color: var(--yellow); }
.page-hero .crumbs svg { width: 14px; height: 14px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 14px; position: relative; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { max-width: 700px; font-size: 17.5px; color: #d5d7de; position: relative; }
.page-hero .ph-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; position: relative; }

.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.service-intro .img-frame { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.service-intro h2 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 14px; }
.service-intro p { color: var(--gray); margin-bottom: 14px; }
.feature-list li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; font-size: 16px; }
.feature-list svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; margin-top: 3px; }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); text-align: center; border-bottom: 4px solid var(--yellow); }
.feature-card .ic { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 16px; background: var(--orange-soft); display: flex; align-items: center; justify-content: center; }
.feature-card .ic svg { width: 30px; height: 30px; color: var(--orange); }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--gray); }

.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: right; font-size: 15px; border-bottom: 1px solid #f0f1f5; }
.compare-table thead th { background: var(--black); color: #fff; font-family: var(--font-head); font-weight: 800; }
.compare-table tbody tr:nth-child(even) { background: #fafbfc; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: #16a34a; font-weight: 800; }
.compare-table .no { color: var(--red); font-weight: 800; }

/* ---------- التجاوب ---------- */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .testi-grid, .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .areas-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .nav-menu {
    display: none;
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff; box-shadow: 0 20px 40px rgba(18, 18, 22, .15);
    flex-direction: column; padding: 16px 20px 22px; gap: 4px;
    border-top: 3px solid var(--orange);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 12px 10px; border-radius: 10px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 46px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { order: -1; }
  .hero-float.f1 { right: 6px; }
  .hero-float.f2 { left: 6px; }
  .strip { grid-template-columns: repeat(2, 1fr); margin-top: -46px; }
  .services-grid, .why-grid, .testi-grid, .feature-cards { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 50px 0 30px; }
  .service-intro { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .floating-btns { bottom: 84px; left: 14px; }
  .floating-btns a { width: 50px; height: 50px; }
  .floating-btns a svg { width: 23px; height: 23px; }
  .float-tip { display: none; }
  .mobile-bar { display: flex; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
  .topbar-inner { justify-content: center; min-height: 40px; }
  .topbar-loc { display: none; }
}

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

/* ---------- تحسينات الوصول ---------- */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.skip-link {
  position: absolute; top: -60px; right: 10px; background: var(--orange); color: #fff;
  padding: 10px 18px; border-radius: 8px; z-index: 300; transition: top .2s;
}
.skip-link:focus { top: 10px; }

/* ---------- طباعة ---------- */
@media print {
  .topbar, .site-header, .floating-btns, .mobile-bar, .cta-band { display: none; }
}
