/* ═══════════════════════════════════════════════════════
   ESTSSMAR — القطاع العقاري
   Luxury Navy × Brand Teal × REGA Green × Gold
   UI/UX Pro Max: Trust & Authority + Brand Identity
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  /* ── Brand Navy ── */
  --navy:          #0F172A;
  --navy-mid:      #1A2744;
  --navy-light:    #243460;

  /* ── REGA Green (هيئة العقار) ── */
  --green:         #1B6B3A;
  --green-mid:     #1E8049;
  --green-light:   #27A35B;
  --green-pale:    rgba(27, 107, 58, 0.08);
  --green-border:  rgba(27, 107, 58, 0.28);

  /* ── Gold (luxury accent) ── */
  --gold:          #C9A84C;
  --gold-light:    #E2C06E;
  --gold-pale:     rgba(201, 168, 76, 0.08);
  --gold-border:   rgba(201, 168, 76, 0.28);

  /* ── Brand Teal (استثمار main identity) ── */
  --brand:         #5CC7D1;
  --brand-dark:    #3AABB5;
  --brand-deep:    #1E8A96;
  --brand-pale:    rgba(92, 199, 209, 0.08);
  --brand-border:  rgba(92, 199, 209, 0.30);
  --sky-bg:        #EDF8FA;

  /* ── Neutrals (warm) ── */
  --white:         #FAFAF8;
  --off-white:     #F5F3EF;
  --gray-50:       #F8F6F2;
  --gray-100:      #EDE9E3;
  --gray-200:      #D4CEC4;
  --gray-400:      #9E9888;
  --gray-600:      #6B6456;
  --gray-800:      #3A342C;
  --text:          #1C1510;

  /* ── WhatsApp ── */
  --wa:            #25D366;
  --wa-dark:       #1EBE5D;

  /* ── Typography ── */
  --font-serif:    'Cormorant', 'Georgia', serif;
  --font-sans:     'Tajawal', 'Segoe UI', sans-serif;

  /* ── Spacing / Effects ── */
  --radius:        14px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg:     0 10px 50px rgba(15, 23, 42, 0.18);
  --shadow-green:  0 8px 32px rgba(27, 107, 58, 0.22);
  --shadow-gold:   0 8px 32px rgba(201, 168, 76, 0.22);
  --transition:    all 0.28s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { line-height: 1.3; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin-bottom: 1rem; color: var(--gray-800); }
a  { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green); }
ul, ol { padding-right: 1.5rem; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-sans); border: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(92,199,209,0.2);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  min-height: 70px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-img {
  width: 44px; height: 44px;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(92,199,209,0.35));
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-sans);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); line-height: 1;
  display: flex; align-items: center; gap: 0.4rem;
}
.logo-sep { color: var(--brand); font-weight: 300; opacity: 0.7; }
.logo-sector { color: var(--brand); }
.logo-sub {
  font-size: 0.6rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-top: 3px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.05rem; }
.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem; font-weight: 500;
  padding: 0.45rem 0.65rem; border-radius: 6px;
  white-space: nowrap; transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--brand-pale);
  color: var(--brand);
  border: 1px solid var(--brand-border);
}
.main-nav a.active { color: var(--brand); }

/* Nav Request CTA */
.nav-request {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--brand); color: var(--navy) !important;
  font-weight: 700 !important; font-size: 0.82rem !important;
  padding: 0.5rem 1.1rem !important; border-radius: 8px !important;
  margin-right: 0.5rem;
}
.nav-request:hover { background: var(--brand-dark) !important; transform: translateY(-1px); color: var(--navy) !important; }

/* Nav WhatsApp CTA */
.nav-wa {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--wa); color: var(--white) !important;
  font-weight: 700 !important; font-size: 0.82rem !important;
  padding: 0.5rem 1.1rem !important; border-radius: 8px !important;
  margin-right: 0.5rem;
}
.nav-wa:hover { background: var(--wa-dark) !important; transform: translateY(-1px); }
.nav-wa svg { width: 15px; height: 15px; fill: currentColor; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(150deg, #060D1A 0%, #0F172A 45%, #0A1A0E 100%);
  padding: 6rem 1.5rem 5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(92,199,209,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(201,168,76,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(15,23,42,0.6) 0%, transparent 60%);
}
/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(201,168,76,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }

/* REGA badge */
.rega-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(92,199,209,0.10);
  border: 1px solid rgba(92,199,209,0.45);
  color: var(--brand);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 1.25rem; border-radius: 50px;
  margin-bottom: 1.75rem;
}
.rega-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Division ribbon */
.division-ribbon {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem; color: var(--brand);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.division-ribbon::before,
.division-ribbon::after {
  content: '';
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand));
}
.division-ribbon::after {
  background: linear-gradient(90deg, var(--brand), transparent);
}

.hero h1 {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.hero h1 em { color: var(--brand); font-style: normal; font-weight: 800; }
.hero h1 .text-green { color: #5DCB89; font-style: normal; }

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem; line-height: 1.85;
  max-width: 640px; margin: 0 auto 2.5rem;
}
.hero-desc a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* Hero CTAs */
.hero-btns {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem;
}
.btn-wa-hero {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--wa); color: var(--white);
  font-weight: 800; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-wa-hero:hover { background: var(--wa-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.45); }
.btn-wa-hero svg { width: 20px; height: 20px; fill: currentColor; }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--gold-border);
  color: var(--gold); font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 700px; margin: 0 auto;
  border: 1px solid rgba(92,199,209,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: rgba(15,23,42,0.5);
}
.stat-item {
  padding: 1.1rem 0.5rem; text-align: center;
  border-left: 1px solid rgba(92,199,209,0.12);
}
.stat-item:last-child { border-left: none; }
.stat-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.9rem; font-weight: 700;
  line-height: 1;
}
.stat-num.green { color: #5DCB89; }
.stat-num.gold  { color: var(--brand); }
.stat-label {
  display: block;
  font-size: 0.67rem; color: rgba(255,255,255,0.45);
  margin-top: 0.3rem; letter-spacing: 0.04em;
}

/* Hero wave */
.hero-wave {
  position: absolute; bottom: -1px;
  left: 0; right: 0; height: 60px; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C200,70 400,10 600,40 C800,70 1000,10 1200,40 L1200,60 L0,60 Z' fill='%23F8F6F2'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  color: var(--brand-deep); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: var(--gray-600); max-width: 580px;
  margin: 0 auto; font-size: 1rem;
}
.divider-rega {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  border-radius: 2px; margin: 0.75rem auto 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS (General)
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); text-decoration: none;
  line-height: 1; border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: var(--wa-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-outline-green { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline-green:hover { background: var(--green-pale); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }

.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-border); }

.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #145A30);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(27,107,58,0.25);
}
.card-icon svg { width: 26px; height: 26px; fill: var(--white); }
.card-icon.gold-bg { background: linear-gradient(135deg, var(--gold), #A8842A); }
.card-icon.navy-bg { background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); }

.card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.card p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; line-height: 1.75; }

/* Service card */
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow); transition: var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: var(--green);
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.service-card .svc-num {
  font-family: var(--font-sans);
  font-size: 2.5rem; font-weight: 700;
  color: var(--green-pale); line-height: 1;
  margin-bottom: 0.75rem;
  -webkit-text-stroke: 1px var(--green-border);
  color: transparent;
}
.service-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p  { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER (WhatsApp)
   ═══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #060D1A 0%, #0A1A0E 50%, #0F172A 100%);
  padding: 5rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(27,107,58,0.15) 0%, transparent 70%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.cta-banner h2 span { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-wa-large {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa); color: var(--white);
  font-size: 1.05rem; font-weight: 800;
  padding: 1rem 2.5rem; border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-wa-large:hover { background: var(--wa-dark); color: var(--white); transform: translateY(-3px); }
.btn-wa-large svg { width: 22px; height: 22px; fill: currentColor; }

/* ═══════════════════════════════════════════════════════
   MAIN SITE LINK BANNER
   ═══════════════════════════════════════════════════════ */
.main-site-banner {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.main-site-banner p {
  margin: 0; color: var(--gray-800); font-size: 0.92rem;
}
.main-site-banner strong { color: var(--navy); }
.main-site-banner a.visit-main {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--navy); color: var(--white);
  font-size: 0.85rem; font-weight: 700;
  padding: 0.55rem 1.25rem; border-radius: 8px;
  transition: var(--transition); white-space: nowrap;
}
.main-site-banner a.visit-main:hover { background: var(--navy-mid); transform: translateY(-2px); }
.main-site-banner a.visit-main svg { width: 14px; height: 14px; fill: currentColor; }

/* ═══════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 1.5rem; padding: 1.5rem 0; position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; right: 35px; top: 72px;
  width: 2px; height: calc(100% - 48px);
  background: linear-gradient(180deg, var(--green), var(--green-border));
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #145A30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
  box-shadow: var(--shadow-green);
}
.step-num span {
  font-family: var(--font-sans);
  font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.step-content { padding-top: 1rem; }
.step-content h3 { margin-bottom: 0.4rem; color: var(--navy); }
.step-content p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* ═══════════════════════════════════════════════════════
   FEATURE LIST
   ═══════════════════════════════════════════════════════ */
.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--gray-800);
}
.feature-list li::before {
  content: '';
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #145A30);
  flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--gray-50);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 0.5rem;
  list-style: none; padding: 0; margin: 0;
  font-size: 0.83rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--gray-400); }
.breadcrumb-list a { color: var(--navy); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--green); }
.breadcrumb-list .current { color: var(--gray-600); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(150deg, #060D1A 0%, #0A1A0E 50%, #0F172A 100%);
  padding: 4rem 1.5rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(27,107,58,0.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.page-hero h1 span { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto; font-size: 1.02rem; }
.page-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 50px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C300,55 900,5 1200,30 L1200,50 L0,50 Z' fill='%23F8F6F2'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}
.page-hero-wave.white-wave {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C300,55 900,5 1200,30 L1200,50 L0,50 Z' fill='%23FAFAF8'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}

/* ═══════════════════════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════════════════════ */
.project-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 1.5rem; position: relative; overflow: hidden;
}
.project-card-header::before {
  content: '';
  position: absolute; top: -20px; left: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(27,107,58,0.15);
}
.project-card-type {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 4px;
  margin-bottom: 0.75rem; letter-spacing: 0.05em;
}
.project-card-title {
  color: var(--white); font-size: 1rem;
  font-weight: 700; line-height: 1.4;
}
.project-card-body { padding: 1.1rem 1.25rem 1.25rem; }

/* Unified project specs grid */
.project-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.55rem; margin-top: 0.6rem;
}
.spec {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.spec-label {
  font-size: 0.68rem; color: var(--gray-400);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.spec-val {
  font-size: 0.82rem; color: var(--navy);
  font-weight: 700;
}
.spec.highlight { background: var(--green-pale); border-color: var(--green-border); }
.spec.highlight .spec-val { color: var(--green); }

/* Legacy meta (keep for compat) */
.project-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.75rem; }
.project-meta span {
  font-size: 0.78rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 0.3rem;
}
.project-meta span::before { content: '•'; color: var(--green); }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem; background: none; border: none;
  text-align: right; font-size: 0.98rem; font-weight: 600;
  color: var(--navy); cursor: pointer; gap: 0.75rem;
  font-family: var(--font-sans); transition: var(--transition);
}
.faq-question:hover { background: var(--green-pale); }
.faq-question.open { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.25s; color: var(--green); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
  display: none; padding: 1.2rem 1.4rem;
  font-size: 0.93rem; color: var(--gray-800);
  border-top: 1px solid var(--gray-100); line-height: 1.85;
}
.faq-answer.open { display: block; }
.faq-answer a { color: var(--green); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   REQUIREMENT CARDS (Wafi page)
   ═══════════════════════════════════════════════════════ */
.req-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); padding: 1.75rem;
  box-shadow: var(--shadow); border-right: 4px solid var(--green);
  transition: var(--transition);
}
.req-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.req-card-num {
  font-family: var(--font-sans);
  font-size: 0.85rem; color: var(--green);
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.req-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.05rem; }
.req-card p  { font-size: 0.87rem; color: var(--gray-600); margin: 0; }

/* ═══════════════════════════════════════════════════════
   FINANCING CARDS
   ═══════════════════════════════════════════════════════ */
.fin-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); padding: 2rem;
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column; gap: 1rem;
}
.fin-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--gold-border); }
.fin-logo-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.bank-logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.bank-logo svg { width: 56px; height: 56px; display: block; }
.fin-card-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.fin-card-type {
  display: inline-block;
  background: var(--green-pale); border: 1px solid var(--green-border);
  color: var(--green); font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.65rem; border-radius: 4px;
}
.fin-card p { font-size: 0.87rem; color: var(--gray-600); margin: 0; }

/* ═══════════════════════════════════════════════════════
   BADGE TRUST STRIP
   ═══════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--navy);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex; justify-content: center;
  align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.75); font-size: 0.85rem;
}
.trust-item svg { width: 20px; height: 20px; fill: var(--green-light); flex-shrink: 0; }
.trust-item strong { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 500;
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--wa); color: var(--white);
  padding: 0.85rem 1.4rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none; transition: var(--transition);
  animation: wa-pulse 3s infinite;
}
.wa-float:hover { background: var(--wa-dark); color: var(--white); transform: scale(1.05); }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(92,199,209,0.18);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand-desc { font-size: 0.87rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 1rem; }
.footer-brand-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--brand-pale); border: 1px solid var(--brand-border);
  color: var(--brand); font-size: 0.8rem; font-weight: 700;
  padding: 0.45rem 1rem; border-radius: 6px;
  margin-top: 1rem; transition: var(--transition);
}
.footer-brand-link:hover { background: var(--brand); color: var(--navy); }
.footer-col h4 {
  color: var(--green-light); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); padding-right: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--green-light); }
.footer-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--green-pale); border: 1px solid var(--green-border);
  color: var(--green-light); font-size: 0.72rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 4px;
}
.footer-badge svg { width: 14px; height: 14px; fill: var(--green-light); }

/* ═══════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════ */
.text-center   { text-align: center; }
.text-green    { color: var(--green); }
.text-gold     { color: var(--gold); }
.text-navy     { color: var(--navy); }
.text-white    { color: var(--white); }
.font-serif    { font-family: var(--font-serif); }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.highlight-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(92,199,209,0.18);
}
.highlight-box h3 { color: var(--brand); margin-bottom: 0.5rem; }
.highlight-box p  { color: rgba(255,255,255,0.75); margin: 0; }

.tag {
  display: inline-block;
  background: var(--green-pale); border: 1px solid var(--green-border);
  color: var(--green); font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 4px;
}
.tag.gold-tag { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4    { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats  { grid-template-columns: repeat(2,1fr); max-width: 400px; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr 1fr; }
  .hero    { padding: 4rem 1rem 3rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: #0a1020; padding: 1rem;
    gap: 0.2rem; border-top: 1px solid rgba(201,168,76,0.15);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 1rem; width: 100%; border-radius: 8px; }
  .hamburger  { display: flex; }
  .site-header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { left: 1rem; bottom: 1rem; padding: 0.75rem 1.1rem; font-size: 0.85rem; }
  .trust-items { gap: 1.25rem; }
  .page-hero { padding: 3rem 1rem 3.5rem; }
  .main-site-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4  { grid-template-columns: 1fr; }
  .btn     { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}
