/* ═══════════════════════════════════════════════════════════════
   PRESTIGE THEME — KSA Accounting & Audit Firm
   Palette: Deep Navy (#0B1F3A) + Emerald (#00885A) + White
   Fonts: Sora (headings) + Nunito Sans (body)
   All pages share this single stylesheet — do not duplicate inline
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Nunito+Sans:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Core palette */
  --navy:       #0B1F3A;
  --navy-mid:   #132d52;
  --navy-light: #1e3f6f;
  --emerald:    #00885A;
  --emerald-dk: #006644;
  --emerald-lt: #e6f5f0;
  --gold:       #C8973A;
  --gold-lt:    #fdf5e6;

  /* Neutral scale */
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg2:        #f7f9fc;
  --bg3:        #eef2f8;
  --card:       #ffffff;
  --text:       #0B1F3A;
  --text2:      #2d4263;
  --muted:      #607090;
  --border:     #dde4ef;
  --border2:    #c8d3e5;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #f0f5ff 0%, #e8f5ef 60%, #f5f0e8 100%);
  --grad-nav:    linear-gradient(135deg, #0B1F3A 0%, #132d52 100%);
  --grad-cta:    linear-gradient(135deg, #00885A 0%, #006644 100%);
  --grad-accent: linear-gradient(135deg, #C8973A 0%, #a87520 100%);

  /* Typography */
  --font-head: 'Sora', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  /* Shape */
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(11,31,58,.06), 0 1px 2px rgba(11,31,58,.04);
  --shadow:    0 4px 16px rgba(11,31,58,.09), 0 2px 6px rgba(11,31,58,.05);
  --shadow-lg: 0 12px 40px rgba(11,31,58,.12), 0 4px 12px rgba(11,31,58,.07);
  --shadow-em: 0 8px 32px rgba(0,136,90,.22);

  --transition: .22s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; font-size: 16px; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--emerald-dk); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.22; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text2); }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--emerald); color: #fff;
  padding: .5rem 1rem; z-index: 9999;
  font-weight: 700; border-radius: 0 0 8px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── TOPBAR ── */
#topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: .4rem 0;
  font-family: var(--font-body);
}
#topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar-address { display: block; }
#topbar a { color: rgba(255,255,255,.75); }
#topbar a:hover { color: #fff; }
@media(max-width:600px) { .topbar-address { display: none; } }

/* ── NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  white-space: nowrap;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-cta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; fill: #fff; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
}
.logo-text span { color: var(--emerald); }
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links li a {
  display: block;
  padding: .45rem .8rem;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: var(--emerald-lt);
  color: var(--emerald-dk);
}
/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: var(--emerald-lt); color: var(--emerald-dk); }
/* CTA button in nav */
.nav-cta {
  background: var(--grad-cta) !important;
  color: #fff !important;
  padding: .5rem 1.1rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  box-shadow: var(--shadow-em);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,136,90,.3) !important;
  background: var(--grad-cta) !important;
  color: #fff !important;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: .5rem;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  height: 2px; width: 24px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media(max-width:960px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1999;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.nav-drawer.is-open { display: flex; transform: translateX(0); }
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  z-index: 1998;
  background: rgba(11,31,58,.4);
}
.nav-backdrop.is-open { display: block; }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.drawer-close {
  background: none; border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  border-radius: 6px;
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--navy); }
.drawer-links {
  flex: 1;
  overflow-y: auto;
  padding: .75rem;
}
.drawer-links li a {
  display: block;
  padding: .7rem 1rem;
  border-radius: 8px;
  color: var(--text2);
  font-size: .95rem;
  font-weight: 600;
  transition: background var(--transition);
}
.drawer-links li a:hover { background: var(--emerald-lt); color: var(--emerald-dk); }
.drawer-links .drawer-sub { padding-left: 1.5rem; }
.drawer-links .drawer-sub a { font-size: .875rem; font-weight: 500; }
.drawer-cta {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
}
.drawer-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-cta);
  color: #fff;
  font-weight: 700;
  padding: .9rem;
  border-radius: 10px;
  font-size: 1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 9px;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-head);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-em);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,136,90,.32);
  color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald-lt);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fba59; transform: translateY(-2px); color: #fff; }
.btn-lg { padding: .9rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.trust-item .trust-icon {
  width: 18px; height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.15);
}
@media(max-width:600px) {
  .trust-divider { display: none; }
  .trust-items { gap: 1.25rem; }
}

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0,136,90,.07) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200,151,58,.05) 0%, transparent 40%);
  pointer-events: none;
}
/* Geometric accent lines */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(0,136,90,.1);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--emerald-lt);
  color: var(--emerald-dk);
  border: 1px solid rgba(0,136,90,.2);
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-head);
}
.hero-eyebrow .eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.4); opacity: .6; }
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text h1 em {
  font-style: normal;
  color: var(--emerald);
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.hero-img img { width: 100%; height: 400px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-badge .badge-icon {
  width: 32px; height: 32px;
  background: var(--emerald-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge .badge-sub { font-weight: 400; color: var(--muted); font-size: .75rem; }
@media(max-width:768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-img { display: none; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(0,136,90,.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 50%, rgba(200,151,58,.08) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero .subtitle { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.page-hero .hero-btns { margin-top: 1.5rem; }

/* ── BREADCRUMBS ── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb span { margin: 0 .35rem; opacity: .4; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--muted); max-width: 620px; margin: .75rem auto 0; }
.badge {
  display: inline-block;
  background: var(--emerald-lt);
  color: var(--emerald-dk);
  border: 1px solid rgba(0,136,90,.2);
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: .75rem;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.badge-navy {
  background: rgba(11,31,58,.08);
  color: var(--navy);
  border-color: rgba(11,31,58,.15);
}
.badge-gold {
  background: var(--gold-lt);
  color: #7a5a1a;
  border-color: rgba(200,151,58,.25);
}

/* ── GRID & CARDS ── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--emerald-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.card p { font-size: .9rem; color: var(--muted); margin: 0; }
.card a { color: inherit; text-decoration: none; }
.card a:hover { color: var(--emerald); }
/* Service card variant */
.service-card {
  border-left: 3px solid var(--emerald);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.service-card:hover { border-left-color: var(--emerald-dk); }
/* Navy card variant */
.card-navy {
  background: var(--navy);
  border-color: var(--navy-mid);
  color: #fff;
}
.card-navy h3 { color: #fff; }
.card-navy p { color: rgba(255,255,255,.65); }
.card-navy:hover { border-color: var(--emerald); }

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.stat-label { color: var(--muted); font-size: .875rem; }
/* Dark stat variant */
.stat-card-navy { background: var(--navy); border-color: var(--navy-mid); }
.stat-card-navy .stat-num { color: var(--gold); }
.stat-card-navy .stat-label { color: rgba(255,255,255,.6); }

/* ── CTA BOX ── */
.cta-box {
  background: var(--grad-cta);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-box h2 { color: #fff; margin-bottom: .75rem; position: relative; }
.cta-box p { color: rgba(255,255,255,.8); margin-bottom: 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  position: relative;
}
.cta-trust span::before { content: '✓ '; color: rgba(255,255,255,.9); }
/* Navy CTA variant */
.cta-box-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,136,90,.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--navy);
  font-weight: 600;
  font-size: .975rem;
  font-family: var(--font-body);
}
.faq-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--emerald);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--text2); font-size: .925rem; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-text { color: var(--text2); font-style: italic; margin-bottom: 1rem; font-size: .95rem; }
.review-author { font-weight: 700; font-size: .875rem; color: var(--emerald-dk); }
.review-company { font-size: .8rem; color: var(--muted); }

/* ── TESTIMONIAL (single) ── */
.testimonial {
  background: var(--emerald-lt);
  border-left: 4px solid var(--emerald);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.testimonial p { font-style: italic; color: var(--text2); margin-bottom: .5rem; }
.testimonial cite { font-size: .82rem; color: var(--muted); font-style: normal; }

/* ── CONTENT BODY (service / industry pages) ── */
.content-body { color: var(--text2); }
.content-body p { color: var(--text2); text-align: left; }
.content-body h2 {
  color: var(--navy);
  text-align: left;
  padding-bottom: .5rem;
  margin-top: 2rem;
  margin-bottom: .9rem;
  border-bottom: 2px solid var(--emerald-lt);
}
.content-body h3 {
  color: var(--emerald-dk);
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.content-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.content-body li { margin-bottom: .4rem; color: var(--text2); }
.content-body strong { color: var(--navy); font-weight: 700; }
.content-body .card { text-align: left; }
.content-body a { color: var(--emerald); }
.content-body a:hover { color: var(--emerald-dk); }

/* ── PROCESS STEPS ── */
.process-steps { margin: 1.5rem 0; display: grid; gap: .85rem; }
.process-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--emerald);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.process-step-num {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
  margin-top: .1rem;
}
.process-step h3 { color: var(--emerald-dk); margin-bottom: .25rem; font-size: .975rem; }
.process-step p { margin: 0; color: var(--text2); font-size: .9rem; }

/* ── SIDEBAR CARD ── */
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.sidebar-card h3 { color: var(--navy); margin-bottom: .9rem; font-size: 1.1rem; }
.sidebar-card p { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.sidebar-trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text2);
  padding: .35rem 0;
  border-bottom: 1px solid var(--bg3);
}
.sidebar-trust li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.sidebar-trust li:last-child { border-bottom: none; }
.sidebar-contact { font-size: .82rem; color: var(--muted); text-align: center; line-height: 2; margin-top: 1rem; }

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── RELATED ARTICLES ── */
.related-articles {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.related-articles strong { color: var(--emerald-dk); font-size: 1rem; display: block; margin-bottom: .75rem; }
.related-articles ul { list-style: disc; padding-left: 1.25rem; margin-top: .75rem; }
.related-articles li { margin-bottom: .4rem; }
.related-articles a { color: var(--text2); font-size: .9rem; }
.related-articles a:hover { color: var(--emerald); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--navy); }
.blog-card-body p { font-size: .85rem; color: var(--muted); margin: 0; }
.blog-meta { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; }
.blog-tag {
  display: inline-block;
  background: var(--emerald-lt);
  color: var(--emerald-dk);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  margin-bottom: .5rem;
  font-family: var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.blog-article h2 { margin-top: 2rem; margin-bottom: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-article h3 { margin-top: 1.25rem; margin-bottom: .5rem; }
.blog-article ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.blog-article li { margin-bottom: .35rem; color: var(--text2); }

/* ── HIGHLIGHT / ALERT BOX ── */
.highlight-box {
  background: var(--emerald-lt);
  border: 1px solid rgba(0,136,90,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; color: var(--text2); }
.highlight-box-navy {
  background: rgba(11,31,58,.05);
  border-color: rgba(11,31,58,.12);
}
.highlight-box-gold {
  background: var(--gold-lt);
  border-color: rgba(200,151,58,.25);
}

/* ── ZATCA / KSA-SPECIFIC COMPONENTS ── */
.zatca-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-lt);
  color: #7a5a1a;
  border: 1px solid rgba(200,151,58,.3);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-head);
}
.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(11,31,58,.07);
  color: var(--navy);
  border: 1px solid rgba(11,31,58,.15);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-head);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-head);
}
.footer-col p, .footer-col address {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-style: normal;
  line-height: 1.8;
}
.footer-col ul li { margin-bottom: .35rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .85rem;
  text-decoration: none;
}
.footer-logo-mark {
  width: 34px; height: 34px;
  background: var(--grad-cta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-mark svg { width: 18px; height: 18px; fill: #fff; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.footer-logo-text span { color: var(--emerald); }
.footer-col address a { color: rgba(255,255,255,.55); }
.footer-col address a:hover { color: #fff; }
.social-links { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: #fff; }
.footer-cert {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

/* ── WA FLOAT BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── SECTION BG VARIANTS ── */
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .section-header p { color: rgba(255,255,255,.6); }
.section-navy .badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.section-alt { background: var(--bg2); }
.section-stripe { background: var(--grad-hero); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:768px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  [style*="grid-template-columns:2fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media(max-width:600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 1rem; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
