﻿/* ==========================================================================
   أبعاد جلوبال — ARKAN REAL ESTATE
   Design System v2.0 — Light Luxury (Sumou-inspired)
   Palette: Cream-white background · Deep Navy · Warm Gold
   Font: Almarai (AR) + Cormorant Garamond (EN accents)
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────
   1 · DESIGN TOKENS
   ───────────────────────────────────────────────────────────────────────── */
:root {
  /* ── Core palette ────────────────────────── */
  --c-bg:          #F8F6F1;          /* warm cream background */
  --c-bg-alt:      #FFFFFF;          /* pure white cards/sections */
  --c-bg-dark:     #0E1B2E;          /* deep navy dark sections */
  --c-bg-dark-2:   #162238;          /* slightly lighter navy */
  --c-bg-section:  #F2EFE8;          /* warm off-white alternate */

  --c-navy:        #0E1B2E;          /* primary text on light bg */
  --c-navy-mid:    #1E3050;          /* headings */
  --c-ink:         #2C3A50;          /* body text */
  --c-ink-soft:    #5A6A7E;          /* secondary text */
  --c-muted:       #9AA5B4;          /* placeholder / captions */

  --c-gold:        #B8965A;          /* primary accent */
  --c-gold-light:  #D4AE72;          /* hover gold */
  --c-gold-deep:   #946E35;          /* pressed gold */
  --c-gold-pale:   #F5ECD8;          /* gold tint backgrounds */
  --c-gold-line:   rgba(184,150,90,0.25);

  --c-line:        rgba(14,27,46,0.08);
  --c-line-strong: rgba(14,27,46,0.15);
  --c-white-line:  rgba(255,255,255,0.12);
  --c-white-line-s:rgba(255,255,255,0.20);

  /* ── Gradients ─────────────────────────────── */
  --g-gold:        linear-gradient(135deg, #D4AE72 0%, #B8965A 50%, #946E35 100%);
  --g-gold-h:      linear-gradient(135deg, #E0C080 0%, #C9A44C 50%, #A8842F 100%);
  --g-navy:        linear-gradient(150deg, #0E1B2E 0%, #162238 60%, #1E3050 100%);
  --g-dark-text:   linear-gradient(180deg, rgba(14,27,46,0) 0%, rgba(14,27,46,0.55) 55%, rgba(14,27,46,0.92) 100%);

  /* ── Typography ─────────────────────────────── */
  --f-ar:          "Almarai", "Tajawal", system-ui, sans-serif;
  --f-en:          "Cormorant Garamond", Georgia, serif;
  --f-ui:          "Almarai", system-ui, sans-serif;

  /* ── Geometry ──────────────────────────────── */
  --r-xs:          6px;
  --r-sm:          10px;
  --r:             16px;
  --r-lg:          24px;
  --r-xl:          36px;
  --r-full:        100px;

  /* ── Shadows ──────────────────────────────── */
  --sh-xs:  0 2px 8px rgba(14,27,46,0.06);
  --sh-sm:  0 4px 20px rgba(14,27,46,0.09);
  --sh:     0 12px 40px rgba(14,27,46,0.12);
  --sh-lg:  0 24px 64px rgba(14,27,46,0.16);
  --sh-gold:0 12px 40px rgba(184,150,90,0.28);

  /* ── Motion ───────────────────────────────── */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.36, 0, 0.66, 0);
  --dur:      0.55s;
  --dur-fast: 0.3s;
  --dur-slow: 0.9s;

  /* ── Layout ───────────────────────────────── */
  --max-w:    1280px;
  --hdr-h:    100px;
  --hdr-h-sm: 76px;
}

/* ─────────────────────────────────────────────────────────────────────────
   2 · RESET & BASE
   ───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  /* تمت إزالة scroll-behavior: smooth لمنع أي تمرير سلس/تلقائي مفروض. */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-ui);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; color: var(--c-navy); }
p { color: var(--c-ink-soft); }

::selection { background: var(--c-gold); color: #fff; }

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

/* Decorative gold line — reusable motif like Sumou */
.gold-line {
  display: inline-block;
  width: 48px; height: 3px;
  background: var(--g-gold);
  border-radius: 2px;
  vertical-align: middle;
}

/* ─────────────────────────────────────────────────────────────────────────
   3 · LAYOUT HELPERS
   ───────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.section { padding-block: clamp(72px, 9vw, 130px); position: relative; }
.section--sm { padding-block: clamp(48px, 5.5vw, 80px); }
.section--xs { padding-block: clamp(32px, 4vw, 56px); }

/* Background variants */
.bg-white   { background: var(--c-bg-alt); }
.bg-cream   { background: var(--c-bg); }
.bg-section { background: var(--c-bg-section); }
.bg-navy    { background: var(--c-bg-dark); color: #fff; }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.72); }

/* ── Section header ── */
.sec-head { margin-bottom: clamp(40px, 5.5vw, 72px); }
.sec-head--c { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.eyebrow .line { width: 32px; height: 1.5px; background: var(--g-gold); border-radius: 2px; flex-shrink: 0; }
.bg-navy .eyebrow { color: var(--c-gold-light); }

.sec-title {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.15;
  color: var(--c-navy);
  margin-bottom: 14px;
}
.sec-title .hl { color: var(--c-gold); }
.bg-navy .sec-title { color: #fff; }

.sec-lead {
  font-size: clamp(0.97rem, 1.6vw, 1.1rem);
  color: var(--c-ink-soft);
  max-width: 600px;
  line-height: 1.85;
}
.bg-navy .sec-lead { color: rgba(255,255,255,0.68); }
.sec-head--c .sec-lead { margin-inline: auto; }

/* ─────────────────────────────────────────────────────────────────────────
   4 · BUTTONS
   ───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--f-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn i, .btn svg { flex-shrink: 0; transition: transform var(--dur-fast) var(--ease); }
.btn:hover i { transform: translateX(-3px); }
[dir="ltr"] .btn:hover i { transform: translateX(3px); }

/* Primary gold */
.btn-gold {
  background: var(--g-gold);
  color: #fff;
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(184,150,90,0.38); }
.btn-gold:active { transform: translateY(0); }

/* Outline gold */
.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-outline:hover { background: var(--c-gold-pale); transform: translateY(-2px); }
.bg-navy .btn-outline { color: var(--c-gold-light); border-color: var(--c-gold-light); }
.bg-navy .btn-outline:hover { background: rgba(184,150,90,0.15); }

/* Ghost navy */
.btn-navy {
  background: var(--c-bg-dark);
  color: #fff;
  border-color: var(--c-bg-dark);
}
.btn-navy:hover { background: var(--c-navy-mid); transform: translateY(-2px); }

/* Ghost white (for dark sections) */
.btn-ghost-w {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost-w:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn-sm { padding: 10px 22px; font-size: 0.84rem; }
.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn-w { width: 100%; }

/* Text arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast);
}
.link-arrow:hover { gap: 14px; color: var(--c-gold-deep); }
.bg-navy .link-arrow { color: var(--c-gold-light); }
.bg-navy .link-arrow:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────────────────
   5 · SKIP LINK & SCROLL PROGRESS
   ───────────────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--c-gold);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--g-gold);
  z-index: 10000;
  transition: width 0.08s linear;
}

/* ─────────────────────────────────────────────────────────────────────────
   6 · HEADER / NAV
   ───────────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  transition:
    height var(--dur) var(--ease),
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

/* Transparent on hero */
.site-header.hero-mode {
  background: transparent;
}
.site-header.hero-mode .nav-link { color: rgba(255,255,255,0.88); }
.site-header.hero-mode .nav-link:hover { color: #fff; }
.site-header.hero-mode .brand-name { color: #fff; }
.site-header.hero-mode .brand-sub { color: rgba(255,255,255,0.55); }
.site-header.hero-mode .lang-btn { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.site-header.hero-mode .nav-toggle span,
.site-header.hero-mode .nav-toggle span::before,
.site-header.hero-mode .nav-toggle span::after { background: #fff; }
.site-header.hero-mode .site-logo-img { filter: brightness(0) invert(1); opacity: 0.9; }

/* Scrolled */
.site-header.is-scrolled {
  height: var(--hdr-h-sm);
  background: rgba(248,246,241,0.95);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 1px 24px rgba(14,27,46,0.08);
}
.site-header.is-scrolled.hero-mode .nav-link { color: var(--c-ink); }
.site-header.is-scrolled.hero-mode .nav-link:hover { color: var(--c-gold); }
.site-header.is-scrolled.hero-mode .brand-name { color: var(--c-navy); }
.site-header.is-scrolled.hero-mode .brand-sub { color: var(--c-muted); }
.site-header.is-scrolled.hero-mode .lang-btn { color: var(--c-ink-soft); border-color: var(--c-line-strong); }
.site-header.is-scrolled.hero-mode .nav-toggle span,
.site-header.is-scrolled.hero-mode .nav-toggle span::before,
.site-header.is-scrolled.hero-mode .nav-toggle span::after { background: var(--c-navy); }

/* Inside header */
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-img {
  gap: 0;
}
.site-logo-img {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: opacity var(--dur-fast);
}
.site-header.hero-mode .site-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-header.is-scrolled.hero-mode .site-logo-img {
  filter: none;
  opacity: 1;
}
.brand-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--g-gold);
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(184,150,90,0.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast);
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 3px;
  transition: color var(--dur-fast);
}

/* Nav links */
.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 15px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink);
  border-radius: var(--r-full);
  position: relative;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--g-gold);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-link:hover { color: var(--c-gold); }
.nav-link.active { color: var(--c-gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Header right side */
.hdr-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--c-line-strong);
  border-radius: var(--r-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-ink-soft);
  transition: all var(--dur-fast);
}
.lang-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-line-strong);
  background: transparent;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast);
}
.nav-toggle:hover { border-color: var(--c-gold); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  width: 20px; height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle span { left: 12px; top: 21px; }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after  { top:  6px; left: 0; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(248,246,241,0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: calc(var(--hdr-h) + 32px) 32px 40px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
[dir="ltr"] .mobile-nav { transform: translateX(-100%); }
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav .m-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--dur-fast), padding-right var(--dur-fast);
}
.mobile-nav .m-link:hover { color: var(--c-gold); padding-right: 12px; }
[dir="ltr"] .mobile-nav .m-link:hover { padding-right: 0; padding-left: 12px; }
.mobile-nav .m-cta { margin-top: 28px; }

/* ─────────────────────────────────────────────────────────────────────────
   7 · HERO
   ───────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s linear;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(14,27,46,0.88) 0%,
      rgba(14,27,46,0.60) 45%,
      rgba(14,27,46,0.30) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--hdr-h) + 60px) 80px;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow .dash {
  width: 40px; height: 1.5px;
  background: var(--g-gold);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.08;
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .gold { color: var(--c-gold-light); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Hero height variants */
.hero--compact {
  min-height: 82vh;
}

/* Hero stats — standalone band below hero */
.hero-stats-band {
  background: var(--c-bg-dark);
  border-top: 1px solid var(--c-white-line);
}
.hero-stats-band .hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stats-band .hero-stat {
  padding: 28px 32px;
  border-right: 1px solid var(--c-white-line);
  background: transparent;
  text-align: center;
  transition: background var(--dur-fast);
}
[dir="rtl"] .hero-stats-band .hero-stat:last-child,
[dir="ltr"] .hero-stats-band .hero-stat:first-child { border-right: none; }
.hero-stats-band .hero-stat:hover { background: rgba(255,255,255,0.04); }
.hero-stats-band .hero-stat .num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-gold-light);
  display: block;
  line-height: 1;
}
.hero-stats-band .hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* Hero stats strip (legacy — hidden now that we use standalone band) */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: none;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-white-line);
}
.hero-stat {
  padding: 26px 32px;
  border-right: 1px solid var(--c-white-line);
  background: rgba(14,27,46,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: background var(--dur-fast);
}
[dir="rtl"] .hero-stat:last-child,
[dir="ltr"] .hero-stat:first-child { border-right: none; }
.hero-stat:hover { background: rgba(14,27,46,0.72); }
.hero-stat .num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-gold-light);
  display: block;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 110px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
[dir="ltr"] .hero-scroll { right: auto; left: 48px; }
.hero-scroll .line-v {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
  animation: lineGrow 2.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────────
   8 · ABOUT SECTION
   ───────────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.9s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }

/* Gold corner accent on image */
.about-media::before {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border-bottom: 3px solid var(--c-gold);
  border-right: 3px solid var(--c-gold);
  border-radius: 0 0 var(--r) 0;
  z-index: 1;
  opacity: 0.6;
  transition: opacity var(--dur);
}
[dir="ltr"] .about-media::before { right: auto; left: -16px; border-right: none; border-left: 3px solid var(--c-gold); border-radius: 0 0 0 var(--r); }
.about-media:hover::before { opacity: 1; }

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  padding: 18px 24px;
  background: rgba(14,27,46,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--c-white-line);
  border-radius: var(--r);
  text-align: center;
  z-index: 2;
}
[dir="ltr"] .about-badge { left: auto; right: 28px; }
.about-badge .badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-gold-light);
  line-height: 1;
  display: block;
}
.about-badge .badge-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* Features list */
.about-features { display: grid; gap: 16px; margin-block: 28px 32px; }
.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--c-gold-pale);
  border-radius: 12px;
  color: var(--c-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.about-feat:hover .feat-icon { background: var(--c-gold); color: #fff; transform: scale(1.08); }
.feat-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--c-navy); }
.feat-text p  { font-size: 0.92rem; margin: 0; color: var(--c-ink-soft); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────
   9 · STATS BAND
   ───────────────────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--c-bg-dark);
  border-block: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid var(--c-white-line);
}
.stat-item {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  text-align: center;
  border-right: 1px solid var(--c-white-line);
  position: relative;
  transition: background var(--dur-fast);
}
[dir="rtl"] .stat-item:last-child,
[dir="ltr"] .stat-item:first-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--g-gold);
  transition: transform var(--dur) var(--ease);
}
.stat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────────────────────
   10 · PROJECTS
   ───────────────────────────────────────────────────────────────────────── */
/* Filter tabs */
.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.flt-btn {
  padding: 10px 24px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-line-strong);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-ink-soft);
  background: transparent;
  transition: all var(--dur-fast);
}
.flt-btn:hover { border-color: var(--c-gold); color: var(--c-gold); background: var(--c-gold-pale); }
.flt-btn.active { background: var(--g-gold); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(184,150,90,0.35); }

/* Cards grid */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

/* Project card */
.proj-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  isolation: isolate;
}
.proj-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.proj-card--wide { grid-column: span 2; }

/* Thumb */
.proj-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.proj-card--tall .proj-thumb { aspect-ratio: 4/5; }
.proj-card--wide .proj-thumb { aspect-ratio: 16/9; }

.proj-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.proj-card:hover .proj-thumb img { transform: scale(1.07); }

/* Overlay on hover */
.proj-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,27,46,0.7) 100%);
  opacity: 0;
  transition: opacity var(--dur);
}
.proj-card:hover .proj-thumb::after { opacity: 1; }

/* Status badge */
.proj-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 2;
}
.badge-active   { background: var(--g-gold); color: #fff; }
.badge-upcoming { background: rgba(14,27,46,0.8); color: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border: 1px solid var(--c-white-line); }
.badge-sold     { background: rgba(60,60,60,0.75); color: rgba(255,255,255,0.7); backdrop-filter: blur(8px); }

/* Proj badge color variants */
.proj-badge         { background: var(--g-gold); color: #fff; }
.proj-badge--com    { background: var(--c-bg-dark); color: rgba(255,255,255,0.9); }
.proj-badge--mix    { background: rgba(14,27,46,0.72); color: rgba(255,255,255,0.9); backdrop-filter:blur(8px); border:1px solid var(--c-white-line); }
.proj-badge--up     { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.3); }

[dir="ltr"] .proj-badge { right: auto; left: 16px; }

/* Project status chips */
.proj-status {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.proj-status--done     { background: #f0fdf4; color: #15803d; }
.proj-status--progress { background: #fffbeb; color: #b45309; }
.proj-status--upcoming { background: var(--c-gold-pale); color: var(--c-gold-deep); }

/* Project card header row */
.proj-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

/* Project description */
.proj-desc {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Project specs row */
.proj-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.proj-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-ink-soft);
}
.proj-specs i { color: var(--c-gold); }

/* Card body */
.proj-body {
  padding: 24px 26px 26px;
  background: var(--c-bg-alt);
  position: relative;
}
.proj-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-cat::before { content: ''; width: 20px; height: 1.5px; background: var(--g-gold); }
.proj-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--dur-fast);
}
.proj-card:hover .proj-title { color: var(--c-gold); }
.proj-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--c-ink-soft);
}
.proj-location i { color: var(--c-gold); font-size: 0.8rem; }
.proj-divider {
  height: 1px;
  background: var(--c-line);
  margin: 14px 0;
}
.proj-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.proj-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-ink-soft);
}
.proj-meta i { color: var(--c-gold); }
.proj-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.proj-arrow-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-gold-pale);
  color: var(--c-gold);
  font-size: 0.9rem;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}
.proj-arrow-btn:hover { background: var(--g-gold); color: #fff; transform: scale(1.1); }

/* ─────────────────────────────────────────────────────────────────────────
   11 · SERVICES
   ───────────────────────────────────────────────────────────────────────── */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.serv-card {
  padding: 40px 32px;
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-line);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-fast), box-shadow var(--dur), transform var(--dur);
}
.serv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
[dir="ltr"] .serv-card::before { transform-origin: left; }
.serv-card:hover { border-color: var(--c-gold-line); box-shadow: var(--sh); transform: translateY(-6px); }
.serv-card:hover::before { transform: scaleX(1); }

.serv-num {
  position: absolute;
  top: 20px; left: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--c-gold-pale);
  line-height: 1;
  pointer-events: none;
  transition: color var(--dur-fast);
}
[dir="ltr"] .serv-num { left: auto; right: 24px; }
.serv-card:hover .serv-num { color: rgba(184,150,90,0.12); }

.serv-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--c-gold-pale);
  border-radius: 14px;
  color: var(--c-gold);
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all var(--dur-fast);
}
.serv-card:hover .serv-icon { background: var(--g-gold); color: #fff; transform: rotate(-6deg) scale(1.05); }
.serv-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--c-navy); }
.serv-card p  { font-size: 0.9rem; color: var(--c-ink-soft); margin-bottom: 20px; line-height: 1.7; }

/* ─────────────────────────────────────────────────────────────────────────
   12 · WHY US
   ───────────────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,90px);
  align-items: center;
}
.why-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.why-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.9s var(--ease);
}
.why-media:hover img { transform: scale(1.04); }

/* Gold frame accent */
.why-media::after {
  content: '';
  position: absolute;
  top: 20px; right: 20px;
  left: -20px; bottom: -20px;
  border: 2px solid var(--c-gold-line);
  border-radius: var(--r-xl);
  pointer-events: none;
  z-index: -1;
  transition: transform var(--dur) var(--ease);
}
[dir="ltr"] .why-media::after { right: -20px; left: 20px; }
.why-media:hover::after { transform: translate(-4px,4px); }

.why-list { display: grid; gap: 18px; margin-top: 36px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--c-line);
  background: var(--c-bg-alt);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.why-item:hover { border-color: var(--c-gold-line); box-shadow: var(--sh-sm); transform: translateX(-4px); }
[dir="ltr"] .why-item:hover { transform: translateX(4px); }
.why-num {
  font-family: var(--f-en);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.why-item h4 { font-size: 1.02rem; margin-bottom: 5px; color: var(--c-navy); }
.why-item p  { font-size: 0.88rem; margin: 0; color: var(--c-ink-soft); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────────────────
   13 · PARTNERS TICKER
   ───────────────────────────────────────────────────────────────────────── */
.partners-wrap {
  overflow: hidden;
  border-block: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.partners-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 48px;
  border-right: 1px solid var(--c-line);
  min-width: 180px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  transition: color var(--dur-fast);
  cursor: default;
}
.partner-item:hover { color: var(--c-gold); }

/* ─────────────────────────────────────────────────────────────────────────
   14 · NEWS / BLOG
   ───────────────────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.news-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.news-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.news-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.news-card:hover .news-thumb img { transform: scale(1.06); }

.news-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.news-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--c-gold-pale);
}
.news-date { font-size: 0.78rem; color: var(--c-muted); }
.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
  line-height: 1.45;
  transition: color var(--dur-fast);
}
.news-card:hover .news-title { color: var(--c-gold); }
.news-excerpt {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.news-footer { margin-top: auto; }

/* ─────────────────────────────────────────────────────────────────────────
   15 · TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────── */
.testi-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.testi-side .big-quote {
  font-size: 8rem;
  line-height: 0.6;
  color: var(--c-gold-pale);
  font-family: var(--f-en);
  margin-bottom: 24px;
}
.bg-navy .testi-side .big-quote { color: rgba(184,150,90,0.2); }

.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 clamp(280px,44%,440px);
  scroll-snap-align: start;
  padding: 32px 34px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-white-line);
  backdrop-filter: blur(12px);
}
.testi-stars { color: var(--c-gold-light); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 14px; }
.testi-text {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold-line);
}
.testi-name { font-weight: 700; color: #fff; font-size: 0.96rem; }
.testi-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Navigation dots */
.testi-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-white-line-s);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.testi-dot.active { width: 24px; border-radius: 4px; background: var(--c-gold); }

/* ─────────────────────────────────────────────────────────────────────────
   16 · CTA BANNER
   ───────────────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: clamp(56px,7vw,100px) 0;
  text-align: center;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.cta-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,27,46,0.94) 0%, rgba(14,27,46,0.8) 100%);
  z-index: -1;
}
.cta-band h2 { font-size: clamp(1.8rem,3.6vw,2.8rem); color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─────────────────────────────────────────────────────────────────────────
   17 · CONTACT SECTION
   ───────────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px,5.5vw,72px);
  align-items: start;
}

.contact-info { display: grid; gap: 16px; }
.cinfo-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--r);
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-line);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.cinfo-card:hover { border-color: var(--c-gold-line); box-shadow: var(--sh-sm); }
.cinfo-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--c-gold-pale);
  color: var(--c-gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.cinfo-label { font-size: 0.78rem; color: var(--c-muted); margin-bottom: 3px; }
.cinfo-value { font-weight: 700; color: var(--c-navy); font-size: 0.96rem; }

/* Form */
.contact-form {
  padding: 40px;
  border-radius: var(--r-xl);
  background: var(--c-bg-alt);
  box-shadow: var(--sh);
  border: 1px solid var(--c-line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.86rem; font-weight: 700; color: var(--c-navy); }
.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-line-strong);
  background: var(--c-bg);
  color: var(--c-navy);
  font-family: var(--f-ui);
  font-size: 0.92rem;
  width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--c-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-bg-alt);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--c-muted); margin-top: 6px; }
.form-status {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  display: none;
  margin-top: 12px;
}
.form-status.success { display: block; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.form-status.error   { display: block; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #dc2626; }

/* Map */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  height: 320px;
  margin-top: 28px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─────────────────────────────────────────────────────────────────────────
   18 · FOOTER
   ───────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(60px,7vw,100px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: clamp(32px,4vw,56px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--c-white-line);
}

.footer-brand { }
.footer-brand .brand { margin-bottom: 18px; display: inline-flex; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub  { color: rgba(255,255,255,0.4); }
.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.58);
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--c-white-line);
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: all var(--dur-fast);
}
.soc-btn:hover { background: var(--g-gold); color: #fff; border-color: transparent; transform: translateY(-3px); }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col h4::after { content: ''; flex: 1; height: 1px; background: var(--c-white-line); }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast), padding-right var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a::before { content: '›'; color: var(--c-gold); opacity: 0; transition: opacity var(--dur-fast), transform var(--dur-fast); transform: translateX(4px); }
.footer-col a:hover { color: var(--c-gold-light); padding-right: 8px; }
[dir="ltr"] .footer-col a:hover { padding-right: 0; padding-left: 8px; }
.footer-col a:hover::before { opacity: 1; transform: translateX(0); }

/* Newsletter */
.footer-nl p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; line-height: 1.7; }
.nl-form { display: flex; gap: 8px; }
.nl-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-white-line-s);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 0.86rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { outline: none; border-color: var(--c-gold); background: rgba(255,255,255,0.1); }
.nl-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--g-gold);
  color: #fff;
  font-size: 1rem;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.nl-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(184,150,90,0.4); }
.nl-status { font-size: 0.78rem; margin-top: 6px; color: rgba(255,255,255,0.5); display: none; }
.nl-status.ok { display: block; color: #86efac; }
.nl-status.err { display: block; color: #fca5a5; }

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 24px 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--dur-fast); }
.footer-bottom a:hover { color: var(--c-gold-light); }
.footer-legal { display: flex; gap: 20px; }

/* Footer logo (image-based) */
.footer-brand .brand-img { margin-bottom: 18px; }
.site-logo-img--footer {
  height: 52px;
  width: auto;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--dur-fast);
}
.site-logo-img--footer:hover { opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────────
   19 · PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-bg-dark);
  padding-top: var(--hdr-h);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,46,0.55) 0%, rgba(14,27,46,0.88) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding-block: 48px 56px;
}
.page-hero-content h1 {
  font-size: clamp(2rem,4.5vw,3.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--c-gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────────────────────────────────────
   20 · ARTICLE CONTENT
   ───────────────────────────────────────────────────────────────────────── */
.article-body {
  max-width: 760px;
  margin-inline: auto;
}
.article-body p { margin-bottom: 22px; font-size: 1.06rem; color: var(--c-ink-soft); line-height: 1.95; }
.article-body h2 { font-size: 1.65rem; margin: 42px 0 16px; color: var(--c-navy); }
.article-body h3 { font-size: 1.28rem; margin: 32px 0 12px; color: var(--c-navy); }
.article-body img { border-radius: var(--r-lg); margin: 30px 0; }
.article-body blockquote {
  border-right: 3px solid var(--c-gold);
  padding-right: 22px;
  margin: 30px 0;
  font-size: 1.18rem;
  color: var(--c-navy);
  font-style: italic;
}
[dir="ltr"] .article-body blockquote { border-right: none; border-left: 3px solid var(--c-gold); padding-right: 0; padding-left: 22px; }

/* ─────────────────────────────────────────────────────────────────────────
   21 · PROJECT DETAIL
   ───────────────────────────────────────────────────────────────────────── */
.pd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-sm); }
.pd-gallery .main { grid-row: 1 / 3; aspect-ratio: 4/5; }
.pd-gallery .sub  { aspect-ratio: 4/3; }

.pd-spec-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.pd-spec {
  background: var(--c-bg-alt);
  padding: 24px;
  text-align: center;
  transition: background var(--dur-fast);
}
.pd-spec:hover { background: var(--c-bg-section); }
.pd-spec-icon { color: var(--c-gold); font-size: 1.2rem; margin-bottom: 8px; }
.pd-spec-val { font-size: 1.18rem; font-weight: 800; color: var(--c-navy); }
.pd-spec-lbl { font-size: 0.78rem; color: var(--c-muted); margin-top: 3px; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
}
.feature-list li i { color: var(--c-gold); flex-shrink: 0; }

/* Pricing sidebar card */
.price-card {
  position: sticky;
  top: calc(var(--hdr-h-sm) + 20px);
  padding: 36px;
  border-radius: var(--r-xl);
  background: var(--c-bg-alt);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-line);
}
.price-card .price-label { font-size: 0.82rem; color: var(--c-muted); margin-bottom: 4px; }
.price-card .price-value {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--c-gold);
  margin-bottom: 24px;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────────────────
   22 · REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────────────────── */
/* تُخفى عناصر الكشف فقط عندما يكون JavaScript نشطاً (html.js-ready).
   إن تعطّل JS لأي سبب، تبقى النصوص ظاهرة ولا تختفي جزئياً أو كلياً. */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}
.js-ready [data-reveal="left"]  { transform: translateX(-40px); }
.js-ready [data-reveal="right"] { transform: translateX(40px); }
.js-ready [data-reveal="scale"] { transform: scale(0.93); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* Image reveal curtain — تظهر الستارة فقط عند تفعيل JS */
.img-reveal { position: relative; overflow: hidden; }
.js-ready .img-reveal::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-bg-section);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
[dir="ltr"] .js-ready .img-reveal::after { transform-origin: right; }
.js-ready .img-reveal.is-visible::after { transform: scaleX(0); }

/* ─────────────────────────────────────────────────────────────────────────
   23 · PAGE HERO — EXTENDED (inner pages v2)
   ───────────────────────────────────────────────────────────────────────── */
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,46,0.52) 0%, rgba(14,27,46,0.86) 100%);
  z-index: 1;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 14px;
}
.page-hero-eyebrow .dash {
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--g-gold);
  border-radius: 2px;
}
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.page-hero-title .gold { color: var(--c-gold-light); }

/* ─────────────────────────────────────────────────────────────────────────
   24 · ABOUT PAGE COMPONENTS
   ───────────────────────────────────────────────────────────────────────── */

/* Section header center variant */
.sec-head--center { text-align: center; }
.sec-head--center .sec-lead { margin-inline: auto; }
.sec-head--center .eyebrow { justify-content: center; }

/* Light text override for dark sections */
.sec-head--light .sec-title { color: #fff; }
.sec-head--light .eyebrow { color: var(--c-gold-light); }

/* VMV (Vision / Mission / Values) cards */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vmv-card {
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  border: 1px solid var(--c-line);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.vmv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
[dir="ltr"] .vmv-card::before { transform-origin: left; }
.vmv-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }
.vmv-card:hover::before { transform: scaleX(1); }
.vmv-card--featured {
  background: var(--c-bg-dark);
  border-color: transparent;
}
.vmv-card--featured .vmv-title { color: #fff; }
.vmv-card--featured .vmv-text { color: rgba(255,255,255,0.70); }
.vmv-card--featured .vmv-icon { background: rgba(184,150,90,0.18); color: var(--c-gold-light); }
.vmv-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: var(--c-gold-pale);
  color: var(--c-gold);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.vmv-card:hover .vmv-icon { transform: scale(1.08); }
.vmv-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 14px;
}
.vmv-text {
  font-size: 0.97rem;
  color: var(--c-ink-soft);
  line-height: 1.85;
  margin: 0;
}

/* Timeline */
.timeline {
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  padding-right: 32px;
}
[dir="ltr"] .timeline { padding-right: 0; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--c-gold-line) 15%, var(--c-gold-line) 85%, transparent);
}
[dir="ltr"] .timeline::before { right: auto; left: 0; }
.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 28px;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-year {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--c-gold);
  text-align: left;
  padding-top: 3px;
  letter-spacing: -0.02em;
}
[dir="ltr"] .tl-year { text-align: right; }
.tl-dot {
  position: absolute;
  top: 6px; right: -37px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-gold-pale);
  border: 2.5px solid var(--c-gold);
  z-index: 1;
}
[dir="ltr"] .tl-dot { right: auto; left: -37px; }
.tl-dot--active { background: var(--c-gold); box-shadow: 0 0 0 4px var(--c-gold-pale); }
.tl-body { padding-bottom: 8px; }
.tl-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.tl-text {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin: 0;
}

/* Why list vertical */
.why-list-v {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-list-v li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  transition: box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.why-list-v li:hover { box-shadow: var(--sh-sm); border-color: var(--c-gold-line); }
.why-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  background: var(--c-gold-pale);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list-v li strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 5px;
}
.why-list-v li p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.7;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }
.team-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.team-card:hover .team-thumb img { transform: scale(1.06); }
.team-body { padding: 20px 22px 24px; }
.team-role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 6px;
}
.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.team-social {
  display: flex;
  gap: 10px;
}
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-bg-section);
  color: var(--c-ink-soft);
  font-size: 0.84rem;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.team-social a:hover { background: var(--c-gold); color: #fff; transform: scale(1.12); }

/* Awards grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-white-line);
  border: 1px solid var(--c-white-line-s);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  background: rgba(255,255,255,0.04);
  transition: background var(--dur-fast);
}
.award-item:hover { background: rgba(255,255,255,0.08); }
.award-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: rgba(184,150,90,0.16);
  color: var(--c-gold-light);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.award-item:hover .award-icon { background: rgba(184,150,90,0.28); transform: scale(1.08); }
.award-body h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.award-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  margin: 0;
  line-height: 1.5;
}

/* CTA Band v2 */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  padding: clamp(56px,8vw,100px) clamp(24px,6vw,80px);
}
.cta-band-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.cta-band:hover .cta-band-bg img { transform: scale(1.04); }
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,27,46,0.88) 0%, rgba(14,27,46,0.72) 100%);
}
.cta-band-content { position: relative; z-index: 2; }
.cta-band-title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-band-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   24b · PROCESS STEPS
   ───────────────────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--c-white-line);
  border: 1px solid var(--c-white-line-s);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.process-step {
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  transition: background var(--dur-fast);
  position: relative;
}
.process-step:hover { background: rgba(255,255,255,0.07); }
.process-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.process-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   25 · SERVICES PAGE COMPONENTS
   ───────────────────────────────────────────────────────────────────────── */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.serv-card {
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.serv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
[dir="ltr"] .serv-card::after { transform-origin: left; }
.serv-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }
.serv-card:hover::after { transform: scaleX(1); }
.serv-icon {
  width: 68px; height: 68px;
  border-radius: var(--r-lg);
  background: var(--c-gold-pale);
  color: var(--c-gold);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.serv-card:hover .serv-icon { background: var(--c-gold); color: #fff; transform: scale(1.08) rotate(-3deg); }
.serv-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.serv-text {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
}
.serv-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.serv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--c-ink-soft);
}
.serv-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   26 · NEWS PAGE COMPONENTS
   ───────────────────────────────────────────────────────────────────────── */
.news-card-v2 {
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.news-card-v2:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.news-thumb-v2 {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.news-thumb-v2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.news-card-v2:hover .news-thumb-v2 img { transform: scale(1.06); }
.news-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--c-gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
[dir="ltr"] .news-tag { right: auto; left: 16px; }
.news-body-v2 {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.news-meta-date, .news-meta-cat {
  font-size: 0.78rem;
  color: var(--c-muted);
  font-weight: 600;
}
.news-meta-cat { color: var(--c-gold); }
.news-title-v2 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.45;
  margin-bottom: 12px;
}
.news-title-v2 a { transition: color var(--dur-fast); }
.news-title-v2 a:hover { color: var(--c-gold); }
.news-excerpt {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.news-card-v2 .link-arrow { margin-top: auto; }

/* ─────────────────────────────────────────────────────────────────────────
   26b · NEWS PAGE EXTRA
   ───────────────────────────────────────────────────────────────────────── */

/* News grid v2 */
.news-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured article */
.news-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: box-shadow var(--dur) var(--ease);
}
.news-featured:hover { box-shadow: var(--sh-lg); }
.news-featured-img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.news-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.news-featured:hover .news-featured-img img { transform: scale(1.04); }
.news-featured-body {
  padding: 36px 40px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
[dir="ltr"] .news-featured-body { padding: 36px 0 36px 40px; }
.news-featured-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.4;
  margin-bottom: 14px;
}
.news-featured-title a { transition: color var(--dur-fast); }
.news-featured-title a:hover { color: var(--c-gold); }
.news-featured-excerpt {
  font-size: 0.96rem;
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-btn {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-line-strong);
  background: var(--c-bg-alt);
  color: var(--c-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast);
  display: grid; place-items: center;
  font-family: var(--f-ui);
}
.page-btn:hover:not(:disabled) { border-color: var(--c-gold); color: var(--c-gold); }
.page-btn--active { background: var(--g-gold); border-color: transparent; color: #fff; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-dots { color: var(--c-muted); font-weight: 700; }

/* Newsletter section */
.nl-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nl-section-form .nl-form {
  max-width: 480px;
}
.nl-section-form .nl-input {
  flex: 1;
  min-width: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   27 · CONTACT PAGE COMPONENTS
   ───────────────────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.cinfo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cinfo-card {
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.cinfo-card:hover { box-shadow: var(--sh-sm); border-color: var(--c-gold-line); }
.cinfo-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-gold-pale);
  color: var(--c-gold);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.cinfo-card:hover .cinfo-icon { background: var(--c-gold); color: #fff; transform: scale(1.08); }
.cinfo-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.cinfo-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 2px;
}
.cinfo-sub {
  font-size: 0.84rem;
  color: var(--c-ink-soft);
  margin: 0;
}
.contact-form-card {
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .field--full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-navy);
}
.field input,
.field select,
.field textarea {
  font-family: var(--f-ui);
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-bg);
  border: 1.5px solid var(--c-line-strong);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px var(--c-gold-pale);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--c-muted); }
.field textarea { resize: vertical; min-height: 130px; }
.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  display: none;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.form-status.ok  { display: block; background: #f0fdf4; color: #15803d; }
.form-status.err { display: block; background: #fef2f2; color: #dc2626; }

/* ─────────────────────────────────────────────────────────────────────────
   28 · PROJECT DETAILS v2
   ───────────────────────────────────────────────────────────────────────── */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.pd-gallery-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pd-gallery-v2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-sm);
  transition: transform var(--dur-slow) var(--ease);
  cursor: zoom-in;
}
.pd-gallery-v2 img:hover { transform: scale(1.03); }
.pd-gallery-v2 .pd-main-img {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.pd-gallery-v2 .pd-sub-img { aspect-ratio: 4/3; }

/* ─────────────────────────────────────────────────────────────────────────
   28b · ARTICLE TAGS AND META
   ───────────────────────────────────────────────────────────────────────── */
.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.article-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-gold-pale);
  color: var(--c-gold);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 2px;
}
.author-date { font-size: 0.8rem; color: var(--c-muted); }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--c-gold-pale);
  color: var(--c-gold-deep);
  transition: background var(--dur-fast), color var(--dur-fast);
}
a.article-tag:hover { background: var(--c-gold); color: #fff; }

/* Article lead paragraph */
.article-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.9;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
}

/* ─────────────────────────────────────────────────────────────────────────
   29 · ARTICLE v2
   ───────────────────────────────────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-sidebar {
  position: sticky;
  top: calc(var(--hdr-h-sm) + 24px);
}
.sidebar-card {
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.sidebar-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.recent-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-img {
  width: 72px; height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--dur-fast);
}
.recent-post a:hover .recent-post-title { color: var(--c-gold); }
.recent-post-date { font-size: 0.76rem; color: var(--c-muted); }

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.share-bar-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-navy);
  white-space: nowrap;
}
.share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-bg-section);
  color: var(--c-ink-soft);
  font-size: 0.9rem;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.share-btn:hover { background: var(--c-gold); color: #fff; transform: scale(1.1); }

/* Back to top */
.to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--g-gold);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1rem;
  z-index: 400;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: all var(--dur-fast) var(--ease);
  pointer-events: none;
  box-shadow: var(--sh-gold);
}
[dir="ltr"] .to-top { right: auto; left: 30px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.06); }


/* ═══════════ إضافات النظام الديناميكي (Dynamic System Additions) ═══════════ */
/* معلومات التواصل في الفوتر */
.footer-contact{list-style:none;margin:22px 0 0;padding:0;display:flex;flex-direction:column;gap:12px}
.footer-contact li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.75);font-size:.9rem}
.footer-contact li i{color:var(--c-gold);width:18px;text-align:center}
.footer-contact a{color:rgba(255,255,255,.75);text-decoration:none;transition:color .25s}
.footer-contact a:hover{color:var(--c-gold)}

/* زر الواتساب العائم */
.wa-float{position:fixed;bottom:26px;right:26px;z-index:60;width:56px;height:56px;border-radius:50%;
  background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.6rem;
  box-shadow:0 8px 24px rgba(37,211,102,.4);text-decoration:none;transition:transform .25s,box-shadow .25s}
.wa-float:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 12px 30px rgba(37,211,102,.55)}
@media(max-width:600px){.wa-float{width:50px;height:50px;font-size:1.4rem;bottom:20px;right:18px}
  .to-top{bottom:84px !important}}

/* تنبيهات الموقع العام (رسائل النجاح/الخطأ) */
.site-alert{max-width:1200px;margin:20px auto;padding:14px 20px;border-radius:12px;display:flex;
  align-items:center;gap:12px;font-weight:600;animation:fadeIn .4s}
.site-alert-success{background:#e8f5e9;color:#2e7d32;border:1px solid #a5d6a7}
.site-alert-error{background:#fdecea;color:#c62828;border:1px solid #f5b7b1}
