/* =========================================================
   قالب "الورشة الصناعية" (Industrial Workshop) — تصميم بديل قابل
   للتبديل من لوحة التحكم عبر active_theme، مخصص للنطاق الفرعي
   ليختلف بصرياً عن قالب "الفخامة الملكية" (navy-gold) الأساسي.

   الفكرة: الموقع يمثل حداداً يصنّع مظلات وسواتر وبرجولات وهناجر
   حديدية — الهوية هنا مبنية على لغة الورشة والمعدن والقياس الدقيق
   بدل لغة "الفخامة"، عبر: ألواح مسطحة بحدود بدل بطاقات ظليّة
   مرتفعة، زوايا مقصوصة (Cut-corner) كإشارة لقص الصفائح المعدنية،
   شبكة خطوط تقنية (بديل عن النقاط) كإشارة لورق المخططات
   الهندسية، وخط عناوين هندسي ثقيل (Cairo) مقابل خط نصوص تقني
   (IBM Plex Sans Arabic).

   ملاحظة مهمة للربط: أسماء متغيرات CSS (--navy, --gold, --violet
   ...) أُبقيت كما هي بنفس الأسماء حتى تبقى متوافقة مع أي استخدام
   inline لها داخل قوالب PHP الحالية — لكن قِيَمها تغيّرت بالكامل
   لتعكس لوحة الألوان الجديدة (التعليقات التالية توضح المعنى
   الفعلي الجديد لكل متغير). تحتاج فقط لإضافة استيراد الخطوط:

   <link href="https://fonts.googleapis.com/css2?family=Cairo:wght@700;800;900&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap" rel="stylesheet">
   ========================================================= */
:root{
  --navy:#1c2024;        /* كان أزرق داكن ← الآن كربوني/غرافيتي (السطح الغامق الأساسي) */
  --navy-dark:#0d0f11;    /* الأغمق — خلفية الفوتر وشريط القائمة */
  --gold:#e0940f;         /* كان نحاسي ← الآن أصفر تحذيري صناعي (Safety Amber) — اللون المميز الأساسي */
  --whatsapp:#25d366;     /* ثابت — لون واتساب المعروف */
  --violet:#a8431f;       /* كان بنفسجي ← الآن صدأ حديد (Oxidized Rust) — لمسات ثانوية */
  --bg-soft:#efe9dc;      /* رملي/خرساني دافئ (خلفية الصفحة) */
  --ink:#211d18;
  --ink-dim:#655c4e;
  --line:#d6cbae;         /* لون خطوط الحدود الإنشائية */
  --card-radius:6px;      /* زوايا شبه حادة بدل التدوير الناعم */
  --cut:14px;             /* مقدار قص الزاوية (clip-path) — التوقيع البصري للقالب */
  --font: "IBM Plex Sans Arabic", "Tajawal", sans-serif;
  --font-display: "Cairo", "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:2px solid var(--gold); outline-offset:3px; }

.container{ max-width:1180px; margin-inline:auto; padding-inline:20px; }

/* ---------- خط العناوين المميز ---------- */
.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);
  letter-spacing:-.01em;
}

/* ---------- 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:#e6dfcd;
  background-image:
    linear-gradient(rgba(28,32,36,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,32,36,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---------- Top bar ---------- */
.ng-topbar{
  background:#fff; padding:12px 0; position:sticky; top:0; z-index:500;
  border-bottom:3px solid var(--navy);
  box-shadow:none;
}
.ng-topbar .container{ display:flex; align-items:center; justify-content:space-between; gap:16px; }

.brand-logo-box{ display:flex; align-items:center; gap:12px; }
.brand-logo-box img{ width:50px; height:50px; object-fit:contain; border-radius:4px; border:1.5px solid var(--line); }
.brand-logo-box .brand-name{ color:var(--navy); font-weight:800; font-size:15.5px; margin-bottom:2px; }
.brand-logo-box .brand-phone{ color:var(--gold); font-weight:800; font-size:14.5px; direction:ltr; display:inline-block; }

.nav-scroll{ display:flex; align-items:center; gap:2px; overflow-x:auto; white-space:nowrap; flex:1; }
.nav-scroll a{ flex:0 0 auto; color:var(--ink-dim); font-weight:600; padding:9px 13px; border-radius:2px; transition:.2s; font-size:14.5px; border-bottom:2px solid transparent; }
.nav-scroll a:hover, .nav-scroll a.is-active{ background:transparent; color:var(--navy); border-bottom-color:var(--gold); }
.nav-scroll a.home-link{ color:var(--navy); font-weight:800; }
.nav-scroll::-webkit-scrollbar{ height:5px; }
.nav-scroll::-webkit-scrollbar-thumb{ background:#ccc; border-radius:10px; }
@media (max-width:900px){ .nav-scroll{ display:none; } }

.menu-btn{
  display:none; background:var(--navy); color:#fff;
  border:none; border-radius:4px; width:46px; height:46px; align-items:center; justify-content:center;
  box-shadow:none; font-size:18px; flex:none;
}
@media (max-width:900px){ .menu-btn{ display:flex; } }

/* ---------- Sidebar ---------- */
.ng-sidebar{
  position:fixed; top:0; inset-inline-end:-280px; width:280px; height:100%; background:#fff;
  box-shadow:-8px 0 25px rgba(0,0,0,.15); border-inline-start:3px solid var(--gold);
  transition:inset-inline-end .3s ease; z-index:999; padding:24px 20px; 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; }
.ng-sidebar h5{ color:var(--navy); font-weight:800; margin:0; font-size:17px; }
.ng-sidebar__close{ background:var(--line); border:none; width:34px; height:34px; border-radius:4px; color:var(--navy); font-size:15px; }
.ng-sidebar a{ display:block; padding:12px 6px; color:#333; border-bottom:1px solid #eee; font-weight:500; }
.ng-sidebar a:hover{ background:#f1ede2; color:var(--navy); }

.ng-overlay{
  position:fixed; inset:0; background:rgba(13,15,17,.55); display:none; z-index:998;
}
.ng-overlay.is-open{ display:block; }

/* ---------- Hero ---------- */
.ng-hero{ padding:46px 0; position:relative; overflow:hidden; }
.ng-hero-slide{ display:none; }
.ng-hero-slide.is-active{ display:block; }

.hero-row{ display:grid; grid-template-columns:1.2fr 1fr; gap:36px; align-items:stretch; }
@media (max-width:860px){ .hero-row{ grid-template-columns:1fr; } }

/* لوحة داكنة بزوايا مقصوصة وشبكة خطوط + أقواس زوايا هندسية —
   التوقيع البصري الرئيسي للقالب */
.hero-logo-card{
  position:relative;
  background:var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:24px 24px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  border-radius:0;
  padding:44px 30px; text-align:center;
  box-shadow:none; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.hero-logo-card::before,
.hero-logo-card::after{
  content:""; position:absolute; width:22px; height:22px; border:2px solid var(--gold);
}
.hero-logo-card::before{ top:14px; inset-inline-start:14px; border-inline-end:none; border-bottom:none; }
.hero-logo-card::after{ bottom:14px; inset-inline-end:14px; border-inline-start:none; border-top:none; }
.hero-logo-card img{ max-width:180px; margin-bottom:10px; filter:brightness(0) invert(1); opacity:.94; }
.hero-logo-card .logo-word{ color:#fff; font-weight:800; 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(26px,4vw,36px); }

.ng-divider{ display:flex; align-items:center; margin:16px 0 20px; }
.ng-divider.centered{ justify-content:center; }
.ng-divider span{ height:3px; width:46px; background:var(--gold); }
.ng-divider i{ color:var(--navy); font-size:17px; margin:0 12px; }

.sub-title{ color:var(--gold); font-weight:800; font-size:15px; letter-spacing:.02em; margin-bottom:14px; }
.desc{ line-height:1.9; color:var(--ink-dim); font-size:15.5px; }

.hero-actions{ margin-top:22px; display:flex; flex-wrap:wrap; gap:10px; }
@media (min-width:861px){ .hero-actions{ justify-content:flex-end; } }
@media (max-width:860px){ .hero-actions{ justify-content:center; } }

/* أزرار بزوايا مقصوصة (Cut-corner) بدل الحبوب الدائرية — إشارة لقص
   الصفائح المعدنية، وهي التوقيع البصري الثاني المتكرر بانضباط */
.btn-call, .btn-whatsapp, .ng-btn{
  border:none; border-radius:0; padding:12px 26px; font-weight:700;
  display:inline-flex; align-items:center; gap:8px; box-shadow:none; transition:.25s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-call{ background:var(--navy); color:#fff; }
.btn-call:hover{ color:#fff; background:#000; }
.btn-whatsapp{ background:var(--whatsapp); color:#fff; }
.btn-whatsapp:hover{ color:#fff; filter:brightness(.92); }
.ng-btn-outline{ background:#fff; color:var(--navy); border:1.5px solid var(--navy); clip-path:polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px); }
.ng-btn-outline:hover{ background:var(--navy); color:#fff; }

.hero-dots{ display:flex; justify-content:center; gap:8px; margin-top:24px; }
.hero-dots button{ width:26px; height:4px; border-radius:0; border:none; background:var(--line); padding:0; cursor:pointer; transition:.2s; }
.hero-dots button.is-active{ background:var(--gold); width:38px; }

/* ---------- Section titles ---------- */
/* عناوين تبدأ من جهة القراءة بخط سميك بدل التمركز الكامل */
.section-title{
  text-align:right; color:var(--navy); font-weight:800; font-size:25px; margin-bottom:6px;
  position:relative; padding-inline-start:16px; border-inline-start:4px solid var(--gold);
}
@media (max-width:640px){ .section-title{ text-align:center; border-inline-start:none; padding-inline-start:0; border-top:3px solid var(--gold); padding-top:10px; display:inline-block; } }
.section-lead{ text-align:right; color:var(--ink-dim); font-size:15px; max-width:620px; margin:0 0 8px; padding-inline-start:16px; }
@media (max-width:640px){ .section-lead{ text-align:center; margin-inline:auto; padding-inline-start:0; } }

/* ---------- Services ---------- */
.ng-services{ padding:34px 0 40px; }

/* بطاقات مسطحة بحدود بدل الظلال الناعمة المرتفعة */
.service-card{
  background:#fff; border:1.5px solid var(--line); border-radius:var(--card-radius); overflow:hidden;
  box-shadow:none; transition:border-color .25s, transform .25s;
}
.service-card:hover{ transform:translateY(-4px); border-color:var(--gold); }
.service-img{ overflow:hidden; aspect-ratio:4/3; border-bottom:1.5px solid var(--line); }
.service-img img{ width:100%; height:100%; object-fit:cover; transition:transform .4s; filter:saturate(1.02); }
.service-card:hover .service-img img{ transform:scale(1.05); }
.service-body{ padding:16px 14px 22px; text-align:center; }
.service-title{ color:var(--navy); font-weight:800; font-size:18px; margin-bottom:14px; }
.service-btn{
  background:var(--navy); color:#fff; border-radius:0;
  padding:10px 22px; display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.service-btn:hover{ color:#fff; background:var(--gold); }

/* ---------- Offers styled as article cards ---------- */
.ng-offers{ padding:18px 0 44px; }

.article-card{
  background:#fff; border:1.5px solid var(--line); border-radius:var(--card-radius); overflow:visible;
  box-shadow:none; height:100%; position:relative;
}
.article-img-wrap{ position:relative; border-radius:0; overflow:hidden; aspect-ratio:16/10; border-bottom:1.5px solid var(--line); }
.article-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.article-badge{
  position:absolute; top:0; inset-inline-end:0; background:var(--gold); color:var(--navy-dark);
  font-size:11.5px; font-weight:800; padding:6px 14px; border-radius:0;
}
.article-avatar{
  position:absolute; bottom:-22px; inset-inline-start:50%; transform:translateX(50%);
  width:44px; height:44px; border-radius:0; background:var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:17px;
  box-shadow:none; border:3px solid #fff;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.article-body{ padding:32px 18px 22px; text-align:center; }
.article-title{ color:var(--ink); font-weight:800; font-size:16.5px; line-height:1.5; margin-bottom:12px; }
.article-desc{ color:var(--ink-dim); font-size:14px; line-height:1.8; margin-bottom:14px; }
.article-more{ color:var(--gold); font-weight:700; font-size:14px; border-bottom:1.5px solid var(--gold); padding-bottom:2px; }
.article-more:hover{ color:var(--violet); border-color:var(--violet); }

/* ---------- Why us ---------- */
.ng-why-us{ padding:42px 0 20px; text-align:center; }
.why-title{ color:var(--navy); font-size:26px; font-weight:800; margin-bottom:8px; }

.why-card{
  background:#fff; border:1.5px solid var(--line); border-radius:var(--card-radius); padding:32px 22px;
  box-shadow:none; height:100%; transition:border-color .25s;
}
.why-card:hover{ border-color:var(--gold); }
.why-icon-circle{
  width:58px; height:58px; border-radius:0; background:var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:23px; margin:0 auto 18px;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.why-card h4{ color:var(--navy); font-weight:800; margin-bottom:12px; font-size:17px; }
.why-card p{ color:var(--ink-dim); line-height:1.8; font-size:14.5px; opacity:1; }

/* ---------- Share ---------- */
.ng-share{ text-align:center; padding:10px 0 40px; }
.share-title{ color:var(--navy); font-weight:800; font-size:20px; margin-bottom:20px; }
.share-icons{ display:flex; justify-content:center; gap:14px; }
.share-icons a{
  width:44px; height:44px; border-radius:0; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:16px; box-shadow:none;
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.share-icons a.wa{ background:var(--whatsapp); }
.share-icons a.tw{ background:var(--steel,#4b5157); background:#41474d; }
.share-icons a.fb{ background:var(--navy); }

/* ---------- Keywords tag cloud ---------- */
.ng-keywords{ padding:20px 0 10px; text-align:center; }
.ng-keywords a{
  display:inline-block; margin:5px; padding:7px 15px; background:#fff; border:1.5px solid var(--line); border-radius:0;
  color:var(--navy); font-size:13px; font-weight:600; transition:.25s;
}
.ng-keywords a:hover{ background:var(--navy); border-color:var(--navy); color:#fff; }

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.ng-page-hero{
  background:var(--navy-dark);
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:26px 26px;
  padding:50px 0 38px; border-bottom:3px solid var(--gold);
}
.ng-page-hero h1{ color:#fff; font-size:clamp(24px,3.4vw,34px); font-weight:800; }
.ng-page-hero p{ color:#cfc7b4; margin-top:10px; max-width:680px; }
.ng-breadcrumbs{ font-size:13px; color:#a49a83; margin-bottom:14px; display:flex; gap:6px; flex-wrap:wrap; }
.ng-breadcrumbs a{ color:#cfc7b4; }
.ng-breadcrumbs a:hover{ color:var(--gold); }

/* ---------- Filters / pagination (works gallery) ---------- */
.ng-filters{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.ng-filter-pill{ padding:9px 18px; border-radius:0; border:1.5px solid var(--line); font-size:13.5px; font-weight:700; color:var(--navy); background:#fff; }
.ng-filter-pill:hover{ border-color:var(--navy); }
.ng-filter-pill.is-active{ background:var(--navy); color:#fff; border-color:var(--navy); }

.ng-pagination{ display:flex; justify-content:center; gap:8px; margin-top:36px; flex-wrap:wrap; }
.ng-pagination a, .ng-pagination span{
  min-width:40px; height:40px; padding-inline:10px; border-radius:0; display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--line); font-weight:700; font-size:13.5px; color:var(--navy);
}
.ng-pagination .is-active{ background:var(--navy); border-color:var(--navy); color:#fff; }
.ng-pagination .is-disabled{ opacity:.35; pointer-events:none; }

/* ---------- Gallery (works) ---------- */
.ng-gallery-item{
  border-radius:0; overflow:hidden; aspect-ratio:4/3; position:relative;
  box-shadow:none; border:1.5px solid var(--line); cursor:zoom-in;
}
.ng-gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.ng-gallery-item:hover img{ transform:scale(1.06); }
.ng-gallery-item:hover{ border-color:var(--gold); }
.ng-gallery-item__overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(13,15,17,.86) 0%, rgba(13,15,17,0) 55%);
  display:flex; align-items:flex-end; padding:12px; opacity:0; transition:opacity .25s ease;
}
.ng-gallery-item:hover .ng-gallery-item__overlay{ opacity:1; }
.ng-gallery-item__overlay span{ color:#fff; font-size:13px; font-weight:700; }

/* ---------- Lightbox ---------- */
.ng-lightbox{ position:fixed; inset:0; background:rgba(8,7,5,.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-radius:0; box-shadow:0 30px 70px rgba(0,0,0,.5); border:2px solid var(--gold); }
.ng-lightbox__close, .ng-lightbox__nav{
  position:absolute; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.3); color:#fff;
  width:44px; height:44px; border-radius:0; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:18px;
}
.ng-lightbox__close:hover, .ng-lightbox__nav:hover{ border-color:var(--gold); color:var(--gold); }
.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:#fff; border:1.5px solid var(--line); border-radius:var(--card-radius); box-shadow:none; padding:28px; }
.ng-field{ margin-bottom:18px; }
.ng-field label{ display:block; font-size:13.5px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.ng-field input, .ng-field select, .ng-field textarea{
  width:100%; padding:12px 14px; border-radius:2px; border:1.5px solid var(--line); font-family:inherit; font-size:14.5px; background:#fdfcf9;
}
.ng-field input:focus, .ng-field select:focus, .ng-field textarea:focus{ border-color:var(--gold); outline:none; }
.ng-field textarea{ min-height:110px; resize:vertical; }
.ng-alert{ padding:14px 18px; border-radius:2px; margin-bottom:18px; font-size:14px; font-weight:700; border-inline-start:4px solid transparent; }
.ng-alert-ok{ background:#eaf6ee; color:#0a7a49; border-inline-start-color:#0a7a49; }
.ng-alert-err{ background:#fbeceb; color:#a3271e; border-inline-start-color:#a3271e; }
.ng-info-row{ display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.ng-info-row i{ width:38px; height:38px; border-radius:2px; background:var(--navy); color:var(--gold); display:flex; align-items:center; justify-content:center; flex:none; }
.ng-info-row h4{ font-size:14.5px; color:var(--navy); margin-bottom:2px; }
.ng-info-row p, .ng-info-row a{ font-size:14px; color:var(--ink-dim); }

/* ---------- Footer ---------- */
.footer-dark{ background:var(--navy-dark); color:#fff; padding:48px 0; border-top:3px solid var(--gold); }
.footer-map iframe, .footer-map .map-placeholder{ width:100%; height:280px; border:0; border-radius:0; filter:grayscale(.3) contrast(1.05); }
.footer-contact-title{ color:var(--gold); font-weight:800; font-size:22px; margin-bottom:16px; }
.footer-contact-text{ color:#cfc7b4; line-height:1.9; margin-bottom:20px; }
.footer-icon-row{ display:flex; gap:12px; margin-bottom:18px; }
.footer-icon-row span{ color:#cfc7b4; font-weight:700; align-self:center; }
.footer-icons{ display:flex; gap:10px; }
.footer-icons a{ width:40px; height:40px; border-radius:0; background:transparent; border:1.5px solid var(--gold); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:16px; }
.footer-icons a:hover{ background:var(--gold); color:var(--navy-dark); }
.footer-links{ margin-top:18px; }
.footer-links a{ color:#b7ad94; font-size:13.5px; display:inline-block; margin-inline-end:14px; margin-bottom:8px; }
.footer-links a:hover{ color:var(--gold); }

.copyright-bar{ background:#fff; text-align:center; padding:16px; font-size:13.5px; color:#333; border-top:1px solid var(--line); }
.copyright-bar strong{ color:var(--navy); }

@media (max-width:860px){
  .footer-dark .grid-2{ grid-template-columns:1fr; }
  .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:20px; z-index:900; display:flex; flex-direction:column; align-items:center; gap:12px; }
.fab-wrap.is-hidden{ display:none; }
.fab-circle{ width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; box-shadow:0 6px 16px rgba(0,0,0,.3); border:2px solid #fff; }
.fab-circle.call{ background:var(--navy); }
.fab-circle.wat{ background:var(--whatsapp); }
.fab-circle.close{ background:var(--violet); font-size:16px; cursor:pointer; }
@media (max-width:767px){ .fab-wrap{ bottom:18px; inset-inline-start:14px; } }

/* ---------- Reveal on scroll ---------- */
.ng-reveal{ opacity:0; transform:translateY(16px); transition:opacity .55s ease, transform .55s 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(--gold); font-weight:900; }