/* =========================================================
   DORRA AL MIMAR — Real Estate Development
   Luxury bilingual (RTL) website stylesheet
   Brand: Gold #C9A227  |  Navy #14303D
   ========================================================= */

/* ----------  Design Tokens  ---------- */
:root {
  --gold:        #c9a227;
  --gold-soft:   #d9bc5b;
  --gold-deep:   #a6841c;
  --gold-glow:   rgba(201, 162, 39, .35);

  --navy:        #14303d;
  --navy-2:      #1c3a4b;
  --navy-3:      #25495a;
  --ink:         #18262e;

  --cream:       #faf7f1;
  --cream-2:     #f3ede1;
  --line:        #e7ddca;

  --white:       #ffffff;
  --muted:       #6b7780;

  --radius:      18px;
  --radius-sm:   12px;
  --shadow-sm:   0 8px 24px rgba(20, 48, 61, .08);
  --shadow-md:   0 20px 50px rgba(20, 48, 61, .14);
  --shadow-lg:   0 40px 90px rgba(20, 48, 61, .22);

  --maxw:        1240px;
  --ease:        cubic-bezier(.16, .84, .44, 1);
  --font-head:   "El Messiri", "Tajawal", sans-serif;
  --font-body:   "Tajawal", sans-serif;
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

/* ----------  Helpers  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.txt-gold { color: var(--gold); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .82rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.25; color: var(--navy);
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); }
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; }
.section-head.center .section-lead { margin-inline: auto; }
.section-pad { padding-block: clamp(70px, 9vw, 130px); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 700; font-size: .98rem; letter-spacing: .3px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #2a2207; box-shadow: 0 14px 30px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-4px); box-shadow: 0 22px 44px var(--gold-glow); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-4px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); transform: translateY(-4px); }

/* =========================================================
   Preloader
   ========================================================= */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-inner img { width: 120px; margin: 0 auto 22px; animation: floaty 2.4s ease-in-out infinite; }
.loader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.15); border-radius: 4px; overflow: hidden; margin: 0 auto; }
.loader-bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--gold-soft), var(--gold)); border-radius: 4px; animation: load 1.2s ease-in-out infinite; }
@keyframes load { 0%{ transform: translateX(-120%);} 100%{ transform: translateX(360%);} }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* =========================================================
   Top bar + Navbar
   ========================================================= */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.8);
  font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 44px; gap: 20px; }
.topbar a { transition: color .3s; }
.topbar a:hover { color: var(--gold-soft); }
.topbar-info { display: flex; gap: 26px; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info svg { width: 15px; height: 15px; color: var(--gold); }
.topbar-social { display: flex; gap: 16px; align-items: center; }
.topbar-social a svg { width: 16px; height: 16px; }

.nav {
  position: sticky; top: 0; z-index: 900;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
  background: rgba(255,255,255,0);
}
.nav.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 56px; width: auto; transition: height .4s; }
.brand-text { line-height: 1.15; }
.brand-text strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: #fff; transition: color .4s; }
.brand-text small { font-size: .72rem; letter-spacing: 1px; color: rgba(255,255,255,.7); transition: color .4s; }
.nav.scrolled .brand-text strong { color: var(--navy); }
.nav.scrolled .brand-text small { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 10px 16px; font-weight: 600; font-size: .98rem;
  color: rgba(255,255,255,.92); border-radius: 8px; transition: color .3s;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: ""; position: absolute; bottom: 4px; right: 16px; left: 16px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--gold-deep); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; font-size: .92rem; }
.lang-toggle {
  font-weight: 700; font-size: .85rem; color: #fff; padding: 8px 12px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.35); transition: .3s;
}
.nav.scrolled .lang-toggle { color: var(--navy); border-color: var(--line); }
.lang-toggle:hover { background: var(--gold); color: #2a2207; border-color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.nav.scrolled .burger span { background: var(--navy); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: var(--navy); z-index: 950;
  transform: translateX(100%); transition: transform .45s var(--ease); padding: 90px 30px 30px; overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer a { display: block; padding: 16px 6px; color: rgba(255,255,255,.9); font-size: 1.1rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08); transition: color .3s, padding .3s; }
.drawer a:hover { color: var(--gold-soft); padding-right: 14px; }
.drawer .btn { margin-top: 26px; width: 100%; justify-content: center; }
.drawer-close { position: absolute; top: 24px; left: 24px; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.4rem; display: grid; place-items: center; }
.overlay { position: fixed; inset: 0; background: rgba(10,22,28,.55); z-index: 940; opacity: 0; visibility: hidden; transition: .4s; }
.overlay.show { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
   ========================================================= */
.hero { min-height: 100vh; margin-top: -128px; display: flex; align-items: center;
  color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.12); transition: opacity 1.6s ease, transform 7s linear; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(12,28,36,.92) 0%, rgba(12,28,36,.78) 40%, rgba(12,28,36,.45) 100%); }
.hero-inner { padding-top: 150px; padding-bottom: 90px; max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; border-radius: 50px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(201,162,39,.4); font-size: .85rem; font-weight: 600;
  color: var(--gold-soft); margin-bottom: 26px; backdrop-filter: blur(6px); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 var(--gold-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 var(--gold-glow);} 70%{ box-shadow: 0 0 0 12px rgba(201,162,39,0);} 100%{ box-shadow: 0 0 0 0 rgba(201,162,39,0);} }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.15; font-weight: 700; margin-bottom: 24px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--gold-soft), var(--gold) 50%, var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.86); max-width: 600px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7);
  font-size: .8rem; letter-spacing: 1px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero-scroll .mouse::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold); border-radius: 3px; animation: scrolld 1.6s infinite; }
@keyframes scrolld { 0%{ opacity: 0; top: 8px;} 40%{ opacity: 1;} 80%{ opacity: 0; top: 22px;} 100%{ opacity: 0;} }

.hero-dots { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 10px; z-index: 3; }
.hero-dots button { width: 36px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.3); transition: .3s; }
.hero-dots button.active { background: var(--gold); width: 54px; }

/* =========================================================
   Stats strip
   ========================================================= */
.stats { background: var(--navy); position: relative; z-index: 2; margin-top: -1px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-block: 56px; }
.stat { text-align: center; color: #fff; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; left: -15px; top: 12px; bottom: 12px; width: 1px; background: rgba(255,255,255,.12); }
.stat .num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat .num small { font-size: 1.6rem; }
.stat .label { margin-top: 10px; color: rgba(255,255,255,.75); font-size: .98rem; }

/* =========================================================
   About
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .img-main { border-radius: var(--radius); box-shadow: var(--shadow-md); height: 540px; width: 100%; object-fit: cover; }
.about-media .img-float { position: absolute; bottom: -34px; left: -34px; width: 240px; height: 200px; object-fit: cover; border-radius: var(--radius-sm); border: 6px solid var(--cream); box-shadow: var(--shadow-md); }
.about-exp { position: absolute; top: 30px; right: -26px; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #2a2207; padding: 22px 26px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); text-align: center; }
.about-exp b { display: block; font-family: var(--font-head); font-size: 2.4rem; line-height: 1; }
.about-exp span { font-size: .82rem; font-weight: 700; }
.about-list { display: grid; gap: 18px; margin: 28px 0 34px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--gold-deep); display: grid; place-items: center; }
.about-list .ic svg { width: 22px; height: 22px; }
.about-list h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 2px; }
.about-list p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.about-sign { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.about-sign .who { font-weight: 700; color: var(--navy); }
.about-sign .who small { display: block; color: var(--muted); font-weight: 500; }

/* =========================================================
   Services
   ========================================================= */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ic { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--gold-soft); display: grid; place-items: center; margin-bottom: 22px; transition: .4s; }
.service-ic svg { width: 30px; height: 30px; }
.service-card:hover .service-ic { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #fff; transform: rotate(-6deg); }
.service-card h3 { font-family: var(--font-head); font-size: 1.32rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold-deep); font-weight: 700; font-size: .92rem; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s; }
.service-card:hover .more svg { transform: translateX(-5px); }

/* =========================================================
   Projects
   ========================================================= */
.proj-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 40px 0 46px; }
.proj-filter button { padding: 11px 24px; border-radius: 50px; font-weight: 700; font-size: .92rem; color: var(--navy);
  background: #fff; border: 1px solid var(--line); transition: .3s; }
.proj-filter button:hover { border-color: var(--gold); color: var(--gold-deep); }
.proj-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.proj-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 400px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s; }
.proj-card.hide { display: none; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.proj-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.proj-card:hover img { transform: scale(1.1); }
.proj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,28,36,.92) 0%, rgba(12,28,36,.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; }
.proj-tag { position: absolute; top: 20px; right: 20px; background: var(--gold); color: #2a2207; font-weight: 700; font-size: .78rem; padding: 6px 14px; border-radius: 50px; }
.proj-status { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); color: #fff; font-weight: 600; font-size: .76rem; padding: 6px 13px; border-radius: 50px; border: 1px solid rgba(255,255,255,.25); }
.proj-overlay h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 6px; transform: translateY(8px); transition: transform .4s; }
.proj-loc { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.82); font-size: .92rem; }
.proj-loc svg { width: 15px; height: 15px; color: var(--gold-soft); }
.proj-meta { display: flex; gap: 22px; margin-top: 16px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s; }
.proj-card:hover .proj-meta { max-height: 60px; opacity: 1; }
.proj-meta div { font-size: .85rem; color: rgba(255,255,255,.8); }
.proj-meta b { display: block; color: var(--gold-soft); font-family: var(--font-head); font-size: 1.1rem; }
.proj-link { position: absolute; bottom: 26px; left: 26px; width: 46px; height: 46px; border-radius: 50%; background: var(--gold);
  color: #2a2207; display: grid; place-items: center; transform: scale(0) rotate(-45deg); transition: transform .4s var(--ease); }
.proj-card:hover .proj-link { transform: scale(1) rotate(0); }
.proj-link svg { width: 20px; height: 20px; }

/* =========================================================
   Why us  (dark band)
   ========================================================= */
.why { background: var(--navy); color: #fff; overflow: hidden; }
.why::before { content: ""; position: absolute; inset: 0; background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=60"); background-size: cover; background-position: center; opacity: .08; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.why .section-title { color: #fff; }
.why .section-lead { color: rgba(255,255,255,.72); }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-feat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px 24px; transition: .4s; }
.why-feat:hover { background: rgba(201,162,39,.1); border-color: rgba(201,162,39,.4); transform: translateY(-6px); }
.why-feat .n { font-family: var(--font-head); font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.why-feat .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(201,162,39,.14); color: var(--gold-soft); display: grid; place-items: center; margin-bottom: 18px; }
.why-feat .ic svg { width: 26px; height: 26px; }
.why-feat h4 { font-size: 1.14rem; margin-bottom: 8px; }
.why-feat p { color: rgba(255,255,255,.66); font-size: .94rem; }

/* =========================================================
   Process timeline
   ========================================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 34px; right: 12%; left: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.process-step { text-align: center; position: relative; }
.process-num { width: 70px; height: 70px; margin: 0 auto 22px; border-radius: 50%; background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-deep);
  position: relative; z-index: 2; transition: .4s; }
.process-step:hover .process-num { background: var(--gold); color: #fff; border-color: var(--gold); transform: scale(1.08); box-shadow: 0 12px 26px var(--gold-glow); }
.process-step h4 { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .94rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.testi { background: var(--cream-2); }
.testi-track { overflow: hidden; margin-top: 50px; }
.testi-rail { display: flex; transition: transform .6s var(--ease); }
.testi-card { flex: 0 0 100%; padding: 0 8px; }
.testi-inner { background: #fff; border-radius: var(--radius); padding: 48px clamp(28px,5vw,60px); box-shadow: var(--shadow-sm); max-width: 880px; margin-inline: auto; position: relative; }
.testi-quote { font-family: var(--font-head); font-size: 5rem; color: var(--gold); opacity: .2; line-height: .6; position: absolute; top: 30px; right: 34px; }
.testi-inner p { font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: var(--navy); line-height: 1.8; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.testi-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold-soft); }
.testi-author b { display: block; color: var(--navy); font-size: 1.05rem; }
.testi-author span { color: var(--muted); font-size: .9rem; }
.testi-stars { color: var(--gold); margin-top: 6px; letter-spacing: 2px; }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.testi-nav button { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); color: var(--navy); display: grid; place-items: center; transition: .3s; }
.testi-nav button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.testi-nav button svg { width: 20px; height: 20px; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner { padding-block: clamp(60px, 8vw, 110px); color: #fff; text-align: center; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1600&q=70") center/cover fixed; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(20,48,61,.94), rgba(20,48,61,.7)); }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 600px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.contact-info { background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(34px, 4vw, 52px); position: relative; overflow: hidden; }
.contact-info::after { content: ""; position: absolute; bottom: -60px; left: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.3), transparent 70%); }
.contact-info h3 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,.72); margin-bottom: 34px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; position: relative; z-index: 2; }
.contact-line .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: rgba(201,162,39,.16); color: var(--gold-soft); display: grid; place-items: center; }
.contact-line .ic svg { width: 22px; height: 22px; }
.contact-line h5 { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 3px; font-weight: 600; }
.contact-line p { font-size: 1.06rem; font-weight: 600; }
.contact-socials { display: flex; gap: 12px; margin-top: 34px; position: relative; z-index: 2; }
.contact-socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: .3s; }
.contact-socials a:hover { background: var(--gold); color: #2a2207; border-color: var(--gold); transform: translateY(-4px); }
.contact-socials svg { width: 20px; height: 20px; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px,4vw,48px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit;
  font-size: .98rem; color: var(--ink); background: var(--cream); transition: border-color .3s, box-shadow .3s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-glow); background: #fff; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.form-success { display: none; align-items: center; gap: 10px; background: rgba(201,162,39,.12); border: 1px solid var(--gold-soft); color: var(--gold-deep); padding: 14px 18px; border-radius: 12px; font-weight: 600; margin-top: 8px; }
.form-success.show { display: flex; }

.map-wrap { margin-top: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 56px; }
.footer-brand img { height: 92px; margin-bottom: 20px; }
.footer-brand p { font-size: .96rem; line-height: 1.8; max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1.16rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; bottom: 0; right: 0; width: 40px; height: 2px; background: var(--gold); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: color .3s, padding .3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold-soft); padding-right: 6px; }
.footer-links a::before { content: "›"; color: var(--gold); font-weight: 700; }
.footer-news p { font-size: .94rem; margin-bottom: 18px; }
.news-form { display: flex; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: 5px; }
.news-form input { flex: 1; background: transparent; border: none; color: #fff; padding: 12px 18px; font-family: inherit; }
.news-form input::placeholder { color: rgba(255,255,255,.45); }
.news-form input:focus { outline: none; }
.news-form button { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #2a2207; display: grid; place-items: center; flex: none; transition: .3s; }
.news-form button:hover { background: var(--gold-soft); transform: scale(1.06); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: .9rem; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox { position: fixed; inset: 0; background: rgba(8,18,24,.92); z-index: 1000; display: none; place-items: center; padding: 30px; }
.lightbox.show { display: grid; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 26px; left: 26px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; display: grid; place-items: center; transition: .3s; }
.lightbox-close:hover { background: var(--gold); color: #2a2207; }

/* Back to top */
.to-top { position: fixed; bottom: 28px; left: 28px; width: 52px; height: 52px; border-radius: 50%; background: var(--gold);
  color: #2a2207; display: grid; place-items: center; box-shadow: var(--shadow-md); z-index: 800; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: .4s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy); color: var(--gold); }
.to-top svg { width: 22px; height: 22px; }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(37,211,102,.4); z-index: 800; transition: .3s; animation: floaty 3s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================
   Scroll progress bar
   ========================================================= */
.scroll-progress { position: fixed; top: 0; right: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
  z-index: 999; box-shadow: 0 0 12px var(--gold-glow); transition: width .1s linear; }

/* =========================================================
   Hero rotating word
   ========================================================= */
.rotator { display: inline-block; min-width: 2ch;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .4s ease, transform .4s ease; }
.rotator.swap { opacity: 0; transform: translateY(12px); }

/* =========================================================
   Vision / Mission / Goals tabs
   ========================================================= */
.vmg { margin: 26px 0 32px; }
.vmg-tabs { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.vmg-tab { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 50px;
  font-weight: 700; font-size: .95rem; color: var(--navy); background: #fff; border: 1.5px solid var(--line);
  transition: .3s; }
.vmg-tab svg { width: 18px; height: 18px; }
.vmg-tab:hover { border-color: var(--gold); color: var(--gold-deep); }
.vmg-tab.active { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #2a2207; border-color: transparent; box-shadow: 0 10px 24px var(--gold-glow); }
.vmg-panels { position: relative; }
.vmg-panel { display: none; }
.vmg-panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.vmg-panel p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.vmg-goals { display: grid; gap: 14px; margin-top: 6px; }
.vmg-goals li { display: flex; gap: 12px; align-items: flex-start; color: var(--navy); font-weight: 600; }
.vmg-goals .gn { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--cream-2); color: var(--gold-deep);
  display: grid; place-items: center; font-family: var(--font-head); font-size: .95rem; }
.vmg-goals small { display: block; color: var(--muted); font-weight: 500; font-size: .92rem; }

/* =========================================================
   Signature Standards (interactive pillars)
   ========================================================= */
.standards { background: var(--navy); color: #fff; overflow: hidden; }
.standards::before { content: ""; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18), transparent 70%); }
.standards .section-title { color: #fff; }
.standards .section-lead { color: rgba(255,255,255,.72); }
.std-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: center; margin-top: 54px; position: relative; }
.std-list { display: grid; gap: 14px; }
.std-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: .35s; position: relative; overflow: hidden; }
.std-item::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.std-item:hover { background: rgba(255,255,255,.07); }
.std-item.active { background: rgba(201,162,39,.12); border-color: rgba(201,162,39,.4); }
.std-item.active::before { transform: scaleY(1); }
.std-item .ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: rgba(201,162,39,.14); color: var(--gold-soft);
  display: grid; place-items: center; transition: .35s; }
.std-item.active .ic { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #2a2207; }
.std-item .ic svg { width: 26px; height: 26px; }
.std-item h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 4px; }
.std-item p { color: rgba(255,255,255,.62); font-size: .94rem; line-height: 1.6; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .35s, margin .35s; }
.std-item.active p { max-height: 120px; opacity: 1; margin-top: 6px; }
.std-show { position: relative; border-radius: var(--radius); overflow: hidden; height: 520px; box-shadow: var(--shadow-lg); }
.std-show img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity .7s var(--ease), transform 1.2s var(--ease); }
.std-show img.active { opacity: 1; transform: scale(1); }
.std-show::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,28,36,.7), transparent 50%); }
.std-badge { position: absolute; bottom: 24px; right: 24px; z-index: 2; background: rgba(20,48,61,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,39,.4); color: var(--gold-soft); padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: .9rem; }

/* =========================================================
   Cinematic experience narrative
   ========================================================= */
.experience { color: #fff; overflow: hidden; padding-block: clamp(80px, 11vw, 150px); }
.experience::before { content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1920&q=80") center/cover; }
.experience::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,22,28,.92), rgba(10,22,28,.82) 50%, rgba(10,22,28,.95)); }
.exp-head { max-width: 760px; margin-bottom: 64px; }
.exp-head .section-title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); }
.exp-head .section-lead { color: rgba(255,255,255,.78); font-size: 1.16rem; }
.exp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.exp-step { padding: 0 26px; position: relative; }
.exp-step:not(:last-child)::after { content: ""; position: absolute; left: 0; top: 12px; bottom: 0; width: 1px; background: rgba(255,255,255,.12); }
.exp-step .chap { font-family: var(--font-head); font-size: .9rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 14px; }
.exp-step .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); margin-bottom: 24px; box-shadow: 0 0 0 6px rgba(201,162,39,.18); }
.exp-step h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 12px; }
.exp-step p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.85; }
.exp-quote { margin-top: 70px; text-align: center; max-width: 880px; margin-inline: auto; }
.exp-quote p { font-family: var(--font-head); font-size: clamp(1.4rem, 3.2vw, 2.2rem); line-height: 1.6; color: #fff; font-weight: 500; }
.exp-quote p .hl { color: var(--gold); }
.exp-quote span { display: inline-block; margin-top: 20px; color: rgba(255,255,255,.6); letter-spacing: 1px; }

/* =========================================================
   Scroll reveal
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-media .img-main { height: 440px; }
  .std-grid { grid-template-columns: 1fr; gap: 36px; }
  .std-show { height: 380px; order: -1; }
  .exp-steps { grid-template-columns: 1fr 1fr; gap: 44px 0; }
  .exp-step:nth-child(2)::after { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn, .lang-toggle { display: none; }
  .burger { display: flex; }
  .topbar-info span.hide-sm { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .why-features { grid-template-columns: 1fr; }
  .exp-steps { grid-template-columns: 1fr; }
  .exp-step { padding: 0; }
  .exp-step:not(:last-child) { padding-bottom: 30px; }
  .exp-step::after { display: none !important; }
}
@media (max-width: 620px) {
  .services-grid, .proj-grid, .process-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .topbar-info { gap: 16px; }
  .topbar-social { display: none; }
  .about-media .img-float { width: 160px; height: 140px; left: -12px; bottom: -22px; }
  .about-exp { right: 12px; padding: 16px 18px; }
  .about-exp b { font-size: 1.8rem; }
  .hero-dots { right: 50%; transform: translateX(50%); }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* =========================================================
   Project Gallery Marquee  (AnimatedMarqueeHero — native)
   ========================================================= */
.gallery { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); overflow: hidden; }
.gallery-head { max-width: 720px; margin: 0 auto 12px; text-align: center; }
.gallery-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; margin-bottom: 50px; }
.marquee { position: relative; display: flex; flex-direction: column; gap: 22px;
  -webkit-mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent); }
.marquee-row { display: flex; gap: 22px; width: max-content; animation: marquee 60s linear infinite; }
.marquee-row.reverse { animation-direction: reverse; animation-duration: 75s; }
.marquee:hover .marquee-row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-card { position: relative; width: 250px; aspect-ratio: 3/4; flex: none; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s; }
.mq-card:nth-child(odd) { transform: rotate(-2deg); }
.mq-card:nth-child(even) { transform: rotate(2deg); }
.mq-card:hover { transform: rotate(0) scale(1.05); box-shadow: var(--shadow-lg); z-index: 3; }
.mq-card img { width: 100%; height: 100%; object-fit: cover; }
.mq-card .cap { position: absolute; inset: auto 0 0 0; padding: 26px 16px 16px; color: #fff;
  background: linear-gradient(to top, rgba(12,28,36,.9), transparent); font-weight: 700; font-size: 1rem; }
.mq-card .cap small { display: block; font-weight: 500; font-size: .8rem; color: var(--gold-soft); margin-top: 2px; }
.mq-card .tag { position: absolute; top: 12px; right: 12px; background: var(--gold); color: #2a2207; font-size: .72rem;
  font-weight: 700; padding: 5px 12px; border-radius: 50px; }

/* =========================================================
   Partners & Accreditations
   ========================================================= */
.partners { background: var(--cream); }
.partners-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 50px; }
.partner { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.partner:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.partner .logo { height: 64px; display: grid; place-items: center; }
.partner .logo svg { height: 100%; width: auto; }
.partner b { color: var(--navy); font-size: .98rem; font-family: var(--font-head); }
.partner span { color: var(--muted); font-size: .8rem; }

/* =========================================================
   Sub-page hero banner
   ========================================================= */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: center; color: #fff;
  margin-top: -128px; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(12,28,36,.93), rgba(12,28,36,.6)); }
.page-hero-inner { padding-top: 160px; padding-bottom: 70px; max-width: 760px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.2; margin-bottom: 16px; }
.page-hero h1 .grad { background: linear-gradient(120deg, var(--gold-soft), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 600px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* =========================================================
   Sales — unit cards
   ========================================================= */
.sales-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 40px 0 46px; }
.sales-filter button { padding: 11px 24px; border-radius: 50px; font-weight: 700; font-size: .92rem; color: var(--navy);
  background: #fff; border: 1px solid var(--line); transition: .3s; }
.sales-filter button:hover { border-color: var(--gold); color: var(--gold-deep); }
.sales-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.units-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.unit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s; display: flex; flex-direction: column; }
.unit-card.hide { display: none; }
.unit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.unit-media { position: relative; height: 220px; overflow: hidden; }
.unit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.unit-card:hover .unit-media img { transform: scale(1.08); }
.status-pill { position: absolute; top: 14px; right: 14px; padding: 6px 14px; border-radius: 50px; font-weight: 700;
  font-size: .78rem; backdrop-filter: blur(6px); }
.status-pill.available { background: rgba(36,150,90,.9); color: #fff; }
.status-pill.sold { background: rgba(180,40,40,.9); color: #fff; }
.status-pill.soon { background: rgba(201,162,39,.92); color: #2a2207; }
.unit-type { position: absolute; bottom: 14px; right: 14px; background: rgba(20,48,61,.7); backdrop-filter: blur(6px);
  color: #fff; font-size: .8rem; font-weight: 600; padding: 5px 13px; border-radius: 50px; }
.unit-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.unit-body h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); margin-bottom: 6px; }
.unit-loc { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.unit-loc svg { width: 15px; height: 15px; color: var(--gold); }
.unit-specs { display: flex; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.unit-specs div { display: flex; flex-direction: column; gap: 3px; font-size: .82rem; color: var(--muted); }
.unit-specs b { color: var(--navy); font-family: var(--font-head); font-size: 1.05rem; }
.unit-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.price-tag { display: flex; flex-direction: column; }
.price-tag small { color: var(--muted); font-size: .78rem; }
.price-tag b { color: var(--gold-deep); font-family: var(--font-head); font-size: 1.45rem; line-height: 1; }
.price-tag.sold b { color: var(--muted); text-decoration: line-through; font-size: 1.2rem; }
.unit-foot .btn { padding: 10px 20px; font-size: .85rem; }

/* =========================================================
   Investment portfolios
   ========================================================= */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 54px; align-items: stretch; }
.plan-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 38px 30px;
  display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; position: relative; }
.plan-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.plan-card.featured::before { content: "الأكثر طلباً"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #2a2207; font-weight: 700; font-size: .78rem;
  padding: 6px 18px; border-radius: 50px; box-shadow: 0 8px 18px var(--gold-glow); }
.plan-card h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.plan-card .roi { font-family: var(--font-head); font-size: 2.8rem; color: var(--gold-deep); line-height: 1; margin: 14px 0 4px; }
.plan-card .roi small { font-size: 1rem; color: var(--muted); }
.plan-card .term { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.plan-feats { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan-feats li { display: flex; gap: 10px; align-items: flex-start; color: var(--navy); font-size: .95rem; }
.plan-feats svg { flex: none; width: 18px; height: 18px; color: var(--gold-deep); margin-top: 4px; }

/* =========================================================
   Marketers page
   ========================================================= */
.mk-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.mk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: .4s; }
.mk-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.mk-card .ic { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold-soft); display: grid; place-items: center; margin-bottom: 20px; }
.mk-card .ic svg { width: 28px; height: 28px; }
.mk-card h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; }
.mk-card p { color: var(--muted); font-size: .95rem; }
.mk-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 50px; }
.mk-step { text-align: center; }
.mk-step .n { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--cream-2);
  color: var(--gold-deep); display: grid; place-items: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; }
.mk-step h4 { color: var(--navy); margin-bottom: 6px; font-size: 1.05rem; }
.mk-step p { color: var(--muted); font-size: .9rem; }

/* =========================================================
   Reviews page
   ========================================================= */
.rating-summary { display: flex; align-items: center; gap: 40px; background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 40px clamp(28px,4vw,54px); margin-bottom: 54px; flex-wrap: wrap; }
.rating-big { text-align: center; }
.rating-big b { font-family: var(--font-head); font-size: 4rem; color: var(--gold); line-height: 1; }
.rating-big .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; }
.rating-big span { display: block; color: rgba(255,255,255,.7); margin-top: 6px; font-size: .9rem; }
.rating-bars { flex: 1; min-width: 240px; display: grid; gap: 10px; }
.rbar { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.rbar .lbl { width: 30px; color: rgba(255,255,255,.8); }
.rbar .track { flex: 1; height: 8px; border-radius: 6px; background: rgba(255,255,255,.12); overflow: hidden; }
.rbar .fill { height: 100%; background: linear-gradient(90deg, var(--gold-soft), var(--gold)); border-radius: 6px; }
.reviews-grid { columns: 3; column-gap: 26px; }
.review-card { break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 26px; transition: .4s; }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { color: var(--ink); line-height: 1.8; margin-bottom: 18px; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-soft); }
.review-card .who b { color: var(--navy); font-size: .98rem; display: block; }
.review-card .who span { color: var(--muted); font-size: .82rem; }

/* =========================================================
   Responsive — new components
   ========================================================= */
@media (max-width: 1024px) {
  .partners-strip { grid-template-columns: repeat(3, 1fr); }
  .units-grid, .plans-grid, .mk-benefits { grid-template-columns: repeat(2, 1fr); }
  .mk-steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { columns: 2; }
}
@media (max-width: 640px) {
  .partners-strip { grid-template-columns: repeat(2, 1fr); }
  .units-grid, .plans-grid, .mk-benefits, .mk-steps { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .mq-card { width: 190px; }
  .rating-summary { flex-direction: column; align-items: stretch; gap: 26px; }
}
