/* =============================================
   MAD AL-ZILL — SHARED STYLESHEET
   مدى الظل للمظلات والسواتر
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Cairo:wght@300;400;600;700;900&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --black:   #111111;
  --dark:    #1a1a1a;
  --darker:  #0e0e0e;
  --darkest: #0a0a0a;
  --graphite:#2B2B2B;
  --silver:  #B7B7B7;
  --gold:    #C49A6C;
  --gold-lt: #d4aa7c;
  --gold-dk: #a07848;
  --white:   #f0f0f0;
  --whatsapp:#25D366;
  --radius:  0;
  --nav-h:   72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.font-cairo   { font-family: 'Cairo', sans-serif; }
.font-tajawal { font-family: 'Tajawal', sans-serif; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
}
.section-divider {
  width: 52px; height: 2px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}
.section-divider.center { margin: 1rem auto 2rem; }

/* ── GOLD ACCENT LINE ── */
.gold-line-top {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 200;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ══════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 2px; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .45s ease, backdrop-filter .45s ease, border-color .45s ease, box-shadow .45s ease;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-color: rgba(196,154,108,.18);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}

.header-logo { display: flex; flex-direction: column; gap: .05rem; cursor: pointer; }
.logo-main {
  font-family: 'Cairo', sans-serif;
  font-weight: 900; font-size: 1.45rem;
  color: var(--gold); line-height: 1;
}
.logo-sub {
  font-family: 'Tajawal', sans-serif;
  font-size: .62rem; color: var(--silver);
  letter-spacing: .03em;
}

.header-nav { display: flex; align-items: center; gap: 2.2rem; }
.header-nav a {
  font-family: 'Cairo', sans-serif;
  font-weight: 500; font-size: .9rem;
  color: var(--silver);
  position: relative;
  transition: color .3s;
}
.header-nav a::after {
  content: ''; position: absolute;
  bottom: -3px; right: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s;
}
.header-nav a:hover, .header-nav a.active { color: var(--gold); }
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }

.header-actions { display: flex; gap: .7rem; align-items: center; }
.btn-call, .btn-wa {
  font-family: 'Cairo', sans-serif;
  font-weight: 600; font-size: .82rem;
  padding: .55rem 1.1rem;
  display: flex; align-items: center; gap: .4rem;
  transition: all .3s;
}
.btn-call { border: 1px solid rgba(196,154,108,.45); color: var(--gold); }
.btn-call:hover { background: var(--gold); color: #111; }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #1eb355; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--silver); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cairo', sans-serif;
  font-weight: 700; font-size: 1.6rem;
  color: var(--silver);
  transition: color .3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav-actions { display: flex; gap: 1rem; margin-top: 1rem; }

/* ══════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; left: 1.75rem;
  z-index: 500;
  display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1.2rem;
  background: var(--whatsapp); color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 600; font-size: .9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
  transition: transform .3s, box-shadow .3s;
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 40px rgba(37,211,102,.5); }
.wa-float svg { flex-shrink: 0; }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#site-footer {
  background: var(--darkest);
  border-top: 1px solid rgba(196,154,108,.18);
  padding: 5rem 2.5rem 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}
.footer-brand .logo-main { font-size: 2rem; margin-bottom: .15rem; }
.footer-brand p { color: var(--silver); font-size: .88rem; line-height: 1.9; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,154,108,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all .3s;
}
.footer-social a.wa-icon { border-color: rgba(37,211,102,.28); color: var(--whatsapp); }
.footer-social a:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.footer-social a.wa-icon:hover { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }

.footer-col h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700; font-size: .95rem; color: var(--white);
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(196,154,108,.15);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul li a {
  font-size: .85rem; color: var(--silver);
  display: flex; align-items: center; gap: .5rem;
  transition: color .3s;
}
.footer-col ul li a::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px;
  background: rgba(196,154,108,.4);
  border-radius: 50%; flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: .85rem; color: var(--silver); line-height: 1.7; transition: color .3s; }
.footer-contact-item a:hover { color: var(--gold); }
.btn-footer-cta {
  width: 100%; margin-top: 1.2rem;
  padding: .85rem;
  background: var(--gold); color: #111;
  font-family: 'Cairo', sans-serif;
  font-weight: 700; font-size: .9rem;
  text-align: center; display: block;
  transition: background .3s;
}
.btn-footer-cta:hover { background: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(196,154,108,.1);
  max-width: 1200px; margin: 0 auto;
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .75rem; color: rgba(183,183,183,.5); }
.footer-bottom span { font-family: 'DM Sans', sans-serif; font-size: .7rem; color: rgba(196,154,108,.4); letter-spacing: .1em; }

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(36px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.revealed { opacity:1; transform:none; }
.reveal-left  { opacity:0; transform:translateX(40px);  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-right { opacity:0; transform:translateX(-40px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-left.revealed, .reveal-right.revealed { opacity:1; transform:none; }
.stagger > *:nth-child(1){transition-delay:.05s}
.stagger > *:nth-child(2){transition-delay:.15s}
.stagger > *:nth-child(3){transition-delay:.25s}
.stagger > *:nth-child(4){transition-delay:.35s}
.stagger > *:nth-child(5){transition-delay:.45s}
.stagger > *:nth-child(6){transition-delay:.55s}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2.2rem;
  background: var(--gold); color: #111;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1rem;
  transition: background .3s, transform .2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(183,183,183,.35);
  color: var(--silver);
  font-family: 'Cairo', sans-serif; font-weight: 500; font-size: 1rem;
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  position: relative; padding: 10rem 2.5rem 5rem;
  text-align: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .18; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,17,17,.6), var(--black)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: .5rem 0 .8rem;
}
.page-hero p { color: var(--silver); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.breadcrumb-nav { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.2rem; position: relative; z-index: 2; }
.breadcrumb-nav a { font-size: .82rem; color: rgba(196,154,108,.7); transition: color .3s; }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav span { font-size: .82rem; color: rgba(183,183,183,.4); }
.breadcrumb-nav span.current { color: var(--silver); }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(196,154,108,.18);
  border-bottom: 1px solid rgba(196,154,108,.18);
  padding: 2.5rem 2.5rem;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 2.5rem;
  color: var(--gold); display: block;
}
.stat-label { font-size: .85rem; color: var(--silver); font-family: 'Tajawal', sans-serif; }

/* ══════════════════════════════════════════════
   HERO (index)
══════════════════════════════════════════════ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroPan 18s ease-in-out infinite alternate;
}
@keyframes heroPan { 0%{transform:scale(1.05) translateX(0)} 100%{transform:scale(1.08) translateX(-1%)} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.9) 40%, rgba(10,10,10,.55));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding: 6rem 2.5rem 4rem;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: .2em;
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: none;
  width: 24px; height: 1px; background: var(--gold); opacity: .5;
}
.hero-title {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1; margin-bottom: 1.2rem;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-subtitle { color: var(--silver); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-badges {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: rgba(240,240,240,.75);
  font-family: 'Cairo', sans-serif;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.scroll-indicator-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ══════════════════════════════════════════════
   SERVICES GRID (home)
══════════════════════════════════════════════ */
.services-section { padding: 6rem 0; }
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5px;
  background: rgba(196,154,108,.08);
}
.service-card-home {
  background: var(--dark);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background .35s;
}
.service-card-home::before {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.service-card-home:hover { background: #1e1e1e; }
.service-card-home:hover::before { transform: scaleY(1); }
.service-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid rgba(196,154,108,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  margin-bottom: 1.3rem;
  transition: background .3s;
}
.service-card-home:hover .service-icon-wrap { background: rgba(196,154,108,.08); }
.service-card-home h3 {
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.05rem;
  margin-bottom: .6rem;
}
.service-card-home p { font-size: .88rem; color: var(--silver); line-height: 1.8; margin-bottom: 1.2rem; }
.service-card-home .card-link {
  font-size: .8rem; color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: .4rem;
  transition: gap .3s;
}
.service-card-home:hover .card-link { gap: .7rem; }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-section { background: var(--darkest); padding: 6rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.why-item {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.12);
  padding: 1.8rem;
  transition: border-color .3s, background .3s;
}
.why-item:hover { border-color: rgba(196,154,108,.35); background: #1e1e1e; }
.why-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(196,154,108,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1rem;
  transition: background .3s;
}
.why-item:hover .why-icon { background: rgba(196,154,108,.08); }
.why-item h4 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.why-item p { font-size: .85rem; color: var(--silver); line-height: 1.8; }

/* ══════════════════════════════════════════════
   PROJECTS GRID
══════════════════════════════════════════════ */
.projects-section { padding: 6rem 0; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
}
.project-card {
  position: relative; overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.1);
  transition: border-color .3s;
}
.project-card:hover { border-color: rgba(196,154,108,.35); }
.project-card-img { overflow: hidden; height: 220px; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.project-card:hover .project-card-img img { transform: scale(1.07); }
.project-card-body { padding: 1.2rem 1.4rem; }
.project-category-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); border: 1px solid rgba(196,154,108,.3);
  padding: .2rem .7rem; margin-bottom: .6rem;
}
.project-card h3 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1rem; }

/* ══════════════════════════════════════════════
   STEPS
══════════════════════════════════════════════ */
.steps-section { background: var(--darker); padding: 6rem 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 2rem; right: 10%; left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,108,.2), transparent);
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 1.2rem;
  border: 1px solid rgba(196,154,108,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--gold);
  background: var(--darker);
}
.step-item h4 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: .5rem; }
.step-item p { font-size: .85rem; color: var(--silver); line-height: 1.8; }

/* ══════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════ */
.packages-section { padding: 6rem 0; background: var(--darkest); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.package-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.12);
  padding: 2.2rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.package-card:hover { border-color: rgba(196,154,108,.4); transform: translateY(-4px); }
.package-card.featured {
  border-color: rgba(196,154,108,.5);
  background: linear-gradient(145deg, #1e1e1e, #171717);
}
.package-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #111;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .75rem;
  padding: .3rem 1.2rem;
}
.package-name { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }
.package-price { margin-bottom: 1.5rem; }
.package-price .price-num {
  font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--gold);
}
.package-price .price-unit { font-size: .85rem; color: var(--silver); }
.package-price .price-orig { font-size: .85rem; color: var(--silver); text-decoration: line-through; margin-right: .4rem; }
.package-items { margin-bottom: 1.5rem; }
.package-items li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .85rem; color: var(--silver); padding: .4rem 0;
  border-bottom: 1px solid rgba(196,154,108,.06);
}
.package-items li::before {
  content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section { padding: 6rem 0; background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--darker);
  border: 1px solid rgba(196,154,108,.1);
  padding: 2rem;
  position: relative;
  transition: border-color .3s;
}
.testimonial-card:hover { border-color: rgba(196,154,108,.3); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; color: rgba(196,154,108,.12);
  font-family: serif; line-height: 1;
}
.testimonial-stars { color: var(--gold); letter-spacing: .1em; font-size: .9rem; margin-bottom: 1rem; }
.testimonial-text { font-size: .9rem; color: var(--silver); line-height: 1.9; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(196,154,108,.15);
  border: 1px solid rgba(196,154,108,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif; font-weight: 700; color: var(--gold); font-size: .9rem;
  overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .9rem; }
.testimonial-author-role { font-size: .78rem; color: var(--silver); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { padding: 6rem 0; }
.faq-item {
  border-bottom: 1px solid rgba(196,154,108,.12);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: right;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cairo', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--white); cursor: pointer;
  transition: color .3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.active { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(196,154,108,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  transition: transform .35s;
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding-bottom: 1.4rem;
  font-size: .9rem; color: var(--silver); line-height: 1.9;
}
.faq-answer.open { display: block; }

/* ══════════════════════════════════════════════
   BLOG / POSTS
══════════════════════════════════════════════ */
.blog-section { padding: 6rem 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.1);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover { border-color: rgba(196,154,108,.3); transform: translateY(-4px); }
.blog-card-img { overflow: hidden; height: 200px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.4rem; }
.blog-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: .8rem; }
.blog-meta span { font-size: .75rem; color: var(--silver); display: flex; align-items: center; gap: .3rem; }
.blog-card h3 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: .6rem; line-height: 1.5; }
.blog-card p { font-size: .85rem; color: var(--silver); line-height: 1.8; margin-bottom: 1rem; }
.blog-read-more { font-size: .8rem; color: var(--gold); font-family: 'DM Sans', sans-serif; }

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  position: relative; padding: 6rem 2.5rem;
  text-align: center; overflow: hidden;
  background: var(--darkest);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196,154,108,.06), transparent);
}
.cta-section-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}
.cta-section p { color: var(--silver); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-divider { margin: 1rem auto 0; }

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(196,154,108,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-text .label { font-size: .75rem; color: var(--silver); font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }
.contact-info-text .value { font-family: 'Cairo', sans-serif; font-weight: 600; font-size: .95rem; }
.contact-info-text a { transition: color .3s; }
.contact-info-text a:hover { color: var(--gold); }

.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block; margin-bottom: .5rem;
  font-size: .8rem; font-family: 'DM Sans', sans-serif;
  text-transform: uppercase; letter-spacing: .1em; color: var(--silver);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .9rem 1.1rem;
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.15);
  color: var(--white);
  font-family: 'Tajawal', sans-serif; font-size: .95rem;
  transition: border-color .3s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(196,154,108,.5); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; -webkit-appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════════════════════════════════════
   BOOKING
══════════════════════════════════════════════ */
.booking-section { padding: 6rem 0; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-sidebar-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.15);
  padding: 2rem;
}
.booking-sidebar-card h4 {
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1rem;
  border-bottom: 1px solid rgba(196,154,108,.15);
  padding-bottom: .8rem; margin-bottom: 1.2rem;
}
.booking-info-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1rem; font-size: .88rem; color: var(--silver); }
.booking-info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════
   SERVICES INDEX (list page)
══════════════════════════════════════════════ */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-list-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.1);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
}
.service-list-card:hover { border-color: rgba(196,154,108,.35); transform: translateY(-4px); }
.service-list-card-img { height: 200px; overflow: hidden; }
.service-list-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.service-list-card:hover .service-list-card-img img { transform: scale(1.06); }
.service-list-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-list-card h3 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: .6rem; }
.service-list-card p { font-size: .88rem; color: var(--silver); line-height: 1.8; flex: 1; margin-bottom: 1.2rem; }
.service-price-tag { color: var(--gold); font-size: .85rem; font-family: 'Cairo', sans-serif; font-weight: 600; margin-bottom: 1rem; }

/* ══════════════════════════════════════════════
   SERVICE SHOW
══════════════════════════════════════════════ */
.service-show-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.service-gallery { margin-bottom: 2.5rem; }
.service-main-img { width: 100%; height: 420px; object-fit: cover; margin-bottom: 1rem; }
.service-thumbs { display: flex; gap: .5rem; }
.service-thumb {
  width: 80px; height: 60px; object-fit: cover;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color .3s;
}
.service-thumb.active, .service-thumb:hover { border-color: var(--gold); }
.service-description { color: var(--silver); font-size: .95rem; line-height: 2; }
.features-list { margin: 1.5rem 0; }
.features-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .5rem 0; border-bottom: 1px solid rgba(196,154,108,.06);
  font-size: .9rem; color: var(--silver);
}
.features-list li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.service-sidebar-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.15);
  padding: 1.8rem; margin-bottom: 1.5rem;
}
.service-sidebar-card h4 {
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .95rem;
  border-bottom: 1px solid rgba(196,154,108,.1);
  padding-bottom: .7rem; margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  margin-bottom: 5rem;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 420px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 160px; height: 160px;
  border: 2px solid rgba(196,154,108,.3);
  display: flex; align-items: center; justify-content: center;
  background: var(--darkest); flex-direction: column;
  text-align: center; padding: 1.2rem;
}
.about-img-accent .num { font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--gold); }
.about-img-accent .lbl { font-size: .8rem; color: var(--silver); }
.about-text p { color: var(--silver); font-size: .95rem; line-height: 2; margin-bottom: 1.2rem; }

/* ══════════════════════════════════════════════
   BRANCHES
══════════════════════════════════════════════ */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.branch-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.1);
  padding: 2rem;
  transition: border-color .3s;
}
.branch-card:hover { border-color: rgba(196,154,108,.35); }
.branch-card.main-branch { border-color: rgba(196,154,108,.3); }
.branch-tag {
  display: inline-block;
  font-size: .68rem; color: var(--gold);
  border: 1px solid rgba(196,154,108,.3);
  padding: .15rem .7rem; margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .1em;
}
.branch-card h3 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem; }
.branch-info-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .8rem; font-size: .85rem; color: var(--silver); }
.branch-info-item svg { color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

/* ══════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════ */
.filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-chip {
  padding: .45rem 1.1rem;
  border: 1px solid rgba(196,154,108,.2);
  font-size: .8rem; color: var(--silver);
  font-family: 'Cairo', sans-serif;
  cursor: pointer; transition: all .3s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--gold); color: #111;
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════ */
.pagination-wrap {
  display: flex; justify-content: center; gap: .4rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.pagination-wrap a, .pagination-wrap span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(196,154,108,.2);
  font-size: .85rem; color: var(--silver);
  transition: all .3s;
}
.pagination-wrap a:hover, .pagination-wrap span[aria-current] {
  background: var(--gold); color: #111; border-color: var(--gold);
}

/* ══════════════════════════════════════════════
   POST LAYOUT
══════════════════════════════════════════════ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.post-body { color: var(--silver); font-size: .95rem; line-height: 2; }
.post-body h2, .post-body h3 { font-family: 'Cairo', sans-serif; font-weight: 700; color: var(--white); margin: 1.5rem 0 .8rem; }
.post-body p { margin-bottom: 1rem; }
.post-sidebar-card {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.1);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.post-sidebar-card h4 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .9rem; border-bottom: 1px solid rgba(196,154,108,.1); padding-bottom: .7rem; margin-bottom: 1rem; }
.post-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.post-tag {
  padding: .25rem .8rem; border: 1px solid rgba(196,154,108,.2);
  font-size: .75rem; color: var(--silver);
  transition: all .3s; cursor: pointer;
}
.post-tag:hover { border-color: var(--gold); color: var(--gold); }
.share-buttons { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.share-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; font-size: .8rem;
  border: 1px solid rgba(196,154,108,.2);
  color: var(--silver); transition: all .3s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-btn.wa:hover { border-color: var(--whatsapp); color: var(--whatsapp); }

/* ══════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════ */
.toast-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.toast-overlay.show { opacity: 1; pointer-events: auto; }
.toast-box {
  background: var(--dark);
  border: 1px solid rgba(196,154,108,.2);
  padding: 2.5rem;
  max-width: 400px; width: 90%;
  text-align: center;
}
.toast-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.toast-box h3 { font-family: 'Cairo', sans-serif; font-weight: 700; margin-bottom: .5rem; }
.toast-box p { color: var(--silver); font-size: .9rem; margin-bottom: 1.5rem; }
.toast-close {
  padding: .7rem 2rem;
  background: var(--gold); color: #111;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .9rem;
  cursor: pointer; border: none; transition: background .3s;
}
.toast-close:hover { background: var(--gold-lt); }

/* ══════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 5rem 2rem; }
.empty-state h3 { font-family: 'Cairo', sans-serif; font-size: 1.4rem; margin-bottom: .8rem; color: var(--silver); }
.empty-state p { font-size: .9rem; color: rgba(183,183,183,.6); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .service-show-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #site-header { padding: 1rem 1.25rem; }
  .header-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 8rem 1.25rem 3rem; }
  .hero-content { padding: 5rem 1.25rem 3rem; }
  .section-inner { padding: 0 1.25rem; }
  .cta-section { padding: 4rem 1.25rem; }
  .steps-grid::before { display: none; }
  .about-img-accent { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn-gold, .btn-outline { padding: .85rem 1.4rem; font-size: .9rem; }
  .hero-title { font-size: 2rem; }
  .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
}
