/* ============================================================
   SaudiAir — HVAC Services | Abha · Khamis Mushait · Jazan
   Design: Desert-Sky premium. Deep teal + warm sand + copper.
   Distinct from ProAir Georgetown's navy-orange palette.
   ============================================================ */

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

:root {
  /* Brand palette — Desert Sky */
  --teal:        #0D5E6E;
  --teal-deep:   #083D4A;
  --teal-mid:    #146B7D;
  --teal-soft:   #1A8498;
  --teal-pale:   #E8F4F6;
  --copper:      #B8692A;
  --copper-light:#D4874A;
  --copper-pale: #FDF3EC;
  --sand:        #F5EDD9;
  --sand-dark:   #E8D9B8;
  --cream:       #FDFAF4;
  --white:       #FFFFFF;
  --dark:        #0A2A30;
  --dark-mid:    #12404A;
  --text-main:   #1A3A40;
  --text-mid:    #2D5560;
  --text-muted:  #6A8E96;
  --border:      #C8DDE2;
  --border-soft: #E2EFF2;

  /* Typography */
  --font-ar-display: 'Cairo', 'Tajawal', sans-serif;
  --font-ar-body:    'Tajawal', 'Cairo', sans-serif;
  --font-en-display: 'DM Serif Display', Georgia, serif;
  --font-en-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-v: 88px;
  --max-w: 1160px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 24px;

  /* Shadows */
  --s-sm: 0 2px 8px rgba(10,42,48,.08);
  --s-md: 0 6px 24px rgba(10,42,48,.12);
  --s-lg: 0 12px 48px rgba(10,42,48,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Arabic Base (RTL default) ── */
body {
  font-family: var(--font-ar-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.75;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

/* ── English override (LTR) ── */
body.en {
  font-family: var(--font-en-body);
  direction: ltr;
}
body.en h1, body.en h2, body.en h3, body.en h4 {
  font-family: var(--font-en-display);
  font-weight: 400;
}
body:not(.en) h1, body:not(.en) h2, body:not(.en) h3, body:not(.en) h4 {
  font-family: var(--font-ar-display);
  font-weight: 700;
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-v) 0; }

/* ── Top Bar ── */
.topbar {
  background: var(--teal-deep);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-items { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; opacity: .7; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  transition: all .2s;
}
.lang-switch:hover { background: rgba(255,255,255,.1); }
.emergency-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--copper);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s;
}
.emergency-call:hover { background: var(--copper-light); }

/* ── Header / Nav ── */
.site-header {
  background: white;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--s-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; color: white; }
.logo-text { line-height: 1.2; }
.logo-name { font-family: var(--font-ar-display); font-weight: 900; font-size: 20px; color: var(--teal-deep); }
body.en .logo-name { font-family: var(--font-en-body); font-weight: 600; }
.logo-tagline { font-size: 11px; color: var(--text-muted); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: all .18s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--teal-pale); color: var(--teal); }
.nav-link.active { color: var(--teal); }
.nav-caret { width: 12px; height: 12px; transition: transform .2s; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--s-lg);
  padding: 8px;
  z-index: 200;
}
body.en .dropdown { right: auto; left: 0; }
.nav-item:hover .dropdown { display: block; }
.dropdown-link {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: all .15s;
}
.dropdown-link:hover { background: var(--teal-pale); color: var(--teal); }
.header-cta {
  background: var(--teal);
  color: white;
  padding: 10px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--teal-deep); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal-deep); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 60%, var(--teal-soft) 100%);
  color: white;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(184,105,42,.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
body.en .hero-inner { grid-template-columns: 1fr 380px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,105,42,.25);
  border: 1px solid rgba(184,105,42,.4);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #F5C98A;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--copper-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
}
body.en .hero h1 { font-weight: 400; line-height: 1.1; }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--copper);
  color: white;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  padding: 13px 24px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item svg { width: 14px; height: 14px; color: var(--copper-light); }

/* Hero form card */
.hero-form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--s-lg);
  position: relative;
}
.hero-form-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.hero-form-card .form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-mid); margin-bottom: 5px; }
.form-input, .form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  background: white;
  transition: border-color .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--teal);
}
.btn-form {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 13px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.btn-form:hover { background: var(--teal-deep); }
.form-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--teal-deep);
  padding: 32px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 24px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.12);
  left: auto;
  right: 0;
}
body.en .stat-item:not(:last-child)::after { right: auto; left: 0; }
.stat-number { font-size: 38px; font-weight: 900; color: white; line-height: 1; font-family: var(--font-ar-display); }
body.en .stat-number { font-family: var(--font-en-body); }
.stat-unit { font-size: 18px; color: var(--copper-light); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ── Section Headings ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 4vw, 38px); color: var(--teal-deep); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.65; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Service Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  background: white;
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--s-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--teal); }
.card-title { font-size: 17px; font-weight: 700; color: var(--teal-deep); margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card-link { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 14px; display: flex; align-items: center; gap: 4px; }

/* Emergency card variant */
.service-card.emergency {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-color: transparent;
  color: white;
}
.service-card.emergency .card-icon { background: rgba(255,255,255,.2); }
.service-card.emergency .card-icon svg { color: white; }
.service-card.emergency .card-title { color: white; }
.service-card.emergency .card-desc { color: rgba(255,255,255,.85); }
.service-card.emergency .card-link { color: rgba(255,255,255,.9); }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content { }
.why-items { margin-top: 32px; }
.why-item { display: flex; gap: 16px; margin-bottom: 28px; }
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; color: var(--teal); }
.why-text h4 { font-size: 16px; font-weight: 700; color: var(--teal-deep); margin-bottom: 4px; }
.why-text p { font-size: 14px; color: var(--text-muted); }
.why-visual {
  background: linear-gradient(145deg, var(--teal-pale), var(--sand));
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
}
.climate-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border-soft);
  text-align: right;
}
body.en .climate-card { text-align: left; }
.climate-city { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.climate-temp { font-size: 28px; font-weight: 900; color: var(--teal-deep); line-height: 1; }
.climate-note { font-size: 12px; color: var(--copper); margin-top: 4px; font-weight: 500; }
.climate-bar {
  height: 4px;
  background: var(--border-soft);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.climate-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  border-radius: 2px;
}

/* ── Areas ── */
.areas-section { background: var(--cream); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  padding: 24px;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.area-card:hover { border-color: var(--teal); box-shadow: var(--s-sm); }
.area-name { font-size: 18px; font-weight: 700; color: var(--teal-deep); margin-bottom: 6px; }
.area-ar { font-family: var(--font-ar-display); font-size: 15px; color: var(--text-muted); margin-bottom: 10px; }
body.en .area-ar { font-size: 14px; }
.area-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.area-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--teal); background: var(--teal-pale); padding: 3px 10px; border-radius: 20px; margin-top: 12px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--teal-deep); color: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 14px; height: 14px; color: #F5C98A; fill: #F5C98A; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.testimonial-loc { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-deep);
  user-select: none;
}
.faq-q:hover { color: var(--teal); }
.faq-chevron { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--copper) 0%, #8B4513 100%);
  padding: 64px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.06), transparent 60%);
}
.cta-banner h2 { font-size: 32px; margin-bottom: 10px; position: relative; }
.cta-banner p { font-size: 16px; opacity: .85; margin-bottom: 28px; position: relative; }
.cta-banner .btn-white {
  background: white;
  color: var(--copper);
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all .2s;
}
.cta-banner .btn-white:hover { background: var(--sand); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
  transition: all .2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--s-md); transform: translateY(-2px); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--teal-pale), var(--sand)); }
.blog-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--copper); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--teal-deep); line-height: 1.4; margin-bottom: 8px; }
.blog-meta { font-size: 12px; color: var(--text-muted); }

/* ── Inner Page Layout ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  padding: 60px 0 72px;
  color: white;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .breadcrumb { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
body.en .page-hero h1 { font-weight: 400; }
.page-hero .hero-sub { font-size: 16px; color: rgba(255,255,255,.8); max-width: 600px; }
.page-meta { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
body.en .content-layout { grid-template-columns: 1fr 300px; }
.main-content { }
.sidebar { }
.main-content h2 { font-size: 24px; font-weight: 700; color: var(--teal-deep); margin: 36px 0 14px; }
body.en .main-content h2 { font-weight: 400; font-size: 26px; }
.main-content h3 { font-size: 18px; font-weight: 700; color: var(--teal-mid); margin: 24px 0 10px; }
.main-content p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.main-content ul.content-list { margin: 14px 0 20px; padding-inline-start: 20px; }
.main-content ul.content-list li { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 8px; position: relative; list-style: disc; }
.tech-box {
  background: var(--teal-pale);
  border-inline-start: 4px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 20px;
  margin: 24px 0;
}
body.en .tech-box { border-inline-start: 4px solid var(--teal); border-radius: 0 var(--r-md) var(--r-md) 0; }
.tech-box .tech-label { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.tech-box p { font-size: 14px; color: var(--text-mid); margin: 0; }
.scenario-box {
  background: var(--copper-pale);
  border-inline-start: 4px solid var(--copper);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.scenario-box .scenario-label { font-size: 11px; font-weight: 700; color: var(--copper); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.scenario-box p { font-size: 14px; color: var(--text-mid); margin: 0; }
.decision-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.decision-table th { background: var(--teal-deep); color: white; padding: 12px 16px; text-align: right; font-weight: 600; }
body.en .decision-table th { text-align: left; }
.decision-table td { padding: 11px 16px; border-bottom: 1px solid var(--border-soft); color: var(--text-mid); }
.decision-table tr:nth-child(even) td { background: var(--cream); }
.decision-table .good { color: var(--teal); font-weight: 600; }
.decision-table .warn { color: var(--copper); font-weight: 600; }

/* Sidebar widgets */
.sidebar-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 15px; font-weight: 700; color: var(--teal-deep); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-soft); }
.sidebar-card.emergency-widget { background: linear-gradient(135deg, var(--copper), #8B4513); color: white; border-color: transparent; }
.sidebar-card.emergency-widget h4 { color: white; border-bottom-color: rgba(255,255,255,.2); }
.sidebar-phone { font-size: 22px; font-weight: 900; color: var(--teal-deep); font-family: var(--font-ar-display); margin-bottom: 6px; }
.sidebar-card.emergency-widget .sidebar-phone { color: white; }
.sidebar-links { }
.sidebar-link { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid var(--border-soft); transition: color .15s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--teal); }
.sidebar-link svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.reviews-mini { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.reviews-mini .stars-mini { color: #F5C98A; font-size: 16px; }
.reviews-mini .rating { font-size: 22px; font-weight: 900; color: var(--teal-deep); }
.reviews-mini .count { font-size: 12px; color: var(--text-muted); }
.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.badge-item { background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 10px; text-align: center; font-size: 11px; color: var(--text-mid); font-weight: 500; }
.badge-item svg { width: 20px; height: 20px; color: var(--teal); margin: 0 auto 4px; }

/* ── Footer ── */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-name { color: white; font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; padding: 4px 0; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-link:hover { color: rgba(255,255,255,.95); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); gap: 16px; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.contact-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.contact-row svg { width: 14px; height: 14px; color: var(--copper-light); flex-shrink: 0; margin-top: 2px; }
.contact-row span { font-size: 13px; line-height: 1.4; }

/* ── Utility ── */
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border-soft); margin: 48px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip { background: var(--teal-pale); color: var(--teal); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; border: 1px solid rgba(13,94,110,.15); }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
}
@media (max-width: 768px) {
  :root { --section-v: 56px; }
  .services-grid, .areas-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .content-layout { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; box-shadow: var(--s-lg); padding: 16px; z-index: 200; }
  .dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .hamburger { display: block; }
  .header-cta { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
}
