/* =========================================================
   صيني بلس | CHINESE PLUS — الرياض
   ملف الأنماط الرئيسي — Mobile First
   ========================================================= */

/* ---------- 1) المتغيرات والهوية اللونية ---------- */
:root {
  --navy-900: #0a1a22;
  --navy-800: #0f2630;
  --navy-700: #163542;
  --charcoal: #14171a;
  --white-warm: #f8f6f2;
  --white-pure: #ffffff;
  --gray-metal: #8a94a6;
  --gray-metal-light: #c7ccd6;
  --gray-50: #f4f5f6;
  --gray-100: #e9ebee;
  --gray-200: #d7dbe1;
  --emerald: #10b981;
  --emerald-dark: #0b7a55;
  --emerald-700: #0e9e70;
  --emerald-light: #d6f5e9;
  --danger: #c0392b;

  --font-main: "Cairo", "Segoe UI", Tahoma, system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 26, 34, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 26, 34, 0.14);
  --shadow-lg: 0 20px 50px rgba(10, 26, 34, 0.22);

  --container-w: 1180px;
  --header-h: 68px;
  --bottom-bar-h: 66px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2) إعادة ضبط أساسية ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--white-warm);
  color: var(--navy-900);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottom-bar-h) + env(safe-area-inset-bottom, 0px));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 16px;
}

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

@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

/* رابط تخطي للمحتوى — إتاحة لوحة المفاتيح */
.skip-link {
  position: absolute;
  right: 12px;
  top: -60px;
  background: var(--emerald);
  color: var(--navy-900);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--emerald);
  color: var(--navy-900);
}

/* ---------- 3) عناصر عامة قابلة لإعادة الاستخدام ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-dark);
  background: var(--emerald-light);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.35;
}

.section-sub {
  margin-top: 12px;
  color: var(--navy-700);
  font-size: 1.02rem;
  line-height: 1.85;
}

section {
  padding-block: 56px;
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white-warm);
}
.section-dark .section-title,
.section-dark .section-sub {
  color: var(--white-warm);
}
.section-dark .section-sub {
  color: var(--gray-metal-light);
}

/* أزرار */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
  min-height: 52px;
  line-height: 1;
  white-space: nowrap;
}
.btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.btn:active {
  transform: scale(0.97);
}
.btn-call {
  background: var(--emerald);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-call:hover {
  background: var(--emerald-700);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: var(--navy-900);
  color: var(--white-warm);
}
.btn-whatsapp:hover {
  background: var(--navy-700);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 17px 30px;
  font-size: 1.05rem;
}
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* شارات ثقة */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 560px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white-warm);
}
.trust-item .ic {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item .ic svg {
  width: 18px;
  height: 18px;
}

/* ---------- 4) الهيدر ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 26, 34, 0.97);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-warm);
  font-weight: 800;
  font-size: 1.02rem;
  flex-shrink: 0;
}
.brand img {
  width: clamp(170px, 18vw, 230px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand .brand-text small {
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--gray-metal-light);
}

/* القائمة كدرج جانبي منزلق على الجوال والتابلت فقط (أقل من 1024px) */
@media (max-width: 1023.98px) {
  .main-nav {
    position: fixed;
    inset-inline-start: 0;
    top: var(--header-h);
    width: min(320px, 86vw);
    height: calc(100dvh - var(--header-h));
    background: var(--navy-900);
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.28s var(--ease);
    z-index: 895;
  }
  [dir="rtl"] .main-nav {
    transform: translateX(105%);
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
}
.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 13px 12px;
  color: var(--white-warm);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}
.main-nav .nav-cta {
  margin-top: 14px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-warm);
  border: none;
  flex-shrink: 0;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 18, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  z-index: 890;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header-cta {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    overflow: visible;
    transform: none;
    transition: none;
  }
  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
  .main-nav a {
    padding: 10px 14px;
    font-size: 0.94rem;
  }
  .main-nav .nav-cta {
    display: none;
  }
  .nav-backdrop {
    display: none;
  }
  .header-cta {
    display: inline-flex;
  }
}

/* ---------- 5) قسم Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white-warm);
  padding-block: 40px 48px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
  .hero {
    padding-block: 64px 70px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.14);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.7rem, 1.3rem + 2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.32;
  color: var(--white-pure);
}

.hero .lead {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-metal-light);
  max-width: 56ch;
}

.hero .btn-row {
  margin-top: 26px;
}

.hero-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-900);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}

/* ---------- 6) نموذج الحجز عبر واتساب ---------- */
.booking {
  scroll-margin-top: calc(var(--header-h) + 10px);
}

.booking-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  padding: 22px 18px 26px;
  max-width: 640px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .booking-card {
    padding: 32px 34px 34px;
  }
}

.progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.progress-step {
  flex: 1;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  overflow: hidden;
}
.progress-step > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--emerald);
  transition: width 0.3s var(--ease);
}
.progress-step.is-done > span,
.progress-step.is-active > span {
  width: 100%;
}

.progress-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 6px;
}

.form-step {
  display: none;
}
.form-step.is-active {
  display: block;
  animation: fadeUp 0.32s var(--ease);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.form-step .hint {
  color: var(--gray-metal);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--navy-900);
}
.field .req {
  color: var(--emerald-dark);
}

.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: var(--white-warm);
  color: var(--navy-900);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  min-height: 50px;
}
.field textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.6;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px var(--emerald-light);
  outline: none;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.choice span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-700);
  background: var(--white-warm);
  transition: all 0.16s var(--ease);
}
.choice input:checked + span {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--navy-900);
}
.choice input:focus-visible + span {
  outline: 3px solid var(--emerald-dark);
  outline-offset: 2px;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.form-nav .btn {
  flex: 1;
}

.form-error {
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 8px;
  display: none;
}
.form-error.is-visible {
  display: block;
}

.review-list {
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.review-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}
.review-list li:last-child {
  border-bottom: none;
}
.review-list b {
  color: var(--navy-700);
  font-weight: 700;
}
.review-list span {
  color: var(--navy-900);
  font-weight: 600;
  text-align: left;
}

.privacy-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--gray-metal);
  margin-top: 14px;
  line-height: 1.7;
}
.privacy-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--emerald-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 6px;
}
.form-success.is-active {
  display: block;
}
.form-success .ic-success {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success .ic-success svg {
  width: 30px;
  height: 30px;
}

/* ---------- 7) الخدمات ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white-pure);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-800);
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card .body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy-700);
  line-height: 1.6;
}
.service-card li svg {
  width: 16px;
  height: 16px;
  color: var(--emerald-dark);
  flex-shrink: 0;
  margin-top: 4px;
}
.service-card .card-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--emerald-dark);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.note-box {
  margin-top: 26px;
  background: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--navy-800);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.92rem;
  line-height: 1.8;
  display: flex;
  gap: 10px;
}

.expertise-grid .service-card .body {
  padding: 24px;
}
.expertise-grid .service-card p {
  color: var(--navy-700);
  font-size: 0.94rem;
  line-height: 1.9;
}
.local-proof-note {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: var(--radius-md);
  background: var(--emerald-light);
  color: var(--navy-800);
  text-align: center;
  line-height: 1.8;
  font-size: 0.92rem;
}
.note-box svg {
  width: 20px;
  height: 20px;
  color: var(--emerald-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- 8) السيارات المدعومة ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 560px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 860px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.brand-chip {
  background: var(--white-pure);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 15px 12px;
  text-align: center;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.94rem;
  box-shadow: var(--shadow-sm);
}

/* ---------- 9) الأعراض والمشكلات ---------- */
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.symptom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}
.symptom-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.16);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.symptom-item .ic svg {
  width: 19px;
  height: 19px;
}

.symptoms-cta {
  margin-top: 30px;
  text-align: center;
}

/* ---------- 10) منهج التشخيص ---------- */
.method-wrap {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .method-wrap {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }
}
.method-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.step:last-child {
  border-bottom: none;
}
.step .num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--emerald);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h4 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.step p {
  color: var(--navy-700);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---------- 11) مناطق الخدمة ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}
@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.area-chip {
  background: var(--white-pure);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  font-weight: 700;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.area-chip svg {
  width: 22px;
  height: 22px;
  color: var(--emerald-dark);
}

/* ---------- 12) الأسئلة الشائعة ---------- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white-pure);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: right;
  padding: 17px 18px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy-900);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease);
}
.faq-item[data-open="true"] .faq-q .plus {
  transform: rotate(45deg);
  background: var(--emerald);
  color: var(--navy-900);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a-inner {
  padding: 0 18px 18px;
  color: var(--navy-700);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* ---------- 13) CTA النهائي ---------- */
.final-cta {
  text-align: center;
}
.final-cta .section-head {
  margin-inline: auto;
}
.final-cta .btn-row {
  justify-content: center;
  margin-top: 24px;
}
.final-cta .phone-display {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--emerald);
  letter-spacing: 0.5px;
  direction: ltr;
  display: inline-block;
}

/* ---------- 14) الفوتر ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--gray-metal-light);
  padding-block: 40px 26px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 26px;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-warm);
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-brand img {
  width: min(100%, 250px);
  height: auto;
  max-height: 84px;
  object-fit: contain;
}

@media (max-width: 479.98px) {
  .brand img {
    width: 160px;
    max-height: 54px;
  }
}
.site-footer h5 {
  color: var(--white-warm);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer a:hover {
  color: var(--emerald);
}
.site-footer p {
  line-height: 1.85;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
.footer-disclaimer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--gray-metal);
}

/* ---------- 15) الشريط السفلي الثابت (جوال) ---------- */
.mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 950;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -8px 24px rgba(10, 26, 34, 0.12);
}
.mobile-bar .btn {
  flex: 1;
  min-height: 50px;
}

@media (min-width: 1024px) {
  .mobile-bar {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* ---------- 16) عناصر مساعدة عامة ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.link-inline {
  color: var(--emerald-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.divider {
  height: 1px;
  background: var(--gray-100);
  border: none;
  margin: 0;
}

/* صفحة سياسة الخصوصية */
.legal-page {
  padding-block: 40px 60px;
}
.legal-page .container {
  max-width: 820px;
}
.legal-page h1 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.legal-page .updated {
  color: var(--gray-metal);
  font-size: 0.88rem;
  margin-bottom: 30px;
}
.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.legal-page p,
.legal-page li {
  color: var(--navy-700);
  line-height: 1.9;
  font-size: 0.96rem;
}
.legal-page ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.legal-page li {
  padding-inline-start: 2px;
  display: flex;
  gap: 8px;
}
.legal-page li::before {
  content: "—";
  color: var(--emerald-dark);
  font-weight: 800;
  flex-shrink: 0;
}
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  font-weight: 700;
  color: var(--navy-800);
}

/* Noscript */
.noscript-banner {
  background: #fff4d6;
  color: #6b4c00;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
}
