/* =================================================================
   الماسة البيضاء الجديدة — أنماط الموقع
   الهوية: كحلي عميق + فضي + لمسات ذهبية، بأسلوب "الماسة" (أوجه هندسية)
   الخطوط: Cairo للعناوين، Tajawal للنصوص
================================================================= */

/* ---------- متغيرات الألوان والقياسات ---------- */
:root {
  --navy-900: #0A1A33;
  --navy-800: #0E2140;
  --navy-700: #14294D;
  --navy-600: #1B3A66;
  --navy-500: #234a80;

  --gold: #C6A15B;
  --gold-soft: #E9C877;
  --gold-deep: #A8823D;

  --silver: #C7CED8;
  --silver-light: #E7ECF2;

  --paper: #F6F8FC;
  --paper-2: #EEF2F8;
  --white: #FFFFFF;

  --ink: #10233F;
  --ink-soft: #46566E;
  --line: #DDE4EE;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(14, 33, 64, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 33, 64, 0.12);
  --shadow-gold: 0 10px 26px rgba(198, 161, 91, 0.28);

  --container-pad: clamp(1rem, 4vw, 2rem);
  --font-display: "Cairo", system-ui, sans-serif;
  --font-body: "Tajawal", system-ui, sans-serif;
}

/* ---------- أساسيات ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .navbar-brand { font-family: var(--font-display); }

a { color: var(--navy-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }

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

/* رابط تخطي إلى المحتوى */
.skip-link {
  position: fixed;
  top: -60px;
  right: 1rem;
  z-index: 1080;
  background: var(--navy-800);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .25s ease;
}
.skip-link:focus { top: 0; color: #fff; outline: 3px solid var(--gold-soft); }

/* Focus State واضح */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- أزرار مخصصة ---------- */
.btn { font-family: var(--font-display); font-weight: 700; border-radius: 999px; padding: .7rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.btn:active { transform: translateY(1px); }
.btn i { vertical-align: -1px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-900);
  border: none;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--navy-900); transform: translateY(-2px); }

.btn-outline-navy { border: 2px solid var(--navy-600); color: var(--navy-700); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-700); color: #fff; }

.btn-outline-light { border: 2px solid rgba(255,255,255,.65); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy-800); }

/* ---------- الشعار ---------- */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { display: block; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.28rem; color: var(--navy-800); letter-spacing: -.3px; }
.brand__accent { color: var(--gold-deep); }
.brand__tag { font-family: var(--font-body); font-weight: 500; font-size: .72rem; color: var(--ink-soft); }

/* ---------- شريط المعلومات العلوي ---------- */
.topbar {
  background: var(--navy-900);
  color: #cfd8e6;
  font-size: .85rem;
  padding: .45rem 0;
}
.topbar .container { padding-inline: var(--container-pad); }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item i { color: var(--gold-soft); }
.topbar__item a { color: #eaf0f8; font-weight: 500; }
.topbar__item a:hover { color: var(--gold-soft); }
.topbar__call {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: var(--navy-900);
  font-weight: 700; font-family: var(--font-display);
  padding: .28rem .9rem; border-radius: 999px; font-size: .82rem;
}
.topbar__call:hover { background: var(--gold-soft); color: var(--navy-900); }

/* ---------- شريط التنقل ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-block: .55rem;
  transition: box-shadow .25s ease, padding .25s ease, background-color .25s ease;
}
.site-nav.is-scrolled { box-shadow: var(--shadow-sm); padding-block: .3rem; background: rgba(255,255,255,.98); }
.site-nav .container { padding-inline: var(--container-pad); }

.site-nav .nav-link {
  font-family: var(--font-display); font-weight: 600;
  color: var(--navy-800); padding: .5rem .85rem; border-radius: 999px;
  position: relative;
}
.site-nav .nav-link:hover, .site-nav .nav-link:focus-visible { color: var(--gold-deep); }
.site-nav .nav-link.is-active { color: var(--gold-deep); }
.site-nav .nav-link.is-active::after {
  content: ""; position: absolute; inset-inline: .85rem; bottom: .18rem; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft)); border-radius: 2px;
}
.nav-cta { color: var(--navy-900); padding-inline: 1.15rem; }

.navbar-toggler { border: 1px solid var(--line); border-radius: 10px; padding: .3rem .55rem; color: var(--navy-800); font-size: 1.4rem; line-height: 1; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(198,161,91,.35); }

@media (max-width: 991.98px) {
  .navbar-collapse { padding-top: .75rem; }
  .site-nav .navbar-nav { gap: .15rem; }
  .site-nav .nav-link.is-active::after { display: none; }
  .nav-cta { display: inline-block; margin-top: .35rem; text-align: center; }
  .brand__tag { display: none; }
}

/* ---------- Eyebrow (عنوان صغير مع ماسة) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .5px; color: var(--gold-deep); text-transform: none;
  margin-bottom: .75rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow__diamond {
  width: 12px; height: 12px; display: inline-block;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  transform: rotate(45deg); border-radius: 2px;
}

/* ---------- الأقسام العامة ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section .container { padding-inline: var(--container-pad); }
.section--tint { background: var(--paper); }
.section--navy { background: var(--navy-800); color: #e8eef7; position: relative; overflow: hidden; }
.section--navy::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(63,99,160,.35), transparent 40%),
                    radial-gradient(circle at 85% 80%, rgba(198,161,91,.14), transparent 40%);
  pointer-events: none;
}
.section--navy .container { position: relative; }

.section__head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section__title {
  font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  color: var(--navy-800); line-height: 1.35; margin: 0 0 .6rem;
}
.section__title--light { color: #fff; }
.section__intro { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }
.section--navy .section__intro { color: #b9c6db; }

.lead-text { font-size: 1.12rem; color: var(--ink); font-weight: 500; }
.body-text { color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,20,40,.92) 0%, rgba(10,26,51,.78) 45%, rgba(14,33,64,.55) 100%);
}
.hero__inner {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  padding-inline: var(--container-pad);
  max-width: 860px;
}
/* اسم الشركة البارز داخل الهيرو */
.hero__brand {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.hero__brand-mark {
  width: clamp(56px, 9vw, 80px); height: auto; flex: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}
.hero__brand-lockup { min-width: 0; }
.hero__brand-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 6.4vw, 4rem); line-height: 1.1;
  margin: 0; color: #fff; letter-spacing: -.5px;
  text-shadow: 0 3px 22px rgba(0,0,0,.45);
}
.hero__brand-accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__brand-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(.9rem, 2.4vw, 1.25rem); color: #e6edf7;
  margin: .25rem 0 0; letter-spacing: .2px;
}
.hero__title-2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.15rem, 2.8vw, 1.7rem); color: #fff;
  line-height: 1.45; margin: 0 0 .9rem; max-width: 640px;
  padding-inline-start: .9rem; border-inline-start: 4px solid var(--gold);
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}
.hero__title {
  font-weight: 900; font-size: clamp(1.9rem, 5.2vw, 3.4rem);
  line-height: 1.28; margin: 0 0 1.1rem; text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem); color: #e6edf7; max-width: 620px;
  margin: 0 0 1.8rem;
}
.hero__lead strong { color: var(--gold-soft); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }

.hero__stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .9rem;
  max-width: 820px;
}
.hero__stat {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(4px);
  padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
}
.hero__stat i { color: var(--gold-soft); font-size: 1.3rem; }

/* ---------- من نحن ---------- */
.value-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; }
.value-list li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; color: var(--ink); }
.value-list i { color: var(--gold); font-size: 1.15rem; margin-top: .15rem; flex: none; }

.about-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-figure__img { display: block; width: 100%; }
.about-figure__badge {
  position: absolute; inset-block-end: 1rem; inset-inline-start: 1rem;
  background: rgba(255,255,255,.95); color: var(--navy-800);
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  padding: .5rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: .4rem;
}
.about-figure__badge i { color: var(--gold-deep); }

/* ---------- بطاقات مجالات العمل ---------- */
.field-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.field-card::before {
  content: ""; position: absolute; top: 0; inset-inline-end: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  opacity: 0; transform: translate(30%, -30%) rotate(45deg);
  transition: opacity .25s ease;
}
.field-card:hover, .field-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.field-card:hover::before { opacity: .5; }
.field-card__icon {
  width: 56px; height: 56px; flex: none;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--gold-soft); font-size: 1.5rem;
  border-radius: 14px;
  transform: rotate(45deg);
}
.field-card__icon i { transform: rotate(-45deg); }
.field-card:hover .field-card__icon { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; }
.field-card__title { font-weight: 700; font-size: 1.12rem; color: var(--navy-800); margin: 0 0 .5rem; }
.field-card__text { color: var(--ink-soft); font-size: .93rem; margin: 0 0 1rem; flex: 1 1 auto; }
.field-card__link { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--gold-deep); display: inline-flex; align-items: center; gap: .35rem; }
.field-card__link:hover { gap: .6rem; color: var(--navy-700); }

/* ---------- خدماتنا ---------- */
.services { display: grid; grid-template-columns: 1.7fr 1fr; gap: 1.5rem; align-items: start; }
.services__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.service {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.05rem 1.2rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateX(-4px); }
.service__icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: var(--paper-2); color: var(--navy-600);
}
.service:hover .service__icon { background: var(--navy-700); color: var(--gold-soft); }
.service__title { font-weight: 700; font-size: 1.02rem; color: var(--navy-800); margin: 0 0 .2rem; }
.service__text { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.services__cta {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  color: #fff; border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-md);
  position: sticky; top: 100px;
}
.services__cta-diamond {
  position: absolute; top: -30px; inset-inline-start: -30px;
  width: 120px; height: 120px; transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(233,200,119,.28), transparent);
}
.services__cta-title { font-weight: 800; font-size: 1.3rem; margin: 0 0 .5rem; }
.services__cta-text { color: #c8d4e6; font-size: .95rem; margin: 0 0 1.3rem; }

/* ---------- لماذا نحن ---------- */
.why-card {
  height: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.7rem 1.5rem;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--gold); background: rgba(255,255,255,.08); }
.why-card__icon {
  font-size: 1.9rem; color: var(--gold-soft);
  width: 58px; height: 58px; display: grid; place-items: center;
  background: rgba(198,161,91,.14); border-radius: 14px; margin-bottom: 1rem;
}
.why-card__title { font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 0 .45rem; }
.why-card__text { color: #b9c6db; font-size: .93rem; margin: 0; }

/* ---------- خطوات الطلب ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem;
  counter-reset: none;
}
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 1.3rem 1.4rem; text-align: center;
}
.step__num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; display: grid; place-items: center; z-index: 1;
  color: var(--navy-900); font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
}
.step__num::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  transform: rotate(45deg); border-radius: 12px; box-shadow: var(--shadow-gold);
}
.step__title { font-weight: 700; font-size: 1.02rem; color: var(--navy-800); margin: .3rem 0 .4rem; }
.step__text { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.steps__note {
  margin: 1.8rem auto 0; max-width: 640px; text-align: center;
  background: var(--paper-2); color: var(--ink-soft);
  padding: .85rem 1.2rem; border-radius: var(--radius-sm); font-size: .92rem;
}
.steps__note i { color: var(--gold-deep); }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-600));
  color: #fff; position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; inset-block: 0; inset-inline-end: -60px;
  width: 260px; background: linear-gradient(135deg, rgba(198,161,91,.22), transparent);
  transform: skewX(-12deg); pointer-events: none;
}
.cta__inner {
  padding-block: clamp(2.6rem, 5vw, 3.6rem); padding-inline: var(--container-pad);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  position: relative;
}
.cta__title { font-weight: 800; font-size: clamp(1.35rem, 3vw, 1.9rem); margin: 0 0 .4rem; max-width: 620px; }
.cta__lead { color: #cdd8ea; margin: 0; max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.cta .btn-light { color: var(--navy-800); font-weight: 700; }

/* ---------- نموذج عرض السعر ---------- */
.quote-benefits { list-style: none; padding: 0; margin: 1.3rem 0; display: grid; gap: .6rem; }
.quote-benefits li { display: flex; align-items: flex-start; gap: .55rem; color: var(--ink); font-weight: 500; font-size: .95rem; }
.quote-benefits i { color: var(--gold); margin-top: .2rem; flex: none; }
.quote-call {
  display: flex; align-items: center; gap: .9rem;
  background: var(--navy-800); color: #fff; border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.quote-call i { font-size: 1.8rem; color: var(--gold-soft); }
.quote-call span { display: block; font-size: .82rem; color: #b9c6db; }
.quote-call__num { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: #fff; }
.quote-call__num:hover { color: var(--gold-soft); }

.quote-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.form-label { font-family: var(--font-display); font-weight: 600; color: var(--navy-800); font-size: .92rem; margin-bottom: .35rem; }
.req-star { color: #c0392b; font-weight: 700; }
.optional { color: var(--ink-soft); font-weight: 500; font-size: .82rem; }
.form-control, .form-select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .65rem .9rem; font-family: var(--font-body); color: var(--ink);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18);
}
.form-check-input { border-color: var(--silver); }
.form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(198,161,91,.25); }

/* زر الإرسال أثناء التحميل */
.btn .btn-spinner { display: inline-flex; align-items: center; gap: .5rem; }
.btn.is-loading { pointer-events: none; opacity: .85; }

/* رسالة النجاح */
.form-alert { margin-top: 1.2rem; }
.form-alert__inner {
  display: flex; align-items: center; gap: .7rem;
  background: #e9f7ef; border: 1px solid #b6e0c7; color: #1c6b41;
  border-radius: var(--radius-sm); padding: .9rem 1.1rem;
}
.form-alert__inner i.bi-check-circle-fill { color: #2e9e63; font-size: 1.4rem; flex: none; }
.form-alert__close {
  margin-inline-start: auto; background: transparent; border: none;
  color: #1c6b41; font-size: 1rem; cursor: pointer; line-height: 1; padding: .2rem;
}
.form-alert__close:hover { color: #12492c; }

/* ---------- التواصل ---------- */
.contact-card {
  height: 100%;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  color: #fff; border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-md);
}
.contact-card__name { font-weight: 700; font-size: 1.12rem; line-height: 1.6; margin: 0 0 1.4rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list__icon {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.15rem;
  background: rgba(233,200,119,.16); color: var(--gold-soft);
}
.contact-list__label { display: block; font-size: .78rem; color: #b9c6db; font-family: var(--font-display); }
.contact-list a { color: #fff; font-weight: 700; font-family: var(--font-display); }
.contact-list a:hover { color: var(--gold-soft); }

.map-placeholder {
  height: 100%; min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem;
  background:
    repeating-linear-gradient(45deg, var(--paper-2) 0 14px, var(--paper) 14px 28px);
  border: 2px dashed var(--silver); border-radius: var(--radius);
  color: var(--ink-soft); text-align: center; padding: 2rem;
}
.map-placeholder i { font-size: 2.4rem; color: var(--navy-500); }

/* ---------- التذييل ---------- */
.footer { background: var(--navy-900); color: #b9c6db; padding-block: 3rem 1.5rem; }
.footer .container { padding-inline: var(--container-pad); }
.footer .brand__name { color: #fff; }
.footer .brand__accent { color: var(--gold-soft); }
.brand--footer { margin-bottom: 1rem; }
.footer__desc { font-size: .92rem; color: #9fb0c8; margin: 0; max-width: 340px; }
.footer__title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; margin: 0 0 1rem; }
.footer__links, .footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer__links a, .footer__contact a { color: #b9c6db; font-size: .93rem; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-soft); }
.footer__contact li { display: flex; align-items: center; gap: .5rem; font-size: .93rem; }
.footer__contact i { color: var(--gold-soft); }

.footer__bottom {
  margin-top: 2.2rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: space-between;
  font-size: .88rem;
}
.footer__top { color: var(--gold-soft); font-family: var(--font-display); font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; }
.footer__top:hover { color: #fff; }

/* ---------- أزرار عائمة ---------- */
.fab {
  position: fixed; z-index: 1040;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.3rem;
  border: none; cursor: pointer; box-shadow: var(--shadow-md);
  transition: transform .2s ease, opacity .2s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab--call {
  inset-block-end: 1.1rem; inset-inline-start: 1.1rem;
  background: linear-gradient(135deg, #25c35a, #1a9e46); color: #fff;
}
.fab--call:hover { color: #fff; }
.fab--top {
  inset-block-end: 1.1rem; inset-inline-end: 1.1rem;
  background: var(--navy-800); color: var(--gold-soft);
}

@media (min-width: 992px) {
  /* إظهار زر الاتصال العائم على الهاتف فقط بشكل أساسي، لكن نبقيه مفيداً */
  .fab--call { inset-block-end: 1.4rem; }
}

/* ---------- تجاوب إضافي ---------- */
@media (max-width: 991.98px) {
  .services { grid-template-columns: 1fr; }
  .services__cta { position: static; }
}
@media (max-width: 575.98px) {
  .btn-lg { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1 1 100%; }
  .topbar { font-size: .8rem; }
}

/* ---------- احترام تقليل الحركة ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn, .field-card, .why-card, .service, .fab { transition: none !important; }
}

/* ---------- حركات الظهور عند التمرير ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
