/* ════════════════════════════════════════════════
   DESIGN TOKENS — Premium Real Estate System
   ════════════════════════════════════════════════ */
:root {
  /* Brand colors */
  --c-primary: #0D7A63;
  --c-primary-dark: #065B48;
  --c-primary-darker: #043A2E;
  --c-primary-light: #14A37F;
  --c-primary-soft: rgba(13, 122, 99, 0.10);
  --c-primary-glow: rgba(13, 122, 99, 0.25);

  /* Gold */
  --c-gold: #C9A961;
  --c-gold-dark: #9F8444;
  --c-gold-light: #E0C77B;
  --c-gold-soft: rgba(201, 169, 97, 0.15);

  /* Neutrals */
  --c-white: #ffffff;
  --c-warm: #FAF8F4;
  --c-bg: #F5F4F2;
  --c-bg-2: #EFEDE9;
  --c-border: #E5E2DC;
  --c-border-light: #F0EEEA;

  /* Text */
  --c-text: #1A1F2C;
  --c-text-2: #4A5160;
  --c-text-3: #8B8F99;
  --c-text-muted: #A8ADBA;

  /* Accent */
  --c-beige: #E8DFD1;
  --c-cream: #F4EFE3;
  --c-charcoal: #1A1F2C;

  /* Status */
  --c-success: #14B870;
  --c-error: #E0455C;
  --c-warning: #F5A623;

  /* Gradients */
  --g-primary: linear-gradient(135deg, #0D7A63 0%, #065B48 100%);
  --g-primary-soft: linear-gradient(135deg, rgba(13, 122, 99, 0.08) 0%, rgba(6, 91, 72, 0.04) 100%);
  --g-gold: linear-gradient(135deg, #E0C77B 0%, #C9A961 50%, #9F8444 100%);
  --g-hero: linear-gradient(135deg, rgba(4, 58, 46, 0.95) 0%, rgba(13, 122, 99, 0.75) 50%, rgba(4, 58, 46, 0.6) 100%);
  --g-card-hover: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(13, 122, 99, 0.04) 100%);

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --sh-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --sh-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --sh-lg: 0 14px 38px rgba(15, 23, 42, 0.10);
  --sh-xl: 0 24px 60px rgba(15, 23, 42, 0.14);
  --sh-gold: 0 8px 24px rgba(201, 169, 97, 0.20);
  --sh-primary: 0 14px 38px rgba(13, 122, 99, 0.22);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  /* Fluid section rhythm: consistent vertical breathing room across
     mobile / tablet / desktop. Edit here to retune the whole site. */
  --section-py: var(--s-16);  /* 64px — mobile */

  /* Layout */
  --max-w: 82rem;
  --hdr-h: 72px;
  --tb-h: 36px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.2s;
  --t-base: 0.3s;
  --t-slow: 0.5s;

  /* Type */
  --f-cairo: 'Cairo', system-ui, -apple-system, sans-serif;
  --f-tajawal: 'Tajawal', 'Cairo', system-ui, sans-serif;
}

/* ════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-cairo);
  background: var(--c-bg);
  color: var(--c-text);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
body ::selection { background: var(--c-primary); color: var(--c-white); }
img, svg, video { max-width: 100%; display: block; }
button, a, input, textarea, select { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }
input, textarea, select { font-family: inherit; cursor: text; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-tajawal); font-weight: 800; line-height: 1.25; color: var(--c-text); }
hr { border: 0; border-top: 1px solid var(--c-border); }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; right: 0;
  background: var(--c-primary); color: #fff;
  padding: var(--s-2) var(--s-4); z-index: 9999; font-weight: 700;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-primary-soft); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-primary); }

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@keyframes zoomBg { from { transform: scale(1.04); } to { transform: scale(1.14); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bounceY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slideDown { from { max-height: 0; opacity: 0; } to { max-height: 600px; opacity: 1; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(13, 122, 99, 0.45); } 50% { box-shadow: 0 0 0 16px rgba(13, 122, 99, 0); } }
@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
@keyframes floatShape { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(20px, -20px) rotate(8deg); } 66% { transform: translate(-15px, 15px) rotate(-6deg); } }
@keyframes scrollIndicator { 0% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.5; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes ripple { to { transform: scale(2.4); opacity: 0; } }
@keyframes typewriter { from { width: 0; } to { width: 100%; } }

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(30px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(-30px); }
[data-reveal="right"].is-visible { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal="zoom"].is-visible { transform: scale(1); }
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }

/* ════════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-6); }
@media (min-width: 768px)  { :root { --section-py: var(--s-20); } } /* 80px — tablet */
@media (min-width: 1024px) { :root { --section-py: var(--s-24); } } /* 96px — desktop */
.section { padding: var(--section-py) 0; position: relative; }
.section--tight { padding: var(--s-12) 0; }
@media (min-width: 768px) { .section--tight { padding: var(--s-16) 0; } }
.section--bg { background: var(--c-warm); }
.section--dark { background: var(--c-primary-darker); color: #fff; }
.section-header { text-align: center; max-width: 44rem; margin: 0 auto var(--s-12); display: flex; flex-direction: column; align-items: center; gap: var(--s-4); }
.section-header--left { text-align: right; margin-right: 0; margin-left: auto; align-items: flex-end; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-8); border-radius: var(--r-md);
  font-family: var(--f-cairo); font-size: 14px; font-weight: 700;
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap; user-select: none; position: relative; overflow: hidden;
}
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: var(--sh-primary); }
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 18px 42px rgba(13, 122, 99, 0.32); }
.btn--primary:active { transform: translateY(0) scale(0.97); }
.btn--gold { background: var(--g-gold); color: var(--c-charcoal); box-shadow: var(--sh-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 169, 97, 0.4); }
.btn--gold:active { transform: scale(0.97); }
.btn--outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.1); color: #fff; backdrop-filter: blur(10px); border-color: rgba(255,255,255,0.3); }
.btn--ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--c-primary); }
.btn--light:hover { background: var(--c-warm); transform: translateY(-2px); }
.btn--sm { padding: var(--s-2) var(--s-5); font-size: 12px; }
.btn--lg { padding: var(--s-4) var(--s-10); font-size: 15px; }
.btn--block { width: 100%; }

/* Ripple effect */
.btn .ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  animation: ripple 0.6s linear; background: rgba(255,255,255,0.5);
  pointer-events: none;
}

/* Eyebrow / Tag */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-4); background: var(--c-primary-soft); color: var(--c-primary);
  font-size: 12px; font-weight: 700; border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.eyebrow--gold { background: var(--c-gold-soft); color: var(--c-gold-dark); }
.eyebrow--dark { background: rgba(255,255,255,0.1); color: #fff; backdrop-filter: blur(10px); }

/* Section Heading */
.sec-title {
  font-family: var(--f-tajawal);
  font-size: 30px; font-weight: 800;
  color: var(--c-text); line-height: 1.25;
}
@media (min-width: 768px) { .sec-title { font-size: 38px; } }
@media (min-width: 1280px) { .sec-title { font-size: 44px; } }
.sec-subtitle {
  font-size: 15px; color: var(--c-text-2); line-height: 1.85; font-weight: 400;
}
@media (min-width: 768px) { .sec-subtitle { font-size: 16px; } }
.sec-divider { width: 64px; height: 4px; background: var(--g-gold); border-radius: 4px; }

/* ════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════ */
.topbar {
  width: 100%;
  background: linear-gradient(90deg, #021f18 0%, #043A2E 40%, #065B48 70%, #043A2E 100%);
  color: #fff; padding: var(--s-2) var(--s-6); font-size: 12px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-2); position: relative; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: var(--s-2); transition: color var(--t-fast); }
.topbar a:hover { color: var(--c-gold-light); }
.topbar__social { display: flex; align-items: center; gap: var(--s-3); }
.topbar__social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.topbar__social a:hover { background: var(--c-gold); color: var(--c-charcoal); transform: translateY(-1px); }
.topbar__sep { color: rgba(255,255,255,0.3); }
.topbar__lang { display: inline-flex; align-items: center; gap: var(--s-2); cursor: pointer; padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); transition: all var(--t-fast); font-size: 11px; font-weight: 600; }
.topbar__lang:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-charcoal); }
@media (max-width: 640px) {
  .topbar__left .topbar__sep, .topbar__left .topbar__lang { display: none; }
}

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.header-spacer { display: none; height: calc(var(--hdr-h) + var(--tb-h)); }
.header {
  width: 100%; background: rgba(255,255,255,0.85); backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
  padding: var(--s-4) 0; position: sticky; top: 0; z-index: 40;
}
.header.is-sticky {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border);
  box-shadow: var(--sh-sm);
  padding: var(--s-3) 0;
}
.header__inner {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-5);
}
.brand { display: flex; align-items: center; gap: var(--s-3); cursor: pointer; transition: opacity var(--t-fast); }
.brand:hover { opacity: 0.85; }
.brand__logo { height: 42px; width: auto; flex-shrink: 0; }
.brand__text { display: none; flex-direction: column; }
@media (min-width: 768px) { .brand__text { display: flex; } }
.brand__ar { font-family: var(--f-tajawal); font-weight: 800; font-size: 18px; color: var(--c-primary); line-height: 1; transition: color var(--t-fast); }
.brand:hover .brand__ar { color: var(--c-primary-dark); }
.brand__en { font-size: 10px; color: var(--c-text-3); letter-spacing: 0.24em; margin-top: var(--s-1); }

.nav { display: none; align-items: center; gap: var(--s-8); }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav__item {
  background: none; border: none; padding: var(--s-2) 0;
  font-family: var(--f-cairo); font-size: 14px; font-weight: 600; color: var(--c-text-2);
  position: relative; transition: color var(--t-fast);
}
.nav__item::after {
  content: ''; position: absolute; bottom: -2px; right: 50%; left: 50%;
  height: 2px; background: var(--g-gold);
  transition: all var(--t-base) var(--ease);
}
.nav__item:hover, .nav__item.is-active { color: var(--c-primary); }
.nav__item:hover::after, .nav__item.is-active::after { right: 0; left: 0; }

.header__actions { display: flex; align-items: center; gap: var(--s-3); }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }
.menu-toggle {
  display: inline-flex; background: none; border: 1px solid var(--c-border);
  padding: var(--s-2); color: var(--c-text); border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.menu-toggle:hover { background: var(--c-warm); color: var(--c-primary); border-color: var(--c-primary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* ════════════════════════════════════════════════
   MOBILE DRAWER
   ════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 60;
  opacity: 0; visibility: hidden; transition: all var(--t-base);
  backdrop-filter: blur(4px);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0; width: min(320px, 86vw); height: 100vh;
  background: #fff; padding: var(--s-6);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  display: flex; flex-direction: column; gap: var(--s-6);
  transform: translateX(-100%);
  transition: transform var(--t-slow) var(--ease-out);
  z-index: 61; overflow-y: auto;
}
.drawer-overlay.is-open .drawer { transform: translateX(0); }
.drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: var(--s-5); border-bottom: 1px solid var(--c-border);
}
.drawer__close {
  background: none; border: none; padding: var(--s-2); border-radius: 50%;
  color: var(--c-text-2); transition: all var(--t-fast);
}
.drawer__close:hover { background: var(--c-bg); color: var(--c-primary); }
.drawer__nav { display: flex; flex-direction: column; gap: var(--s-1); }
.drawer__nav-item {
  background: none; border: none; text-align: right;
  padding: var(--s-3) var(--s-4); border-radius: var(--r-md);
  font-family: var(--f-cairo); font-size: 15px; font-weight: 700; color: var(--c-text);
  transition: all var(--t-fast); width: 100%;
}
.drawer__nav-item:hover, .drawer__nav-item.is-active { background: var(--c-primary-soft); color: var(--c-primary); }
.drawer__footer {
  margin-top: auto; padding-top: var(--s-5); border-top: 1px solid var(--c-border);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.drawer__phone {
  text-align: center; font-size: 12px; color: var(--c-text-2);
}
.drawer__phone strong { color: var(--c-primary); font-size: 14px; }

/* ════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; min-height: 720px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-primary-darker);
}
@media (min-width: 768px) { .hero { min-height: 820px; } }
@media (min-width: 1280px) { .hero { min-height: 880px; } }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; animation: zoomBg 50s infinite alternate ease-in-out; will-change: transform; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(255, 255, 255, 0.2); }
.hero__shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero__shape { position: absolute; border-radius: 50%; opacity: 0.18; animation: floatShape 14s infinite ease-in-out; }
.hero__shape--1 { width: 320px; height: 320px; background: var(--c-gold); top: -120px; right: -80px; }
.hero__shape--2 { width: 200px; height: 200px; background: var(--c-primary-light); bottom: -60px; left: -40px; animation-delay: 4s; }
.hero__shape--3 { width: 140px; height: 140px; background: var(--c-gold-light); top: 40%; left: 12%; animation-delay: 8s; }
.hero__inner {
  position: relative; z-index: 5;
  max-width: 60rem; margin: 0 auto; padding: var(--s-16) var(--s-6);
  text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-6);
}
.hero__brand {
  animation: fadeInUp 0.7s var(--ease-out) 0.1s both;
  display: flex; flex-direction: column; align-items: center; user-select: none;
  transition: transform var(--t-slow) var(--ease-out);
}
.hero__brand:hover { transform: scale(1.04); }
.hero__brand-logo { height: 130px; width: auto; }
@media (max-width: 640px) { .hero__brand-logo { height: 90px; } }
.hero__brand-ar { font-family: var(--f-tajawal); font-weight: 800; font-size: 24px; color: #fff; letter-spacing: 0.04em; margin-top: var(--s-2); }
.hero__brand-en { font-family: var(--f-cairo); font-weight: 400; font-size: 13px; letter-spacing: 0.28em; color: var(--c-gold-light); margin-top: var(--s-1); }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.22);
  animation: fadeInUp 0.7s var(--ease-out) 0.2s both;
  font-size: 13px; font-weight: 600;
}
.hero__badge svg { color: var(--c-gold-light); }
.hero__title {
  font-family: var(--f-tajawal);
  font-size: 36px; font-weight: 900; line-height: 1.18;
  max-width: 56rem;
  animation: fadeInUp 0.7s var(--ease-out) 0.3s both;
}
@media (min-width: 768px) { .hero__title { font-size: 56px; } }
@media (min-width: 1280px) { .hero__title { font-size: 64px; } }
.hero__title .hl { color: var(--c-gold-light); position: relative; display: inline-block; }
.hero__title .hl::after {
  content: ''; position: absolute; bottom: -6px; right: 0; left: 0;
  height: 3px; background: var(--c-gold);
  transform-origin: right; animation: scaleIn 1s var(--ease-out) 1s both;
}
.hero__lead {
  font-size: 15px; color: rgba(255,255,255,0.92);
  max-width: 46rem; line-height: 1.85; font-weight: 400;
  animation: fadeInUp 0.7s var(--ease-out) 0.4s both;
}
@media (min-width: 768px) { .hero__lead { font-size: 17px; } }
.hero__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s-4); padding-top: var(--s-4);
  animation: fadeInUp 0.7s var(--ease-out) 0.5s both;
}
.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5);
  width: 100%; max-width: 56rem; margin-top: var(--s-10);
  animation: fadeInUp 0.7s var(--ease-out) 0.7s both;
}
@media (min-width: 768px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat {
  padding: var(--s-5) var(--s-5);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: var(--s-2);
  transition: all var(--t-base);
}
.hero-stat:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); border-color: rgba(201, 169, 97, 0.4); }
.hero-stat__num { font-family: var(--f-tajawal); font-size: 32px; font-weight: 900; color: var(--c-gold-light); line-height: 1; }
.hero-stat__label { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero__scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
  color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.2s both, scrollIndicator 2.5s infinite ease-in-out 1.5s;
}
.hero__scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px; position: relative; display: flex; justify-content: center; padding-top: var(--s-2);
}
.hero__scroll-mouse::before {
  content: ''; width: 3px; height: 6px; background: rgba(255,255,255,0.7);
  border-radius: 2px; animation: scrollIndicator 1.8s infinite ease-in-out;
}
.hero__wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--c-bg), transparent);
  z-index: 10;
}

/* Floating action buttons (FAB) */
.fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 35;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.fab__btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all var(--t-base);
}
.fab__btn:hover { transform: scale(1.08); }
.fab__btn:active { transform: scale(0.92); }
.fab__btn--whatsapp { background: #25D366; }
.fab__btn--phone { background: var(--c-primary); }
.fab__btn--top { background: var(--c-gold); color: var(--c-charcoal); opacity: 0; transform: translateY(14px); pointer-events: none; transition: all var(--t-base); }
.fab__btn--top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ════════════════════════════════════════════════
   VIEWS
   ════════════════════════════════════════════════ */
.view { display: none; }
.view.is-active { display: block; animation: fadeIn var(--t-base) var(--ease); }

/* ════════════════════════════════════════════════
   ABOUT / WHY CHOOSE US
   ════════════════════════════════════════════════ */
.about { background: #fff; }
.about__intro { display: grid; grid-template-columns: 1fr; gap: var(--s-12); align-items: center; margin-bottom: var(--s-20); }
@media (min-width: 1024px) { .about__intro { grid-template-columns: 7fr 5fr; gap: var(--s-16); } }
.about__content { display: flex; flex-direction: column; gap: var(--s-5); }
.about__text { font-size: 15px; color: var(--c-text-2); line-height: 1.95; font-weight: 400; }
.about__features {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-4);
}
@media (min-width: 640px) { .about__features { grid-template-columns: 1fr 1fr; } }
.about-feature {
  display: flex; gap: var(--s-3); padding: var(--s-4);
  border-radius: var(--r-md); border: 1px solid var(--c-border);
  background: #fff; transition: all var(--t-base);
}
.about-feature:hover { border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.about-feature__icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--c-primary-soft); color: var(--c-primary);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
}
.about-feature__title { font-weight: 700; font-size: 14px; color: var(--c-text); margin-bottom: var(--s-1); }
.about-feature__desc { font-size: 12px; color: var(--c-text-3); line-height: 1.65; font-weight: 400; }
.about__image {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl); aspect-ratio: 4/5;
}
.about__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.about__image:hover img { transform: scale(1.06); }
.about__image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,58,46,0.6)); }
.about__image-caption {
  position: absolute; bottom: 18px; right: 18px; left: 18px;
  padding: var(--s-4) var(--s-4); background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-radius: var(--r-md); box-shadow: var(--sh-md);
}
.about__image-caption strong { display: block; font-weight: 700; font-size: 14px; color: var(--c-primary); }
.about__image-caption span { display: block; font-size: 12px; color: var(--c-text-3); margin-top: var(--s-1); }
.about__blob {
  position: absolute; width: 140px; height: 140px;
  background: var(--c-primary-soft); border-radius: 50%;
  filter: blur(28px); z-index: -1;
}
.about__blob--1 { top: -22px; left: -22px; }
.about__blob--2 { bottom: -22px; right: -22px; background: var(--c-gold-soft); }

.about__vision {
  padding: var(--s-6); background: var(--c-warm);
  border-right: 4px solid var(--c-primary); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about__vision-title { font-weight: 700; font-size: 16px; color: var(--c-primary); display: flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-3); }
.about__vision-text { font-size: 14px; color: var(--c-text-2); line-height: 1.85; font-weight: 400; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-4); }
.stat-card {
  padding: var(--s-5); background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); text-align: center; box-shadow: var(--sh-xs);
  transition: all var(--t-base);
}
.stat-card:hover { border-color: var(--c-primary); transform: translateY(-3px); box-shadow: var(--sh-md); }
.stat-card__num { display: block; font-family: var(--f-tajawal); font-size: 28px; font-weight: 900; color: var(--c-primary); line-height: 1; }
.stat-card__label { display: block; font-size: 11px; color: var(--c-text-3); margin-top: var(--s-2); }

/* ════════════════════════════════════════════════
   COMPANY NUMBERS / COUNTERS
   ════════════════════════════════════════════════ */
.counters {
  position: relative; padding: var(--section-py) 0;
  background: var(--c-primary-darker); color: #fff; overflow: hidden;
}
.counters__bg { position: absolute; inset: 0; opacity: 0.06; }
.counters__bg svg { width: 100%; height: 100%; }
.counters__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); position: relative; z-index: 1; }
@media (min-width: 768px) { .counters__grid { grid-template-columns: repeat(4, 1fr); } }
.counter { text-align: center; padding: var(--s-6) var(--s-4); position: relative; }
.counter::after {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: rgba(255,255,255,0.12);
}
.counter:first-child::after { display: none; }
@media (max-width: 767px) { .counter::after { display: none; } }
.counter__icon { width: 56px; height: 56px; margin: 0 auto var(--s-4); background: var(--c-gold-soft); color: var(--c-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.counter__num { font-family: var(--f-tajawal); font-size: 48px; font-weight: 900; color: var(--c-gold-light); line-height: 1; }
@media (min-width: 768px) { .counter__num { font-size: 56px; } }
.counter__suffix { color: var(--c-gold-light); }
.counter__label { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: var(--s-3); font-weight: 500; }

/* ════════════════════════════════════════════════
   SERVICES GRID
   ════════════════════════════════════════════════ */
.services { background: var(--c-bg); }
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-8);
}
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--c-border);
  display: flex; flex-direction: column; cursor: pointer;
  transition: all var(--t-slow) var(--ease);
  position: relative;
}
.svc-card:hover {
  box-shadow: var(--sh-xl); transform: translateY(-8px);
  border-color: transparent;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--g-primary); opacity: 0;
  transition: opacity var(--t-base); z-index: 0; pointer-events: none;
}
.svc-card__image {
  position: relative; height: 240px; overflow: hidden;
}
.svc-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.svc-card:hover .svc-card__image img { transform: scale(1.08); }
.svc-card__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,58,46,0.6));
}
.svc-card__icon {
  position: absolute; bottom: 16px; right: 16px;
  width: 52px; height: 52px;
  background: var(--c-primary); color: #fff;
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-primary); transition: all var(--t-base);
}
.svc-card:hover .svc-card__icon { background: var(--c-gold); color: var(--c-charcoal); transform: rotate(6deg); }
.svc-card__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex-grow: 1; position: relative; z-index: 1; }
.svc-card__title {
  font-family: var(--f-tajawal); font-size: 19px; font-weight: 800;
  color: var(--c-text); transition: color var(--t-base);
}
.svc-card:hover .svc-card__title { color: var(--c-primary); }
.svc-card__desc { font-size: 13px; color: var(--c-text-2); line-height: 1.85; font-weight: 400; flex-grow: 1; }
.svc-card__more {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 12px; font-weight: 700; color: var(--c-primary);
  padding-top: var(--s-3); border-top: 1px solid var(--c-border);
  transition: all var(--t-base);
}
.svc-card__more svg { transition: transform var(--t-base); }
.svc-card:hover .svc-card__more { color: var(--c-primary-dark); }
.svc-card:hover .svc-card__more svg { transform: translateX(-4px); }

/* ════════════════════════════════════════════════
   FEATURED PROJECTS
   ════════════════════════════════════════════════ */
.projects__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-8);
}
@media (min-width: 768px) { .projects__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .projects__grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--c-primary-darker);
  box-shadow: var(--sh-md); aspect-ratio: 4/5;
  cursor: pointer; transition: all var(--t-slow) var(--ease);
}
@media (min-width: 768px) { .project-card { aspect-ratio: 3/4; } }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.project-card__image { position: absolute; inset: 0; }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.project-card:hover .project-card__image img { transform: scale(1.08); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,58,46,0.92));
  transition: opacity var(--t-base);
}
.project-card__badge {
  position: absolute; top: 16px; right: 16px;
  padding: var(--s-2) var(--s-4); background: var(--c-gold); color: var(--c-charcoal);
  font-size: 11px; font-weight: 800; border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}
.project-card__badge--alt { left: 16px; right: auto; background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.project-card__body {
  position: absolute; bottom: 0; right: 0; left: 0;
  padding: var(--s-6); color: #fff;
  transform: translateY(20px); transition: transform var(--t-slow) var(--ease-out);
}
.project-card:hover .project-card__body { transform: translateY(0); }
.project-card__type { font-size: 11px; color: var(--c-gold-light); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: var(--s-2); }
.project-card__title { color: white; font-family: var(--f-tajawal); font-size: 22px; font-weight: 800; margin-bottom: var(--s-2); }
.project-card__desc { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: var(--s-4); }
.project-card__meta { display: flex; gap: var(--s-4); font-size: 11px; color: rgba(255,255,255,0.7); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.15); opacity: 0; transform: translateY(10px); transition: all var(--t-slow) var(--ease-out) 0.1s; }
.project-card:hover .project-card__meta { opacity: 1; transform: translateY(0); }
.project-card__meta-item { display: flex; align-items: center; gap: var(--s-1); }
.project-card__view {
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: var(--c-gold); color: var(--c-charcoal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%) scale(0.5); opacity: 0;
  transition: all var(--t-slow) var(--ease-out);
  box-shadow: var(--sh-gold);
}
.project-card:hover .project-card__view { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ════════════════════════════════════════════════
   MASTER PLAN
   ════════════════════════════════════════════════ */
.masterplan {
  background: linear-gradient(180deg, var(--c-primary-darker) 0%, var(--c-charcoal) 100%);
  color: #fff; padding: var(--section-py) 0; position: relative; overflow: hidden;
}
.masterplan__bg-shapes { position: absolute; inset: 0; opacity: 0.06; }
.masterplan__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-12); align-items: center; }
@media (min-width: 1024px) { .masterplan__inner { grid-template-columns: 1fr 1fr; gap: var(--s-16); } }
.masterplan__content { color: #fff; }
.masterplan__content .sec-title { color: #fff; }
.masterplan__content .sec-subtitle { color: rgba(255,255,255,0.85); }
.masterplan__features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-8); }
.masterplan-feature {
  padding: var(--s-4); background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md);
}
.masterplan-feature__title { font-weight: 700; font-size: 14px; color: var(--c-gold-light); margin-bottom: var(--s-1); }
.masterplan-feature__desc { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.masterplan__viewer {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: rgba(255,255,255,0.05); padding: var(--s-4);
  box-shadow: var(--sh-xl); border: 1px solid rgba(255,255,255,0.1);
}
.mp-toolbar {
  position: absolute; top: 28px; left: 28px; z-index: 6;
  display: flex; flex-direction: column; gap: var(--s-2);
}
.mp-btn {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.92); color: var(--c-charcoal);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--sh-sm);
  transition: all var(--t-fast);
}
.mp-btn:hover { background: var(--c-gold); color: var(--c-charcoal); transform: translateY(-1px); }
.mp-btn:active { transform: scale(0.94); }
.mp-hint {
  position: absolute; top: 28px; right: 28px; z-index: 6;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px); color: #fff;
  font-size: 11px; font-weight: 600; padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill); max-width: 220px; line-height: 1.5;
  opacity: 0.9; pointer-events: none; transition: opacity var(--t-base);
}
@media (max-width: 640px) { .mp-hint { display: none; } }
.mp-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/10; cursor: grab; touch-action: none;
  background: var(--c-primary-darker);
}
.mp-frame.is-dragging { cursor: grabbing; }
.mp-stage {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform-origin: center center; will-change: transform;
  transition: transform 0.45s var(--ease-out);
}
.mp-frame.is-dragging .mp-stage { transition: none; }
.mp-stage img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.masterplan__hotspots { position: absolute; inset: 0; }
.hotspot {
  position: absolute; width: 30px; height: 30px;
  background: var(--c-gold); color: var(--c-charcoal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  animation: pulse 2.5s infinite;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  transform: translate(50%, -50%);
}
.hotspot__pin { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.hotspot:hover, .hotspot:focus-visible { animation-play-state: paused; transform: translate(50%, -50%) scale(1.25); box-shadow: 0 8px 22px rgba(0,0,0,0.45); }
.hotspot.is-active { background: var(--c-white); box-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 8px 22px rgba(0,0,0,0.45); }
/* status-tinted pins, assigned by JS from tower data */
.hotspot--done { background: var(--c-success); }
.hotspot--progress { background: var(--c-warning); }
.hotspot--soon { background: var(--c-text-3); }
.hotspot--elite { background: var(--g-gold); }
.hotspot__tooltip {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  background: #fff; color: var(--c-text); padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm); font-size: 12px; font-weight: 700;
  opacity: 0; pointer-events: none; transition: opacity var(--t-base);
  box-shadow: var(--sh-md);
}
.hotspot__tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #fff;
}
.hotspot:hover .hotspot__tooltip, .hotspot:focus-visible .hotspot__tooltip { opacity: 1; }
.mp-legend {
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: center;
  margin-top: var(--s-4); font-size: 12px; color: rgba(255,255,255,0.75);
}
.mp-legend span { display: inline-flex; align-items: center; gap: var(--s-2); }
.mp-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.mp-dot--done { background: var(--c-success); }
.mp-dot--prog { background: var(--c-warning); }
.mp-dot--soon { background: var(--c-text-3); }

/* ════════════════════════════════════════════════
   LIFESTYLE
   ════════════════════════════════════════════════ */
.lifestyle__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5);
}
@media (min-width: 768px) { .lifestyle__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; } }
.lifestyle-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: all var(--t-slow) var(--ease);
}
@media (min-width: 768px) {
  .lifestyle-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .lifestyle-item:nth-child(2) { grid-column: span 2; }
  .lifestyle-item:nth-child(3) { grid-column: span 2; }
  .lifestyle-item:nth-child(4) { grid-column: span 2; }
  .lifestyle-item:nth-child(5) { grid-column: span 2; }
  .lifestyle-item:nth-child(6) { grid-column: span 2; }
}
.lifestyle-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.lifestyle-item:hover img { transform: scale(1.08); }
.lifestyle-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,58,46,0.85));
  display: flex; align-items: flex-end; padding: var(--s-5);
}
.lifestyle-item__title { color: #fff; font-family: var(--f-tajawal); font-size: 18px; font-weight: 800; }
.lifestyle-item__icon {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(10px);
  color: var(--c-gold-light); display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════════
   PAYMENT PLANS
   ════════════════════════════════════════════════ */
.payment { background: var(--c-warm); }
.plans { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
@media (min-width: 768px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan-card {
  background: #fff; border-radius: var(--r-xl); padding: var(--s-8) var(--s-8);
  border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: var(--s-5); position: relative;
  transition: all var(--t-slow) var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.plan-card--featured {
  border: 2px solid var(--c-gold);
  background: linear-gradient(180deg, #fff 0%, rgba(244, 239, 227, 0.5) 100%);
}
.plan-card--featured::before {
  content: 'الأكثر طلباً';
  position: absolute; top: -14px; right: 24px;
  background: var(--g-gold); color: var(--c-charcoal);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800; box-shadow: var(--sh-gold);
}
.plan-card__title { font-family: var(--f-tajawal); font-size: 22px; font-weight: 800; color: var(--c-text); }
.plan-card__price { display: flex; align-items: baseline; gap: var(--s-2); padding: var(--s-4) 0; border-bottom: 1px solid var(--c-border); }
.plan-card__price-num { font-family: var(--f-tajawal); font-size: 36px; font-weight: 900; color: var(--c-primary); line-height: 1; }
.plan-card__price-period { font-size: 13px; color: var(--c-text-3); }
.plan-card__list { display: flex; flex-direction: column; gap: var(--s-3); flex-grow: 1; }
.plan-card__list-item { display: flex; gap: var(--s-2); align-items: flex-start; font-size: 13px; color: var(--c-text-2); line-height: 1.7; }
.plan-card__list-item svg { color: var(--c-primary); flex-shrink: 0; margin-top: var(--s-1); }
.plan-card__progress { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-2); }
.plan-card__progress-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--c-text-3); }
.plan-card__progress-bar { height: 6px; background: var(--c-bg-2); border-radius: var(--r-pill); overflow: hidden; }
.plan-card__progress-fill { height: 100%; background: var(--g-primary); border-radius: var(--r-pill); transition: width 1.5s var(--ease-out); width: 0; }

/* ════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════ */
.testimonials { background: var(--c-warm); padding: var(--s-24) 0; }
.testimonials__track-wrap { overflow: hidden; }
.testimonials__track { display: flex; gap: var(--s-6); transition: transform 0.5s var(--ease-out); will-change: transform; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.testimonial-card__quote {
  width: 36px; height: 36px;
  background: var(--c-primary-soft);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}
.testimonial-card__stars { display: flex; gap: var(--s-1); }
.testimonial-card__stars svg { color: var(--c-gold); }
.testimonial-card__text { font-size: 14px; line-height: 1.85; color: var(--c-text-2); flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-4); border-top: 1px solid var(--c-border-light); }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--g-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 14px; color: var(--c-text); }
.testimonial-card__role { font-size: 12px; color: var(--c-text-3); margin-top: var(--s-1); }
.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: var(--s-4); margin-top: var(--s-10); }
.testimonials__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); border: none; cursor: pointer; transition: all var(--t-base) var(--ease); padding: 0; }
.testimonials__dot.is-active { width: 24px; border-radius: var(--r-pill); background: var(--c-primary); }
.testimonials__nav { display: flex; gap: var(--s-3); }
.testimonials__nav .slider-btn { width: 44px; height: 44px; }
@media (max-width: 900px) { .testimonial-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 600px) { .testimonial-card { flex: 0 0 calc(100% - 0px); min-width: 0; } }

/* ════════════════════════════════════════════════
   VIDEO SECTION
   ════════════════════════════════════════════════ */
.video-section { background: var(--c-primary-darker); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.video-section__bg { position: absolute; inset: 0; opacity: 0.4; }
.video-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.video-section__inner { position: relative; z-index: 1; text-align: center; color: #fff; display: flex; flex-direction: column; align-items: center; gap: var(--s-6); }
.video-section__title { font-family: var(--f-tajawal); font-size: 36px; font-weight: 900; color: #fff; max-width: 40rem; line-height: 1.3; }
@media (min-width: 768px) { .video-section__title { font-size: 48px; } }
.video-section__lead { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.85; max-width: 36rem; }
.video-play {
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(14px);
  border: 2px solid var(--c-gold); color: var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t-slow);
  position: relative;
}
.video-play::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid var(--c-gold);
  animation: pulse 2.5s infinite;
}
.video-play:hover { transform: scale(1.08); background: var(--c-gold); color: var(--c-charcoal); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq { background: var(--c-bg); }
.faq__container { max-width: 56rem; margin: 0 auto; }
.faq__search {
  margin-bottom: var(--s-6); position: relative;
}
.faq__search input {
  width: 100%; padding: var(--s-4) var(--s-5) var(--s-4) var(--s-12);
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-pill); font-size: 14px; color: var(--c-text);
  transition: all var(--t-base);
}
.faq__search input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px var(--c-primary-soft); }
.faq__search svg { position: absolute; top: 50%; left: 18px; transform: translateY(-50%); color: var(--c-text-3); }
.faq__list { display: flex; flex-direction: column; gap: var(--s-3); }
.faq__item {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); overflow: hidden;
  transition: all var(--t-base);
}
.faq__item:hover { border-color: var(--c-primary); }
.faq__item.is-open { border-color: var(--c-primary); box-shadow: var(--sh-sm); }
.faq__question {
  width: 100%; padding: var(--s-5) var(--s-6);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  background: none; border: none; text-align: right;
  font-family: var(--f-cairo); font-size: 15px; font-weight: 700; color: var(--c-text);
  transition: color var(--t-base); cursor: pointer;
}
.faq__question:hover, .faq__item.is-open .faq__question { color: var(--c-primary); }
.faq__icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--c-primary-soft); color: var(--c-primary); display: flex; align-items: center; justify-content: center; transition: all var(--t-base); }
.faq__item.is-open .faq__icon { background: var(--c-primary); color: #fff; transform: rotate(45deg); }
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out);
}
.faq__answer-inner { padding: 0 var(--s-6) var(--s-6); font-size: 14px; color: var(--c-text-2); line-height: 1.9; font-weight: 400; }
.faq__item.is-open .faq__answer { max-height: 600px; }

/* ════════════════════════════════════════════════
   TIMELINE
   ════════════════════════════════════════════════ */
.timeline { background: #fff; }
.timeline__container { position: relative; max-width: 60rem; margin: 0 auto; }
.timeline__line {
  position: absolute; top: 0; bottom: 0; right: 30px;
  width: 2px; background: var(--c-border);
}
@media (min-width: 768px) { .timeline__line { right: 50%; transform: translateX(1px); } }
.timeline__item {
  position: relative; padding: var(--s-5) var(--s-16) var(--s-8) 0; display: flex; flex-direction: column; gap: var(--s-2);
}
@media (min-width: 768px) { .timeline__item { width: 50%; padding: var(--s-4) var(--s-12) var(--s-8); } }
@media (min-width: 768px) { .timeline__item:nth-child(even) { margin-right: 50%; padding-right: 0; padding-left: var(--s-12); text-align: left; } }
.timeline__dot {
  position: absolute; top: 22px; right: 21px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 4px solid var(--c-primary);
  box-shadow: 0 0 0 6px var(--c-bg);
}
@media (min-width: 768px) { .timeline__dot { right: -10px; } .timeline__item:nth-child(even) .timeline__dot { right: auto; left: -10px; } }
.timeline__year {
  display: inline-flex; align-items: center; padding: var(--s-1) var(--s-3);
  background: var(--c-primary-soft); color: var(--c-primary);
  font-family: var(--f-tajawal); font-weight: 800; font-size: 13px;
  border-radius: var(--r-pill); width: fit-content;
}
.timeline__item:nth-child(even) .timeline__year { margin-left: 0; }
.timeline__title { font-family: var(--f-tajawal); font-size: 19px; font-weight: 800; color: var(--c-text); margin-top: var(--s-1); }
.timeline__text { font-size: 13px; color: var(--c-text-2); line-height: 1.85; }

/* ════════════════════════════════════════════════
   NEWS
   ════════════════════════════════════════════════ */
.news { background: var(--c-bg); }
.news__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
@media (min-width: 768px) { .news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news__grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; transition: all var(--t-base);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.news-card__image { position: relative; height: 200px; overflow: hidden; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.news-card:hover .news-card__image img { transform: scale(1.06); }
.news-card__category { position: absolute; top: 14px; right: 14px; background: var(--c-primary); color: #fff; padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); font-size: 11px; font-weight: 700; }
.news-card__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex-grow: 1; }
.news-card__date { display: flex; align-items: center; gap: var(--s-2); font-size: 11px; color: var(--c-text-3); }
.news-card__title { font-family: var(--f-tajawal); font-size: 17px; font-weight: 800; color: var(--c-text); line-height: 1.4; }
.news-card__excerpt { font-size: 13px; color: var(--c-text-2); line-height: 1.75; flex-grow: 1; }
.news-card__more { font-size: 12px; font-weight: 700; color: var(--c-primary); display: inline-flex; align-items: center; gap: var(--s-1); padding-top: var(--s-2); }
.news-card__more svg { transition: transform var(--t-base); }
.news-card:hover .news-card__more svg { transform: translateX(-4px); }

/* ════════════════════════════════════════════════
   PARTNERS LOGOS
   ════════════════════════════════════════════════ */
.partners { background: #fff; padding: var(--s-16) 0; overflow: hidden; }
.partners__track {
  display: flex; gap: var(--s-16); animation: scrollLogos 30s linear infinite;
}
.partners__logo {
  flex-shrink: 0; height: 60px; display: flex; align-items: center;
  filter: grayscale(1); opacity: 0.55; transition: all var(--t-base);
}
.partners__logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.partners__logo svg { height: 100%; width: auto; }
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ════════════════════════════════════════════════
   AWARDS
   ════════════════════════════════════════════════ */
.awards__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
@media (min-width: 768px) { .awards__grid { grid-template-columns: repeat(4, 1fr); } }
.award-card {
  padding: var(--s-6); background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); text-align: center; transition: all var(--t-base);
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--c-gold); }
.award-card__icon { width: 64px; height: 64px; margin: 0 auto var(--s-4); background: var(--c-gold-soft); color: var(--c-gold-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.award-card__title { font-family: var(--f-tajawal); font-weight: 800; font-size: 14px; color: var(--c-text); margin-bottom: var(--s-2); }
.award-card__year { font-size: 11px; color: var(--c-text-3); font-weight: 600; }

/* ════════════════════════════════════════════════
   BROCHURE DOWNLOAD
   ════════════════════════════════════════════════ */
.brochure {
  background: var(--c-primary-darker); color: #fff;
  padding: var(--s-20) 0; position: relative; overflow: hidden;
}
.brochure__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--s-12); align-items: center;
}
@media (min-width: 1024px) { .brochure__inner { grid-template-columns: 6fr 6fr; gap: var(--s-16); } }
.brochure__content { color: #fff; }
.brochure__title { font-family: var(--f-tajawal); font-size: 36px; font-weight: 900; color: #fff; margin-bottom: var(--s-4); line-height: 1.3; }
@media (min-width: 768px) { .brochure__title { font-size: 44px; } }
.brochure__lead { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.85; margin-bottom: var(--s-6); }
.brochure__list { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-8); }
.brochure__list-item { display: flex; align-items: center; gap: var(--s-3); font-size: 14px; color: rgba(255,255,255,0.92); }
.brochure__list-item svg { color: var(--c-gold); flex-shrink: 0; }
.brochure__visual { position: relative; height: 360px; perspective: 1000px; }
@media (min-width: 1024px) { .brochure__visual { height: 460px; } }
.brochure__book {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--c-warm) 100%);
  border-radius: var(--r-xl); padding: var(--s-8);
  box-shadow: var(--sh-xl);
  display: flex; flex-direction: column; gap: var(--s-4);
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-out);
}
.brochure__book:hover { transform: rotateY(0) rotateX(0); }
.brochure__book-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: var(--s-4); border-bottom: 1px solid var(--c-border); }
.brochure__book-logo { display: flex; align-items: center; gap: var(--s-2); }
.brochure__book-title { font-family: var(--f-tajawal); font-weight: 800; color: var(--c-primary); }
.brochure__book-img { flex-grow: 1; background: var(--c-bg-2); border-radius: var(--r-md); background-image: linear-gradient(135deg, var(--c-primary-soft) 0%, transparent 100%); position: relative; overflow: hidden; }
.brochure__book-img::after {
  content: ''; position: absolute; inset: 20px;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(13, 122, 99, 0.06) 10px, rgba(13, 122, 99, 0.06) 20px);
}
.brochure__book-info { display: flex; justify-content: space-between; font-size: 11px; color: var(--c-text-3); padding-top: var(--s-4); border-top: 1px solid var(--c-border); }

/* ════════════════════════════════════════════════
   CONTACT CTA
   ════════════════════════════════════════════════ */
.contact-cta {
  background: var(--g-primary); color: #fff;
  padding: var(--section-py) 0; position: relative; overflow: hidden;
}
.contact-cta__bg { position: absolute; inset: 0; opacity: 0.08; }
.contact-cta__inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-6); }
.contact-cta__title { font-family: var(--f-tajawal); font-size: 38px; font-weight: 900; color: #fff; max-width: 36rem; line-height: 1.25; }
@media (min-width: 768px) { .contact-cta__title { font-size: 48px; } }
.contact-cta__lead { color: rgba(255,255,255,0.9); font-size: 16px; max-width: 38rem; line-height: 1.85; }
.contact-cta__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: center; margin-top: var(--s-4); }

/* ════════════════════════════════════════════════
   CTA SECTION (used inside home)
   ════════════════════════════════════════════════ */
.cta-section { position: relative; background: var(--c-primary); color: #fff; overflow: hidden; }
.cta-section__bg { position: absolute; inset: 0; opacity: 0.1; }
.cta-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-section__inner { position: relative; z-index: 1; max-width: 82rem; margin: 0 auto; padding: var(--s-16) var(--s-6); display: grid; grid-template-columns: 1fr; gap: var(--s-8); align-items: center; }
@media (min-width: 768px) { .cta-section__inner { grid-template-columns: 4fr 8fr; padding: 0 var(--s-6); } }
.cta-section__image { display: none; }
@media (min-width: 768px) { .cta-section__image { display: block; } }
.cta-section__image img { height: 320px; width: 100%; object-fit: cover; border-radius: var(--r-xl) var(--r-xl) 0 0; border: 4px solid rgba(255,255,255,0.18); border-bottom: none; transform: translateY(4px); }
.cta-section__content { padding: var(--s-8) 0; display: flex; flex-direction: column; gap: var(--s-5); text-align: right; }
.cta-section__eyebrow { display: inline-flex; align-items: center; gap: var(--s-2); padding: var(--s-1) var(--s-3); background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.2); font-size: 12px; font-weight: 700; width: fit-content; color: var(--c-gold-light); }
.cta-section__title { font-family: var(--f-tajawal); font-size: 28px; font-weight: 800; color: #fff; line-height: 1.3; }
@media (min-width: 768px) { .cta-section__title { font-size: 36px; } }
.cta-section__lead { color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.85; max-width: 38rem; }
@media (min-width: 768px) { .cta-section__lead { font-size: 15px; } }

/* ════════════════════════════════════════════════
   FACILITIES
   ════════════════════════════════════════════════ */
.facilities { background: #fff; }
.facilities__header { display: flex; flex-direction: column; gap: var(--s-4); align-items: center; margin-bottom: var(--s-12); position: relative; }
.facilities__nav { display: none; gap: var(--s-3); }
@media (min-width: 640px) { .facilities__nav { display: flex; position: absolute; top: 0; left: 0; } }
.facilities__slider { display: flex; gap: var(--s-6); overflow-x: auto; padding-bottom: var(--s-5); scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.facilities__slider::-webkit-scrollbar { display: none; }
.facility-card {
  flex-shrink: 0; width: 280px; background: #fff;
  padding: var(--s-6) var(--s-6); border-radius: var(--r-xl);
  border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
  scroll-snap-align: start; text-align: right;
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: all var(--t-base) var(--ease);
}
@media (min-width: 640px) { .facility-card { width: 312px; } }
.facility-card:hover { box-shadow: var(--sh-md); border-color: rgba(13, 122, 99, 0.3); transform: translateY(-3px); }
.facility-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: transform var(--t-base);
}
.facility-card:hover .facility-card__icon { transform: rotate(6deg); }
.facility-card__title { font-family: var(--f-tajawal); font-size: 17px; font-weight: 800; color: var(--c-text); transition: color var(--t-base); }
.facility-card:hover .facility-card__title { color: var(--c-primary); }
.facility-card__desc { font-size: 12px; color: var(--c-text-2); line-height: 1.75; flex-grow: 1; }
.facility-card__line { height: 3px; background: var(--g-gold); border-radius: 4px; width: 0; transition: width 0.5s var(--ease-out); }
.facility-card:hover .facility-card__line { width: 100%; }
.facilities__mobile-nav { display: flex; justify-content: center; align-items: center; gap: var(--s-4); margin-top: var(--s-4); }
@media (min-width: 640px) { .facilities__mobile-nav { display: none; } }
.facilities__mobile-nav span { font-size: 12px; color: var(--c-text-3); }
.slider-btn {
  padding: var(--s-3); background: var(--c-bg); color: var(--c-text);
  border: 1px solid var(--c-border); border-radius: 50%;
  box-shadow: var(--sh-xs); cursor: pointer;
  transition: all var(--t-base);
  display: inline-flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: scale(1.06); }
.slider-btn:active { transform: scale(0.92); }

/* ════════════════════════════════════════════════
   SERVICE DETAIL VIEW
   ════════════════════════════════════════════════ */
.sd-hero {
  position: relative; height: 380px; overflow: hidden;
}
@media (min-width: 768px) { .sd-hero { height: 460px; } }
.sd-hero img { width: 100%; height: 100%; object-fit: cover; }
.sd-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(4,58,46,0.92) 100%); }
.sd-hero__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s-10) var(--s-6); color: #fff; }
.sd-breadcrumb { display: flex; align-items: center; gap: var(--s-2); font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: var(--s-3); }
.sd-breadcrumb button { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 12px; cursor: pointer; font-family: var(--f-cairo); }
.sd-breadcrumb button:hover { color: var(--c-gold-light); }
.sd-breadcrumb .current { color: var(--c-gold-light); }
.sd-hero h1 { color: white; font-family: var(--f-tajawal); font-size: 36px; font-weight: 900; margin-bottom: var(--s-3); }
@media (min-width: 768px) { .sd-hero h1 { font-size: 48px; } }
.sd-hero p { font-size: 15px; color: rgba(255,255,255,0.85); max-width: 36rem; line-height: 1.7; font-weight: 400; }
.sd-body { max-width: 82rem; margin: 0 auto; padding: var(--s-16) var(--s-6); display: grid; grid-template-columns: 1fr; gap: var(--s-10); }
@media (min-width: 1024px) { .sd-body { grid-template-columns: 8fr 4fr; gap: var(--s-16); } }
.sd-content { display: flex; flex-direction: column; gap: var(--s-8); }
.sd-content h3 { font-family: var(--f-tajawal); font-size: 22px; font-weight: 800; color: var(--c-text); margin-bottom: var(--s-4); padding-right: var(--s-3); border-right: 4px solid var(--c-primary); }
.sd-content p { font-size: 14px; color: var(--c-text-2); line-height: 1.95; font-weight: 400; }
.sd-features { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 640px) { .sd-features { grid-template-columns: 1fr 1fr; } }
.sd-feature { display: flex; gap: var(--s-3); padding: var(--s-4); background: var(--c-warm); border: 1px solid var(--c-border); border-radius: var(--r-md); transition: all var(--t-base); }
.sd-feature:hover { border-color: rgba(13, 122, 99, 0.3); transform: translateY(-2px); }
.sd-feature__icon { width: 42px; height: 42px; background: var(--c-primary-soft); color: var(--c-primary); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sd-feature__title { font-weight: 700; font-size: 14px; color: var(--c-text); margin-bottom: var(--s-1); }
.sd-feature__desc { font-size: 12px; color: var(--c-text-2); line-height: 1.65; }
.sd-inquiry { padding: var(--s-8); background: var(--c-warm); border-radius: var(--r-xl); border: 1px solid var(--c-border); }
.sd-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.sd-side-card { background: var(--c-warm); border-radius: var(--r-lg); padding: var(--s-6); border: 1px solid var(--c-border); }
.sd-side-title { font-family: var(--f-tajawal); font-size: 16px; font-weight: 800; color: var(--c-text); margin-bottom: var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--c-border); }
.sd-other-list { display: flex; flex-direction: column; gap: var(--s-1); }
.sd-other-item { display: flex; align-items: center; gap: var(--s-2); padding: var(--s-3) var(--s-3); border-radius: var(--r-sm); font-size: 13px; color: var(--c-text-2); cursor: pointer; transition: all var(--t-fast); border: none; background: none; text-align: right; width: 100%; font-family: var(--f-cairo); }
.sd-other-item:hover { background: var(--c-primary-soft); color: var(--c-primary); padding-right: var(--s-4); }
.sd-cta-card { background: var(--g-primary); border-radius: var(--r-lg); padding: var(--s-8); color: #fff; }
.sd-cta-card h4 { font-family: var(--f-tajawal); font-size: 18px; font-weight: 800; margin-bottom: var(--s-3); }
.sd-cta-card p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: var(--s-5); }

/* ════════════════════════════════════════════════
   UNITS VIEW
   ════════════════════════════════════════════════ */
.units-hero {
  position: relative; padding: var(--s-16) 0; background: var(--c-primary-darker); color: #fff; overflow: hidden;
}
.units-hero__bg { position: absolute; inset: 0; opacity: 0.18; }
.units-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.units-hero__inner { position: relative; z-index: 1; max-width: 82rem; margin: 0 auto; padding: 0 var(--s-6); }
.units-hero__bc { display: flex; align-items: center; gap: var(--s-2); font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: var(--s-3); }
.units-hero__bc .current { color: var(--c-gold-light); }
.units-hero h1 { font-family: var(--f-tajawal); font-size: 36px; font-weight: 900; color: #fff; margin-bottom: var(--s-3); }
@media (min-width: 768px) { .units-hero h1 { font-size: 48px; } }
.units-hero p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.85; font-weight: 400; max-width: 44rem; }
.units-content { max-width: 82rem; margin: 0 auto; padding: var(--s-12) var(--s-6); }
.units-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-8); align-items: start; }
@media (min-width: 1024px) { .units-grid { grid-template-columns: 9fr 3fr; gap: var(--s-8); } }
.units-side { order: 2; display: flex; flex-direction: column; gap: var(--s-4); position: sticky; top: 100px; }
@media (min-width: 1024px) { .units-side { order: 2; } }
.units-side-card { background: #fff; padding: var(--s-6); border-radius: var(--r-xl); border: 1px solid var(--c-border); box-shadow: var(--sh-xs); }
.units-side-card h3 { font-family: var(--f-tajawal); font-size: 16px; font-weight: 800; color: var(--c-text); display: flex; align-items: center; gap: var(--s-2); padding-bottom: var(--s-3); margin-bottom: var(--s-4); border-bottom: 1px solid var(--c-border); }
.units-side-card h3 svg { color: var(--c-primary); }
.buildings-btns { display: flex; flex-direction: column; gap: var(--s-2); }
.bbtn {
  width: 100%; padding: var(--s-3) var(--s-4); border-radius: var(--r-md);
  text-align: right; font-family: var(--f-cairo); font-size: 13px; font-weight: 700;
  border: 1px solid var(--c-border); transition: all var(--t-fast);
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; color: var(--c-text-2); cursor: pointer;
}
.bbtn:hover { background: var(--c-warm); color: var(--c-primary); border-color: var(--c-primary); }
.bbtn.is-active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); box-shadow: 0 4px 12px rgba(13, 122, 99, 0.28); }
.bbtn__count { background: rgba(0,0,0,0.08); padding: var(--s-1) var(--s-2); border-radius: var(--r-pill); font-size: 11px; }
.bbtn.is-active .bbtn__count { background: rgba(255,255,255,0.18); }
.help-card { background: var(--g-primary); padding: var(--s-6); border-radius: var(--r-xl); color: #fff; display: flex; flex-direction: column; gap: var(--s-4); box-shadow: var(--sh-primary); }
.help-card h4 { font-family: var(--f-tajawal); font-size: 15px; font-weight: 800; }
.help-card p { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.7; }

.units-main { order: 1; display: flex; flex-direction: column; gap: var(--s-6); }
@media (min-width: 1024px) { .units-main { order: 1; } }
.building-profile { background: #fff; padding: var(--s-8); border-radius: var(--r-xl); border: 1px solid var(--c-border); box-shadow: var(--sh-xs); }
.building-profile__label { font-size: 10px; font-weight: 800; color: var(--c-primary); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: var(--s-2); }
.building-profile__name { font-family: var(--f-tajawal); font-size: 26px; font-weight: 800; color: var(--c-text); margin-bottom: var(--s-2); }
.building-profile__desc { font-size: 14px; color: var(--c-text-2); line-height: 1.85; }
.building-profile__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--c-border); }
.bp-stat { text-align: center; }
.bp-stat__num { font-family: var(--f-tajawal); font-size: 22px; font-weight: 900; color: var(--c-primary); display: block; }
.bp-stat__label { font-size: 11px; color: var(--c-text-3); margin-top: var(--s-1); display: block; }
.units-list { display: flex; flex-direction: column; gap: var(--s-3); }
.unit-card { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--c-border); overflow: hidden; box-shadow: var(--sh-xs); transition: all var(--t-base); }
.unit-card:hover { border-color: rgba(13, 122, 99, 0.3); }
.unit-card.is-open { border-color: var(--c-primary); box-shadow: var(--sh-md); }
.unit-card__head {
  width: 100%; padding: var(--s-6); display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; font-family: var(--f-cairo); cursor: pointer; text-align: right;
}
.unit-card__head-r { display: flex; flex-direction: column; gap: var(--s-2); align-items: flex-end; }
@media (min-width: 640px) { .unit-card__head-r { flex-direction: row; align-items: center; gap: var(--s-5); } }
.unit-card__area { font-size: 12px; font-weight: 700; background: var(--c-primary-soft); color: var(--c-primary); padding: var(--s-1) var(--s-4); border-radius: var(--r-pill); }
.unit-card__name { font-size: 16px; font-weight: 700; color: var(--c-text); transition: color var(--t-base); }
@media (min-width: 768px) { .unit-card__name { font-size: 18px; } }
.unit-card.is-open .unit-card__name { color: var(--c-primary); }
.unit-card__chev { color: var(--c-text-3); transition: transform var(--t-base); }
.unit-card.is-open .unit-card__chev { transform: rotate(180deg); color: var(--c-primary); }
.unit-card__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.unit-card.is-open .unit-card__body { max-height: 1200px; }
.unit-card__body-inner { padding: 0 var(--s-6) var(--s-6); border-top: 1px solid var(--c-border); background: rgba(244, 239, 227, 0.4); }

/* Unit image inside card */
.unit-card__unit-img {
  width: 100%; height: 220px; overflow: hidden;
  border-radius: var(--r-lg); margin-top: var(--s-5); margin-bottom: var(--s-5);
  position: relative;
}
.unit-card__unit-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  border-radius: var(--r-lg);
}
.unit-card.is-open .unit-card__unit-img img:hover { transform: scale(1.04); }
@media (min-width: 768px) { .unit-card__unit-img { height: 260px; } }
.unit-card__detail-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-8); text-align: right; padding-top: var(--s-5); }
@media (min-width: 768px) { .unit-card__detail-grid { grid-template-columns: 1fr 1fr; } }
.unit-card__section-title { font-weight: 800; font-size: 13px; color: var(--c-text); border-right: 3px solid var(--c-primary); padding-right: var(--s-3); margin-bottom: var(--s-4); }
.unit-card__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-bottom: var(--s-4); }
.unit-card__spec { padding: var(--s-3); background: #fff; border-radius: var(--r-md); border: 1px solid var(--c-border); text-align: center; }
.unit-card__spec-label { display: block; font-size: 11px; color: var(--c-text-3); }
.unit-card__spec-value { display: block; font-size: 14px; font-weight: 800; color: var(--c-primary); margin-top: var(--s-1); }
.unit-card__desc { font-size: 13px; color: var(--c-text-2); line-height: 1.85; }
.unit-card__features { display: flex; flex-direction: column; gap: var(--s-2); }
.unit-card__feature { display: flex; justify-content: flex-end; align-items: flex-start; gap: var(--s-2); font-size: 13px; color: var(--c-text-2); text-align: right; line-height: 1.7; }
.unit-card__feature-icon { flex-shrink: 0; margin-top: var(--s-1); background: var(--c-primary-soft); color: var(--c-primary); border-radius: 50%; padding: var(--s-1); }
.unit-card__actions { display: flex; flex-direction: column; gap: var(--s-3); justify-content: flex-end; align-items: stretch; padding-top: var(--s-5); border-top: 1px solid var(--c-border); margin-top: var(--s-5); }
@media (min-width: 640px) { .unit-card__actions { flex-direction: row; } }

/* ════════════════════════════════════════════════
   AVAILABLE UNITS GRID (new section)
   ════════════════════════════════════════════════ */
.units-catalog__filters {
  display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); align-items: center;
}
.units-catalog__filter-label { font-size: 13px; font-weight: 700; color: var(--c-text-2); margin-left: var(--s-2); }
.units-catalog__filter {
  padding: var(--s-2) var(--s-4); background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 700; color: var(--c-text-2);
  cursor: pointer; transition: all var(--t-fast); font-family: var(--f-cairo);
}
.units-catalog__filter:hover { border-color: var(--c-primary); color: var(--c-primary); }
.units-catalog__filter.is-active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.units-catalog__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
@media (min-width: 768px) { .units-catalog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .units-catalog__grid { grid-template-columns: repeat(3, 1fr); } }
.ucard {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; transition: all var(--t-base);
  position: relative;
}
.ucard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.ucard__image { position: relative; height: 200px; overflow: hidden; }
.ucard__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.ucard:hover .ucard__image img { transform: scale(1.06); }
.ucard__badge { position: absolute; top: 14px; right: 14px; background: var(--c-primary); color: #fff; padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); font-size: 11px; font-weight: 800; }
.ucard__badge--avail { background: var(--c-success); }
.ucard__badge--reserved { background: var(--c-warning); }
.ucard__wishlist { position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--c-text-2); cursor: pointer; transition: all var(--t-fast); }
.ucard__wishlist:hover, .ucard__wishlist.is-active { background: #fff; color: #E0455C; transform: scale(1.08); }
.ucard__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex-grow: 1; }
.ucard__title { font-family: var(--f-tajawal); font-size: 18px; font-weight: 800; color: var(--c-text); }
.ucard__location { display: flex; align-items: center; gap: var(--s-2); font-size: 12px; color: var(--c-text-3); }
.ucard__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); padding: var(--s-4); background: var(--c-warm); border-radius: var(--r-md); }
.ucard__spec { text-align: center; }
.ucard__spec-label { display: block; font-size: 10px; color: var(--c-text-3); }
.ucard__spec-value { display: block; font-size: 13px; font-weight: 800; color: var(--c-text); margin-top: var(--s-1); }
.ucard__price { display: flex; align-items: baseline; gap: var(--s-2); padding-top: var(--s-2); border-top: 1px solid var(--c-border); }
.ucard__price-num { font-family: var(--f-tajawal); font-size: 22px; font-weight: 900; color: var(--c-primary); }
.ucard__price-period { font-size: 11px; color: var(--c-text-3); }
.ucard__actions { display: flex; gap: var(--s-2); padding-top: var(--s-2); }
.ucard__actions .btn { flex: 1; }

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0; background: var(--g-primary); color: #fff;
  position: relative; overflow: hidden;
}
.contact__dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 28px 28px; opacity: 0.5; pointer-events: none; }
.contact__inner { position: relative; z-index: 1; }
.contact__header { text-align: center; max-width: 34rem; margin: 0 auto var(--s-12); }
.contact__title { font-family: var(--f-tajawal); font-size: 36px; font-weight: 900; color: #fff; margin-bottom: var(--s-3); }
@media (min-width: 768px) { .contact__title { font-size: 44px; } }
.contact__divider { width: 64px; height: 4px; background: var(--c-gold); border-radius: 4px; margin: 0 auto var(--s-4); }
.contact__lead { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.85; font-weight: 400; }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: stretch; }
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 5fr 4fr 3fr; gap: var(--s-6); } }
.contact-form { background: #fff; color: var(--c-text); padding: var(--s-8); border-radius: var(--r-xl); box-shadow: var(--sh-xl); display: flex; flex-direction: column; }
.contact-form__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: var(--s-3); border-bottom: 1px solid var(--c-border); margin-bottom: var(--s-5); }
.contact-form__type { font-size: 10px; color: var(--c-text-3); letter-spacing: 0.1em; font-weight: 700; }
.contact-form__heading { font-family: var(--f-tajawal); font-weight: 800; font-size: 14px; color: var(--c-primary); display: flex; align-items: center; gap: var(--s-2); }
.field { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); text-align: right; }
.field label { font-size: 12px; font-weight: 700; color: var(--c-text-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: var(--s-3) var(--s-4); border-radius: var(--r-md);
  border: 1px solid var(--c-border); font-size: 13px; color: var(--c-text);
  background: var(--c-warm); transition: all var(--t-base); outline: none;
  font-family: var(--f-cairo); text-align: right;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--c-primary); background: #fff;
  box-shadow: 0 0 0 4px var(--c-primary-soft);
}
.field input.has-error, .field textarea.has-error { border-color: var(--c-error); }
.field textarea { resize: vertical; min-height: 80px; }
.field__icon { position: relative; }
.field__icon svg { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); color: var(--c-text-3); pointer-events: none; }
.field__icon input { padding-right: var(--s-10); }
.field-error { display: none; align-items: center; gap: var(--s-1); font-size: 11px; color: var(--c-error); margin-top: var(--s-1); font-weight: 600; }
.field-error.is-visible { display: flex; }
.btn-submit {
  width: 100%; padding: var(--s-4); margin-top: var(--s-2);
  background: var(--c-primary); color: #fff;
  font-family: var(--f-cairo); font-weight: 800; font-size: 14px;
  border: none; border-radius: var(--r-md);
  box-shadow: var(--sh-primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: var(--s-2);
  transition: all var(--t-base);
}
.btn-submit:hover { background: var(--c-primary-dark); transform: translateY(-2px); }
.btn-submit:active { transform: scale(0.97); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit__spinner { width: 16px; height: 16px; border: 2px solid #fff; border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }
.contact-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--s-10) 0; gap: var(--s-4);
  animation: scaleIn 0.4s var(--ease-out);
}
.contact-success.is-visible { display: flex; }
.contact-success__icon { width: 72px; height: 72px; background: var(--c-primary-soft); color: var(--c-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: bounceY 1.5s ease-in-out infinite; }
.contact-success__title { font-family: var(--f-tajawal); font-size: 22px; font-weight: 800; color: var(--c-primary); }
.contact-success__desc { font-size: 13px; color: var(--c-text-2); max-width: 280px; line-height: 1.75; }
.contact-success__again { padding: var(--s-2) var(--s-6); border: 1px solid var(--c-primary); color: var(--c-primary); background: transparent; font-weight: 700; font-size: 12px; border-radius: var(--r-sm); font-family: var(--f-cairo); transition: all var(--t-fast); margin-top: var(--s-4); cursor: pointer; }
.contact-success__again:hover { background: var(--c-primary-soft); }

.contact-map { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); border: 1px solid rgba(255,255,255,0.18); min-height: 360px; position: relative; background: var(--c-primary-dark); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.contact-info { display: flex; flex-direction: column; justify-content: space-between; text-align: right; gap: var(--s-6); }
.contact-info__brand { display: flex; flex-direction: column; align-items: center; gap: var(--s-2); }
.contact-info__logo { width: 64px; height: auto; }
.contact-info__brand-ar { font-family: var(--f-tajawal); font-weight: 800; font-size: 18px; color: #fff; }
.contact-info__brand-en { font-family: var(--f-cairo); font-weight: 400; font-size: 11px; letter-spacing: 0.24em; color: var(--c-gold-light); }
.contact-info__intro { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.85; font-weight: 400; }
.contact-info__list { display: flex; flex-direction: column; gap: var(--s-4); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.12); }
.contact-info__item { display: flex; gap: var(--s-3); justify-content: flex-end; align-items: flex-start; }
.contact-info__item-icon { padding: var(--s-2); background: rgba(255,255,255,0.12); border-radius: var(--r-md); color: var(--c-gold-light); flex-shrink: 0; }
.contact-info__item-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); }
.contact-info__item-value { font-size: 14px; font-weight: 700; color: #fff; margin-top: var(--s-1); }
.contact-info__item-value--big { font-size: 18px; font-weight: 900; color: var(--c-gold-light); font-family: var(--f-cairo); }
.contact-info__item-value a { color: inherit; transition: color var(--t-fast); }
.contact-info__item-value a:hover { color: var(--c-gold); }
.contact-info__social { display: flex; gap: var(--s-2); padding-top: var(--s-4); }
.contact-info__social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all var(--t-base); }
.contact-info__social a:hover { background: var(--c-gold); color: var(--c-charcoal); transform: translateY(-2px); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--c-charcoal); color: rgba(255,255,255,0.7);
  padding-top: var(--s-16); position: relative; overflow: hidden;
}
.footer__main { display: grid; grid-template-columns: 1fr; gap: var(--s-10); padding-bottom: var(--s-12); }
@media (min-width: 768px) { .footer__main { grid-template-columns: 4fr 3fr 3fr 4fr; gap: var(--s-10); } }
.footer__brand { display: flex; flex-direction: column; gap: var(--s-4); }
.footer__brand-top { display: flex; align-items: center; gap: var(--s-3); }
.footer__brand-logo { width: 48px; height: auto; }
.footer__brand-text { display: flex; flex-direction: column; gap: var(--s-1); }
.footer__brand-ar { font-family: var(--f-tajawal); font-weight: 800; font-size: 20px; color: #fff; }
.footer__brand-en { font-family: var(--f-cairo); font-weight: 400; font-size: 11px; letter-spacing: 0.24em; color: var(--c-gold-light); }
.footer__brand-desc { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.65); }
.footer__social { display: flex; gap: var(--s-2); margin-top: var(--s-2); }
.footer__social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all var(--t-base); }
.footer__social a:hover { background: var(--c-gold); color: var(--c-charcoal); transform: translateY(-3px); }
.footer__col h4 { font-family: var(--f-tajawal); font-size: 15px; font-weight: 800; color: #fff; margin-bottom: var(--s-5); position: relative; padding-bottom: var(--s-3); }
.footer__col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 32px; height: 2px; background: var(--c-gold); }
.footer__links { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 13px; color: rgba(255,255,255,0.7);
  transition: all var(--t-fast); background: none; border: none;
  padding: 0; font-family: var(--f-cairo); text-align: right;
  cursor: pointer;
}
.footer__link::before { content: ''; width: 0; height: 1px; background: var(--c-gold); transition: width var(--t-base); }
.footer__link:hover { color: var(--c-gold-light); padding-right: var(--s-2); }
.footer__link:hover::before { width: 14px; }
.footer__contact { display: flex; flex-direction: column; gap: var(--s-4); }
.footer__contact-item { display: flex; gap: var(--s-3); align-items: flex-start; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer__contact-item svg { color: var(--c-gold-light); flex-shrink: 0; margin-top: var(--s-1); }
.footer__newsletter p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: var(--s-4); line-height: 1.75; }
.footer__newsletter-form { position: relative; margin-bottom: var(--s-5); }
.footer__newsletter-input {
  width: 100%; padding: var(--s-3) var(--s-12) var(--s-3) var(--s-4);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md); font-size: 13px; color: #fff;
  font-family: var(--f-cairo); transition: all var(--t-base);
}
.footer__newsletter-input:focus { outline: none; border-color: var(--c-gold); background: rgba(255,255,255,0.12); }
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-btn {
  position: absolute; top: 50%; left: 4px; transform: translateY(-50%);
  background: var(--c-gold); color: var(--c-charcoal);
  border: none; width: 38px; height: 38px; border-radius: var(--r-sm);
  cursor: pointer; transition: all var(--t-base);
  display: flex; align-items: center; justify-content: center;
}
.footer__newsletter-btn:hover { background: var(--c-gold-light); }
.footer__hours { padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.1); }
.footer__hours-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: var(--s-2); font-weight: 600; }
.footer__hours-list { display: flex; flex-direction: column; gap: var(--s-2); }
.footer__hours-row { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.75); }
.footer__hours-row .time { color: var(--c-gold-light); font-weight: 700; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--s-6) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3); align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-align: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; text-align: right; } }
.footer__bottom a { color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.footer__bottom a:hover { color: var(--c-gold); }
.footer__bottom-links { display: flex; gap: var(--s-4); align-items: center; flex-wrap: wrap; justify-content: center; }

/* ════════════════════════════════════════════════
   VIDEO MODAL
   ════════════════════════════════════════════════ */
.video-modal {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: var(--s-4);
}
.video-modal.is-open { display: flex; animation: fadeIn var(--t-base); }
.video-modal__box { position: relative; background: #000; width: 100%; max-width: 60rem; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: var(--sh-xl); }
.video-modal__close { position: absolute; top: 14px; right: 14px; z-index: 10; padding: var(--s-2); background: rgba(0,0,0,0.7); color: #fff; border: none; border-radius: 50%; transition: background var(--t-fast); cursor: pointer; }
.video-modal__close:hover { background: #000; }
.video-modal__box iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: var(--s-6); animation: fadeIn var(--t-base);
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--sh-xl); }
.lightbox__close { position: absolute; top: 22px; right: 22px; padding: var(--s-3); background: rgba(255,255,255,0.12); color: #fff; border: none; border-radius: 50%; cursor: pointer; transition: background var(--t-fast); }
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* ════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════ */
.icon-stroke { width: 20px; height: 20px; flex-shrink: 0; }
.skeleton {
  background: linear-gradient(90deg, var(--c-bg-2) 0%, var(--c-border-light) 50%, var(--c-bg-2) 100%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--r-sm);
}
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: initial; } .hide-desktop { display: none; } }
.text-center { text-align: center; }

/* ════ INFO TICKER ════ */
.info-ticker { background: var(--c-primary); color: #fff; height: 40px; overflow: hidden; position: relative; z-index: 39; }
.info-ticker__track { display: flex; align-items: center; height: 100%; width: max-content; animation: ticker-slide 40s linear infinite; }
.info-ticker__track:hover { animation-play-state: paused; }
@keyframes ticker-slide { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.info-ticker__item { display: inline-flex; align-items: center; gap: var(--s-2); padding: 0 var(--s-8); font-size: 13px; font-weight: 600; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.2); }
.info-ticker__item svg { color: var(--c-gold-light); flex-shrink: 0; }
.info-ticker__item strong { color: var(--c-gold-light); }
/* ════ UNITS BANNER ════ */
.units-banner { background: linear-gradient(90deg, var(--c-primary-darker) 0%, var(--c-primary) 50%, var(--c-primary-darker) 100%); padding: var(--s-5) 0; position: relative; overflow: hidden; }
.units-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); flex-wrap: wrap; position: relative; z-index: 1; }
.units-banner__info { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.units-banner__pulse { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: pulse-green 2s infinite; flex-shrink: 0; }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); } 50% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } }
.units-banner__text { color: #fff; font-size: 15px; font-weight: 700; }
.units-banner__count { background: var(--c-gold); color: var(--c-charcoal); font-size: 12px; font-weight: 800; padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); }
.units-banner__tags { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.units-banner__tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 600; padding: var(--s-1) var(--s-4); border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.2); }
/* ════ NEWS MODAL ════ */
.news-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: var(--s-4); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.news-modal.is-open { opacity: 1; visibility: visible; }
.news-modal__backdrop { position: absolute; inset: 0; background: rgba(4,30,24,0.75); backdrop-filter: blur(6px); cursor: pointer; }
.news-modal__panel { position: relative; z-index: 1; background: #fff; border-radius: var(--r-xl); max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,0.35); transform: translateY(24px) scale(0.97); transition: transform 0.35s var(--ease-out); }
.news-modal.is-open .news-modal__panel { transform: translateY(0) scale(1); }
.news-modal__img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--r-xl) var(--r-xl) 0 0; display: block; }
.news-modal__close { position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.45); border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t-fast); z-index: 2; }
.news-modal__close:hover { background: var(--c-primary); }
.news-modal__body { padding: var(--s-8); }
.news-modal__meta { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); flex-wrap: wrap; }
.news-modal__cat { background: var(--c-primary); color: #fff; padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); font-size: 11px; font-weight: 700; }
.news-modal__date { display: flex; align-items: center; gap: var(--s-1); font-size: 12px; color: var(--c-text-3); }
.news-modal__title { font-family: var(--f-tajawal); font-size: 24px; font-weight: 900; color: var(--c-text); line-height: 1.35; margin-bottom: var(--s-5); }
.news-modal__content { font-size: 14px; color: var(--c-text-2); line-height: 2; }
.news-modal__content p { margin-bottom: var(--s-4); }
.news-modal__footer { padding: var(--s-5) var(--s-8); border-top: 1px solid var(--c-border); display: flex; gap: var(--s-3); justify-content: flex-end; }

/* ════════════════════════════════════════════════
   PROGRESS BAR (generic, used in tower modal)
   ════════════════════════════════════════════════ */
.progress-bar { height: 8px; background: var(--c-bg-2); border-radius: var(--r-pill); overflow: hidden; }
.progress-bar__fill { height: 100%; width: 0%; border-radius: var(--r-pill); transition: width 0.9s var(--ease-out); }
.progress-bar__fill--gold { background: var(--g-gold); }
.progress-bar__fill--primary { background: var(--g-primary); }

/* ════ TOWER MODAL (Master Plan) ════ */
.tower-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: var(--s-4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tower-modal.is-open { opacity: 1; visibility: visible; }
.tower-modal__backdrop { position: absolute; inset: 0; background: rgba(4,30,24,0.75); backdrop-filter: blur(6px); cursor: pointer; }
.tower-modal__panel {
  position: relative; z-index: 1; background: #fff; border-radius: var(--r-xl);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  transform: translateY(24px) scale(0.96); opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.3s var(--ease-out);
}
.tower-modal.is-open .tower-modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.tower-modal__close {
  position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--c-border); color: var(--c-text-2);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--t-fast); z-index: 2;
}
.tower-modal__close:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.tower-modal__head {
  padding: var(--s-8) var(--s-6) var(--s-4);
  background: var(--g-primary); color: #fff; position: relative; overflow: hidden;
}
.tower-modal__status {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 11px; font-weight: 800; padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill); background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px); margin-bottom: var(--s-3);
}
.tower-modal__status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.tower-modal__status--done { color: #fff; background: rgba(20,184,112,0.35); }
.tower-modal__status--progress { color: #fff; background: rgba(245,166,35,0.35); }
.tower-modal__status--soon { color: #fff; background: rgba(255,255,255,0.18); }
.tower-modal__number {
  position: absolute; top: var(--s-6); left: var(--s-10);
  font-family: var(--f-tajawal); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.tower-modal__title { font-family: var(--f-tajawal); font-size: 26px; font-weight: 900; color: #fff; margin-bottom: var(--s-2); }
.tower-modal__desc { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 38rem; }
.tower-modal__body { padding: var(--s-6); }
.tower-modal__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); margin-bottom: var(--s-6); }
@media (min-width: 480px) { .tower-modal__stats { grid-template-columns: repeat(3, 1fr); } }
.tm-stat { padding: var(--s-3); background: var(--c-warm); border-radius: var(--r-md); border: 1px solid var(--c-border); text-align: center; }
.tm-stat__label { display: block; font-size: 11px; color: var(--c-text-3); }
.tm-stat__value { display: block; font-size: 14px; font-weight: 800; color: var(--c-primary); margin-top: var(--s-1); }
.tower-modal__progress { display: flex; flex-direction: column; gap: var(--s-4); }
.tm-progress-row { display: flex; flex-direction: column; gap: var(--s-2); }
.tm-progress-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--c-text-2); }
.tm-progress-label span:last-child { color: var(--c-primary); font-weight: 800; }
.tower-modal__footer {
  padding: var(--s-4) var(--s-6) var(--s-6);
  display: flex; flex-wrap: wrap; gap: var(--s-3);
}
.tower-modal__footer .btn { flex: 1 1 auto; justify-content: center; }