/* =========================================================
   قالب "الصرح" — هوية بصرية جديدة للعميل الثاني
   "بلوبرنت صناعي جريء" Industrial Blueprint Bold
   عكس تصميم العميل الأول تمامًا: بدل الاستدارة والزجاجية والدفء
   الناعم هنا زوايا حادة صفرية في كل مكان، حدود سوداء ثخينة بارزة،
   ظلال صلبة بلا تمويه (offset shadow)، ألوان عالية التباين
   (أصفر أمان + برتقالي سلامة + أسود + أبيض إسمنتي)، خطوط تقنية/
   شبكة مخططات هندسية، عناوين بأحرف كبيرة وتباعد واسع بطابع "ختم"،
   شارات بخط Monospace. نفس أسماء الأصناف ونفس أسماء متغيرات :root
   تمامًا — استبدال مباشر دون أي تعديل على HTML/PHP.
   ========================================================= */
:root{
  --navy:#111111;             /* أسود صناعي عميق: النصوص الأساسية والحدود والخلفيات الداكنة */
  --navy-dark:#000000;
  --blue:#f4b400;             /* أصفر أمان (Safety Yellow): اللون الأساسي للأكشن */
  --blue-dark:#c99200;
  --teal:#ff5722;             /* برتقالي سلامة (Safety Orange): لون ثانوي للتمييز */
  --teal-dark:#d8481a;
  --teal-soft:#fff0e6;
  --whatsapp:#25d366;
  --bg-soft:#f2f1ec;          /* رمادي إسمنتي فاتح: خلفية الصفحة الأساسية */
  --panel:#e7e5dc;            /* رمادي إسمنتي أغمق قليلاً: خلفيات بديلة */
  --accent-soft:#fff2c9;      /* أصفر فاتح جداً: خلفيات ناعمة للتمييز */
  --sage-soft:#ffe4d4;        /* برتقالي فاتح جداً: خلفيات ناعمة بديلة */
  --surface:#ffffff;
  --ink:#161616;
  --ink-dim:#5b584f;
  --line:#111111;             /* الخطوط الفاصلة سوداء ثخينة بارزة بدل الرمادي الخفيف */
  --card-radius:0px;          /* زوايا حادة صفرية بالكامل — إلغاء تام للاستدارة */
  --cut:14px;                 /* حجم "ختم" الزاوية القطرية الصغيرة على الشارات فقط */
  --font: "Tajawal", "Tahoma", sans-serif;
  --font-display: "Almarai", "Tajawal", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body{
  margin:0; font-family:var(--font); background:var(--bg-soft); color:var(--ink); line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:3px solid var(--teal); outline-offset:2px; }

.container{ max-width:1240px; margin-inline:auto; padding-inline:24px; }

/* ---------- خط العناوين — بأحرف كبيرة وتباعد واسع، طابع "ختم" هندسي ---------- */
.hero-text h1, .section-title, .why-title, .service-title, .article-title,
.brand-logo-box .brand-name, .footer-contact-title, .ng-page-hero h1,
.share-title, .sub-title, .hero-logo-card .logo-word{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:.4px;
}

/* ---------- Grid helpers ---------- */
.grid{ display:grid; gap:26px; }
.grid-2{ grid-template-columns:repeat(2, 1fr); }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-4{ grid-template-columns:repeat(4, 1fr); }
@media (max-width:960px){ .grid-3, .grid-4{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:640px){ .grid-2, .grid-3, .grid-4{ grid-template-columns:1fr; } }

/* خلفية شبكية تقنية — مخطط هندسي (بلوبرنت) بدل الشبكة الماسية السابقة */
.diamond-bg{
  background-color:var(--panel);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:34px 34px;
  background-position:-1px -1px;
  opacity:1;
  border:3px solid var(--navy);
}

/* شريط تحذير صناعي — خطوط قطرية سوداء/صفراء حقيقية (مضاعفة الجرأة عن السابق) */
.ng-hazard-strip{
  height:14px; width:100%;
  background-image:repeating-linear-gradient(-45deg, var(--navy) 0 16px, var(--blue) 16px 32px);
}

/* ---------- Top bar — شريط أبيض صلب بحد سفلي أسود ثخين، بلا شفافية ولا ضبابية ---------- */
.ng-topbar{
  background:var(--surface);
  padding:16px 0; position:sticky; top:0; z-index:500;
  border-bottom:4px solid var(--navy);
}
.ng-topbar .container{ display:flex; align-items:center; justify-content:space-between; gap:18px; }

.brand-logo-box{ display:flex; align-items:center; gap:14px; }
.brand-logo-box img{ width:52px; height:52px; object-fit:contain; background:var(--surface); padding:4px; border:3px solid var(--navy); }
.brand-logo-box .brand-name{ color:var(--navy); font-weight:900; font-size:16.5px; margin-bottom:2px; }
.brand-logo-box .brand-phone{ color:var(--teal-dark); font-weight:800; font-size:14px; font-family:monospace,var(--font); letter-spacing:.5px; }

.nav-scroll{ display:flex; align-items:center; gap:0; overflow-x:auto; white-space:nowrap; flex:1; }
.nav-scroll a{ flex:0 0 auto; color:var(--navy); font-weight:800; padding:12px 20px; transition:.15s; font-size:14px; border-inline-start:2px solid var(--line); text-transform:uppercase; letter-spacing:.3px; }
.nav-scroll a:first-child{ border-inline-start:none; }
.nav-scroll a:hover, .nav-scroll a.is-active{ background:var(--blue); color:var(--navy); }
.nav-scroll a.home-link{ color:var(--teal-dark); }
.nav-scroll a.home-link:hover, .nav-scroll a.home-link.is-active{ color:var(--navy); }
.nav-scroll::-webkit-scrollbar{ height:0; }
@media (max-width:900px){ .nav-scroll{ display:none; } }

.menu-btn{
  display:none; background:var(--navy); color:var(--blue);
  border:3px solid var(--navy); width:48px; height:48px; align-items:center; justify-content:center;
  border-radius:0; font-size:18px; flex:none; box-shadow:5px 5px 0 var(--blue);
}
@media (max-width:900px){ .menu-btn{ display:flex; } }

/* ---------- Sidebar — لوحة جانبية صلبة بحد أسود ثخين، بدون انسيابية ناعمة ---------- */
.ng-sidebar{
  position:fixed; top:0; inset-inline-end:-100%; width:min(340px,88vw); height:100%;
  background:var(--surface); box-shadow:none; border-inline-start:5px solid var(--navy);
  transition:inset-inline-end .3s ease; z-index:999; padding:26px 22px 34px; overflow-y:auto;
}
.ng-sidebar.is-open{ inset-inline-end:0; }
.ng-sidebar__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; border-bottom:3px solid var(--navy); padding-bottom:14px; }
.ng-sidebar h5{ color:var(--navy); font-weight:900; margin:0; font-size:18px; text-transform:uppercase; }
.ng-sidebar__close{ background:var(--blue); border:2px solid var(--navy); width:38px; height:38px; color:var(--navy); font-size:15px; }
.ng-sidebar a{ display:block; padding:15px 14px; color:var(--ink); border-bottom:2px solid var(--line); font-weight:800; text-transform:uppercase; font-size:14px; }
.ng-sidebar a:hover{ background:var(--blue); color:var(--navy); padding-inline-start:20px; }

.ng-overlay{
  position:fixed; inset:0; background:rgba(17,17,17,.6); display:none; z-index:998;
}
.ng-overlay.is-open{ display:block; }

/* ---------- Hero — أبيض إسمنتي مع إطار أسود ثخين وبطاقة صورة بختم مائل ---------- */
.ng-hero{
  padding:64px 0 70px; position:relative; overflow:hidden;
  background:var(--bg-soft);
  border-bottom:5px solid var(--navy);
}
.ng-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(17,17,17,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.05) 1px, transparent 1px);
  background-size:40px 40px;
}
.ng-hero-slide{ display:none; }
.ng-hero-slide.is-active{ display:block; }

.hero-row{ display:grid; grid-template-columns:1.1fr 1fr; gap:50px; align-items:center; position:relative; z-index:2; }
@media (max-width:860px){ .hero-row{ grid-template-columns:1fr; gap:38px; } }

.hero-logo-card{
  background:var(--surface); padding:40px 28px; text-align:center;
  border:4px solid var(--navy); box-shadow:12px 12px 0 var(--blue); height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  position:relative;
}
.hero-logo-card::before{
  content:"01"; position:absolute; top:-3px; inset-inline-start:-3px; background:var(--navy); color:var(--blue);
  font-family:monospace; font-weight:800; font-size:12px; padding:5px 10px; letter-spacing:1px;
}
.hero-logo-card img{ max-width:190px; margin-bottom:14px; }
.hero-logo-card .logo-word{ color:var(--navy); font-weight:900; font-size:20px; margin-top:10px; }

.hero-text{ text-align:center; }
@media (min-width:861px){ .hero-text{ text-align:right; } }
.hero-text h1{ color:var(--navy); font-weight:900; font-size:clamp(28px,4.2vw,42px); line-height:1.3; }

.ng-divider{ display:flex; align-items:center; margin:18px 0 22px; }
.ng-divider.centered{ justify-content:center; }
.ng-divider span{ height:4px; width:44px; background:var(--navy); }
.ng-divider i{ color:var(--teal-dark); font-size:16px; margin:0 14px; }

.sub-title{ color:var(--teal-dark); font-weight:900; font-size:17px; margin-bottom:14px; font-family:monospace,var(--font); letter-spacing:1px; }
.desc{ line-height:1.95; color:var(--ink-dim); font-size:15px; }

.hero-actions{ margin-top:26px; display:flex; flex-wrap:wrap; gap:14px; }
@media (min-width:861px){ .hero-actions{ justify-content:flex-end; } }
@media (max-width:860px){ .hero-actions{ justify-content:center; } }

.btn-call, .btn-whatsapp, .ng-btn{
  border:3px solid var(--navy); padding:14px 28px; font-weight:900; font-size:14px;
  display:inline-flex; align-items:center; gap:9px; transition:.12s;
  border-radius:0; text-transform:uppercase; letter-spacing:.3px;
  box-shadow:6px 6px 0 var(--navy);
}
.btn-call{ background:var(--blue); color:var(--navy); }
.btn-call:hover{ color:var(--navy); transform:translate(3px,3px); box-shadow:3px 3px 0 var(--navy); }
.btn-whatsapp{ background:var(--whatsapp); color:#fff; border-color:var(--navy); }
.btn-whatsapp:hover{ color:#fff; transform:translate(3px,3px); box-shadow:3px 3px 0 var(--navy); }
.ng-btn-outline{ background:var(--surface); color:var(--navy); }
.ng-btn-outline:hover{ background:var(--navy); color:var(--blue); transform:translate(3px,3px); box-shadow:3px 3px 0 var(--navy); }

.hero-dots{ display:flex; justify-content:center; gap:8px; margin-top:26px; }
.hero-dots button{ width:14px; height:14px; border:2px solid var(--navy); background:var(--surface); padding:0; cursor:pointer; transition:.15s; }
.hero-dots button.is-active{ background:var(--blue); }

/* ---------- Section titles — عناوين "ختم" بأحرف كبيرة وخط سفلي ثخين ---------- */
.section-title{ text-align:center; color:var(--navy); font-weight:900; font-size:clamp(24px,3.4vw,34px); margin-bottom:6px; }
.section-lead{ text-align:center; color:var(--ink-dim); font-size:15px; max-width:640px; margin:0 auto 10px; }

/* ---------- Services ---------- */
.ng-services{ padding:58px 0 52px; }

.service-card{
  background:var(--surface); overflow:hidden;
  border:3px solid var(--navy); box-shadow:8px 8px 0 var(--navy); transition:transform .18s, box-shadow .18s;
  position:relative;
}
.service-card:hover{ transform:translate(-4px,-4px); box-shadow:12px 12px 0 var(--teal); }
/* شارة رقمية بخط Monospace بدل الشارة الدائرية الناعمة */
.service-card::before{
  content:"SERVICE"; font-family:monospace; font-weight:800; font-size:10.5px; letter-spacing:1px;
  position:absolute; top:0; inset-inline-start:0; z-index:2; padding:6px 12px;
  background:var(--navy); color:var(--blue);
}
.service-img{ overflow:hidden; aspect-ratio:4/3; position:relative; border-bottom:3px solid var(--navy); }
.service-img img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.15) contrast(1.05); transition:transform .35s; }
.service-card:hover .service-img img{ transform:scale(1.06); }
.service-body{ padding:22px 20px 26px; text-align:center; }
.service-title{ color:var(--navy); font-weight:900; font-size:17.5px; margin-bottom:16px; }
.service-btn{
  background:var(--surface); color:var(--navy); border:2px solid var(--navy);
  padding:10px 22px; display:inline-flex; align-items:center; gap:9px; font-weight:800; font-size:13px;
  text-transform:uppercase; transition:.12s;
}
.service-btn:hover{ background:var(--blue); }

/* ---------- Offers styled as article cards ---------- */
.ng-offers{ padding:18px 0 52px; }

.article-card{
  background:var(--surface); overflow:visible;
  border:3px solid var(--navy); box-shadow:8px 8px 0 var(--teal); height:100%; position:relative;
  transition:transform .18s;
}
.article-card:hover{ transform:translate(-4px,-4px); }
.article-img-wrap{ position:relative; overflow:hidden; aspect-ratio:16/10; border-bottom:3px solid var(--navy); }
.article-img-wrap img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.15) contrast(1.05); }
.article-badge{
  position:absolute; top:0; inset-inline-end:0; background:var(--blue); color:var(--navy);
  font-size:11px; font-weight:900; padding:6px 14px; font-family:monospace; letter-spacing:.5px;
}
.article-avatar{
  position:absolute; bottom:-22px; inset-inline-start:24px;
  width:46px; height:46px; background:var(--navy); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:18px;
  border:3px solid var(--surface);
}
.article-body{ padding:34px 22px 26px; text-align:center; }
.article-title{ color:var(--navy); font-weight:900; font-size:16.5px; line-height:1.5; margin-bottom:14px; }
.article-desc{ color:var(--ink-dim); font-size:14px; line-height:1.85; margin-bottom:16px; }
.article-more{ color:var(--teal-dark); font-weight:800; font-size:13.5px; text-transform:uppercase; }
.article-more:hover{ color:var(--navy); }

/* ---------- Why us ---------- */
.ng-why-us{ padding:60px 0 28px; text-align:center; }
.why-title{ color:var(--navy); font-size:clamp(22px,3vw,30px); font-weight:900; margin-bottom:10px; }

.why-card{
  background:var(--surface); padding:34px 24px;
  border:3px solid var(--navy); height:100%;
  border-top:8px solid var(--blue); position:relative; text-align:center;
  transition:transform .18s;
}
.why-card:hover{ transform:translateY(-6px); border-top-color:var(--teal); }
.why-icon-circle{
  width:58px; height:58px; background:var(--navy); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 18px;
  border:3px solid var(--navy);
}
.why-card h4{ color:var(--navy); font-weight:800; margin-bottom:12px; font-size:16.5px; text-transform:uppercase; }
.why-card p{ color:var(--ink-dim); line-height:1.85; font-size:14px; }

/* ---------- Stats strip — شريط أسود صلب بأرقام صفراء ضخمة ---------- */
.ng-stats{
  background:var(--navy);
  position:relative; margin:0; border-top:4px solid var(--blue); border-bottom:4px solid var(--blue);
}
.ng-stats .container{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.stat-block{
  text-align:center; padding:34px 16px; border-inline-end:2px solid rgba(244,180,0,.35);
}
.stat-block:last-child{ border-inline-end:none; }
.stat-block strong{
  display:block; font-family:monospace,var(--font-display); font-size:clamp(26px,3.4vw,40px); font-weight:800; color:var(--blue); line-height:1;
}
.stat-block span{ display:block; margin-top:10px; color:#fff; font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; }
@media (max-width:768px){
  .ng-stats .container{ grid-template-columns:repeat(2,1fr); }
  .stat-block{ border-bottom:2px solid rgba(244,180,0,.35); }
}

/* ---------- CTA Banner — لافتة صناعية بخطوط تحذير مائلة ---------- */
.ng-cta-banner{
  background:var(--navy);
  padding:50px 44px; position:relative; overflow:hidden;
  clip-path:none; border:none;
  border-top:10px solid; border-image:repeating-linear-gradient(-45deg, var(--blue) 0 14px, var(--navy) 14px 28px) 10;
  margin:0;
}
.ng-cta-banner .container{ display:flex; align-items:center; justify-content:space-between; gap:26px; flex-wrap:wrap; position:relative; z-index:2; }
.ng-cta-banner h3{ color:#fff; font-size:clamp(19px,2.4vw,26px); font-weight:900; }
.ng-cta-banner p{ color:#c9c6bb; margin-top:8px; font-size:14px; }
.ng-cta-banner .hero-actions{ margin-top:0; }
@media (max-width:700px){ .ng-cta-banner .container{ justify-content:center; text-align:center; } .ng-cta-banner{ padding:40px 24px; } }

/* ---------- زر اتصال سريع داخل الهيدر ---------- */
.topbar-cta{ display:none; }
@media (min-width:901px){ .topbar-cta{ display:inline-flex; margin-inline-start:16px; padding:10px 20px; font-size:12.5px; box-shadow:4px 4px 0 var(--navy); } }

/* ---------- Share ---------- */
.ng-share{ text-align:center; padding:16px 0 50px; }
.share-title{ color:var(--navy); font-weight:900; font-size:19px; margin-bottom:22px; }
.share-icons{ display:flex; justify-content:center; gap:14px; }
.share-icons a{
  width:46px; height:46px; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:17px; border:3px solid var(--navy); transition:.15s;
}
.share-icons a:hover{ transform:translate(-3px,-3px); box-shadow:4px 4px 0 var(--navy); }
.share-icons a.wa{ background:var(--whatsapp); }
.share-icons a.tw{ background:var(--navy); }
.share-icons a.fb{ background:var(--teal); }

/* ---------- Keywords tag cloud ---------- */
.ng-keywords{ padding:20px 0 16px; text-align:center; }
.ng-keywords a{
  display:inline-block; margin:6px; padding:9px 18px; background:var(--surface); border:2px solid var(--navy);
  color:var(--navy); font-size:12.5px; font-weight:800; transition:.12s; font-family:monospace; text-transform:uppercase;
}
.ng-keywords a:hover{ background:var(--blue); }

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.ng-page-hero{
  background:var(--navy);
  padding:56px 0 60px; position:relative; overflow:hidden;
  border-bottom:6px solid var(--blue);
}
.ng-page-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: repeating-linear-gradient(-45deg, rgba(244,180,0,.06) 0 16px, transparent 16px 32px);
}
.ng-page-hero h1{ color:#fff; font-size:clamp(24px,3.4vw,36px); font-weight:900; position:relative; z-index:2; }
.ng-page-hero p{ color:#c9c6bb; margin-top:12px; max-width:720px; font-size:14.5px; position:relative; z-index:2; }
.ng-breadcrumbs{ font-size:12.5px; color:var(--blue); margin-bottom:14px; display:flex; gap:6px; flex-wrap:wrap; font-weight:800; position:relative; z-index:2; font-family:monospace; }
.ng-breadcrumbs a{ color:#a9a69c; }
.ng-breadcrumbs a:hover{ color:#fff; }

/* ---------- Filters / pagination (works gallery) ---------- */
.ng-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.ng-filter-pill{ padding:10px 20px; border:2px solid var(--navy); font-size:13px; font-weight:800; color:var(--navy); background:var(--surface); text-transform:uppercase; }
.ng-filter-pill:hover{ background:var(--accent-soft); }
.ng-filter-pill.is-active{ background:var(--navy); border-color:var(--navy); color:var(--blue); }

.ng-pagination{ display:flex; justify-content:center; gap:6px; margin-top:44px; flex-wrap:wrap; }
.ng-pagination a, .ng-pagination span{
  min-width:40px; height:40px; padding-inline:10px; display:flex; align-items:center; justify-content:center;
  border:2px solid var(--navy); font-weight:800; font-size:13.5px; color:var(--navy);
}
.ng-pagination .is-active{ background:var(--navy); border-color:var(--navy); color:var(--blue); }
.ng-pagination .is-disabled{ opacity:.3; pointer-events:none; }

/* ---------- Gallery (works) ---------- */
.ng-gallery-item{ overflow:hidden; aspect-ratio:4/3; position:relative; border:3px solid var(--navy); cursor:zoom-in; }
.ng-gallery-item img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.2) contrast(1.05); transition:transform .35s; }
.ng-gallery-item:hover img{ transform:scale(1.08); filter:grayscale(0) contrast(1.05); }
.ng-gallery-item:hover{ box-shadow:8px 8px 0 var(--blue); }
.ng-gallery-item__overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(17,17,17,.9) 0%, rgba(17,17,17,0) 60%);
  display:flex; align-items:flex-end; padding:14px; opacity:0; transition:opacity .2s ease;
}
.ng-gallery-item:hover .ng-gallery-item__overlay{ opacity:1; }
.ng-gallery-item__overlay span{ color:var(--blue); font-size:12.5px; font-weight:800; font-family:monospace; text-transform:uppercase; }

/* ---------- Lightbox ---------- */
.ng-lightbox{ position:fixed; inset:0; background:rgba(0,0,0,.95); z-index:1100; display:none; align-items:center; justify-content:center; padding:30px; }
.ng-lightbox.is-open{ display:flex; }
.ng-lightbox img{ max-width:min(1000px,92vw); max-height:86vh; border:4px solid var(--blue); }
.ng-lightbox__close, .ng-lightbox__nav{
  position:absolute; background:var(--navy); border:2px solid var(--blue); color:var(--blue);
  width:44px; height:44px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:16px;
}
.ng-lightbox__close:hover, .ng-lightbox__nav:hover{ background:var(--blue); color:var(--navy); }
.ng-lightbox__close{ top:20px; inset-inline-end:20px; }
.ng-lightbox__prev{ inset-inline-start:20px; top:50%; transform:translateY(-50%); }
.ng-lightbox__next{ inset-inline-end:20px; top:50%; transform:translateY(-50%); }

/* ---------- Forms (contact) ---------- */
.ng-card{ background:var(--surface); border:3px solid var(--navy); box-shadow:10px 10px 0 var(--blue); padding:34px; }
.ng-field{ margin-bottom:18px; }
.ng-field label{ display:block; font-size:12.5px; font-weight:800; color:var(--navy); margin-bottom:8px; text-transform:uppercase; letter-spacing:.4px; }
.ng-field input, .ng-field select, .ng-field textarea{
  width:100%; padding:13px 16px; border:2px solid var(--navy); font-family:inherit; font-size:14px; color:var(--ink); background:var(--surface);
  border-radius:0;
}
.ng-field input:focus, .ng-field select:focus, .ng-field textarea:focus{ outline:none; box-shadow:4px 4px 0 var(--blue); }
.ng-field textarea{ min-height:120px; resize:vertical; }
.ng-alert{ padding:15px 18px; margin-bottom:20px; font-size:14px; font-weight:800; border:2px solid var(--navy); }
.ng-alert-ok{ background:var(--accent-soft); color:var(--navy); }
.ng-alert-err{ background:#ffd9d0; color:#8a1f0f; }
.ng-info-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom:16px; }
.ng-info-row i{ width:42px; height:42px; background:var(--navy); color:var(--blue); display:flex; align-items:center; justify-content:center; flex:none; }
.ng-info-row h4{ font-size:14px; color:var(--navy); margin-bottom:3px; font-weight:800; text-transform:uppercase; }
.ng-info-row p, .ng-info-row a{ font-size:14px; color:var(--ink-dim); }

/* ---------- Footer — أسود صلب بشريط تحذير علوي ---------- */
.footer-dark{
  background:var(--navy);
  color:#efece2; padding:0; border-top:8px solid var(--blue);
}
.footer-dark .container{ padding:52px 24px; }
.footer-map iframe, .footer-map .map-placeholder{ width:100%; height:280px; border:3px solid var(--blue); filter:grayscale(1) contrast(1.15) invert(.92); }
.footer-contact-title{ color:#fff; font-weight:900; font-size:23px; margin-bottom:16px; }
.footer-contact-text{ color:#b8b4a8; line-height:1.95; margin-bottom:20px; }
.footer-icon-row{ display:flex; gap:14px; margin-bottom:18px; }
.footer-icon-row span{ color:#b8b4a8; font-weight:700; align-self:center; font-size:12.5px; text-transform:uppercase; }
.footer-icons{ display:flex; gap:10px; }
.footer-icons a{ width:42px; height:42px; background:var(--blue); color:var(--navy); display:flex; align-items:center; justify-content:center; font-size:15px; transition:.15s; }
.footer-icons a:hover{ background:var(--teal); color:#fff; }
.footer-links{ margin-top:20px; }
.footer-links a{ color:#b8b4a8; font-size:12.5px; display:inline-block; margin-inline-end:16px; margin-bottom:10px; text-transform:uppercase; }
.footer-links a:hover{ color:var(--blue); }

.copyright-bar{ background:var(--navy-dark); text-align:center; padding:20px 18px; font-size:12.5px; color:#8f8b7f; border-top:2px solid #2a2a2a; }
.copyright-bar strong{ color:var(--blue); }

@media (max-width:860px){
  .footer-contact-title, .footer-contact-text, .footer-icon-row, .footer-icons{ text-align:center; justify-content:center; }
}

/* ---------- Floating buttons ---------- */
.fab-wrap{ position:fixed; bottom:24px; inset-inline-start:22px; z-index:900; display:flex; flex-direction:column; align-items:center; gap:10px; }
.fab-wrap.is-hidden{ display:none; }
.fab-circle{ width:54px; height:54px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:19px; border:3px solid var(--navy); box-shadow:5px 5px 0 var(--navy); transition:.15s; }
.fab-circle:hover{ transform:translate(-3px,-3px); box-shadow:8px 8px 0 var(--navy); }
.fab-circle.call{ background:var(--blue); color:var(--navy); }
.fab-circle.wat{ background:var(--whatsapp); }
.fab-circle.close{ background:#fff; color:var(--navy); font-size:14px; cursor:pointer; }
@media (max-width:767px){ .fab-wrap{ bottom:18px; inset-inline-start:16px; } }

/* ---------- Reveal on scroll ---------- */
.ng-reveal{ opacity:0; transform:translateY(18px); transition:opacity .4s ease, transform .4s ease; }
.ng-reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- 404 ---------- */
.ng-error-page{ min-height:55vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:40px 20px; }
.ng-error-page h1{ font-size:clamp(56px,9vw,110px); color:var(--navy); font-weight:900; -webkit-text-stroke:2px var(--blue); }
