/* === VARIABLES === */
:root {
  --navy:       #0f1e3d;
  --navy-mid:   #1a3a6b;
  --navy-light: #1e4d8c;
  --accent:     #00b4d8;
  --accent-dk:  #0096c7;
  --amber:      #f59e0b;
  --amber-dk:   #d97706;
  --wa:         #25d366;
  --wa-dk:      #128c7e;
  --text:       #1e293b;
  --text-mid:   #334155;
  --text-light: #64748b;
  --bg:         #f8fafc;
  --bg-alt:     #f1f5f9;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(15,30,61,.10);
  --shadow-lg:  0 8px 40px rgba(15,30,61,.16);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: .25s ease;
  --header-h:   72px;
  --container:  1200px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Tajawal', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { opacity: .85; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === CONTAINER === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === SECTION BASE === */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: rgba(0,180,216,.12);
  color: var(--accent-dk);
  font-size: .85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-more { text-align: center; margin-top: 40px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary { background: var(--amber); color: var(--navy); box-shadow: 0 4px 16px rgba(245,158,11,.3); }
.btn-primary:hover { background: var(--amber-dk); box-shadow: 0 6px 20px rgba(245,158,11,.4); }
.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-wa:hover { background: var(--wa-dk); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-hero { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; margin-bottom: 12px; }
.btn-cta-primary { background: var(--amber); color: var(--navy); font-size: 1.1rem; padding: 16px 36px; }
.btn-cta-wa { background: var(--wa); color: var(--white); font-size: 1.1rem; padding: 16px 36px; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: var(--header-h);
  background: var(--navy);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  transition: background var(--transition);
}
.site-header.scrolled { background: rgba(15,30,61,.97); backdrop-filter: blur(8px); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo:hover { opacity: 1; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: .95rem; color: var(--white); font-weight: 700; }
.logo-text span { font-size: .78rem; color: var(--accent); }
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-list li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-list li a:hover,
.nav-list li.current-menu-item a { background: rgba(0,180,216,.15); color: var(--accent); opacity: 1; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.header-phone:hover { background: var(--amber-dk); opacity: 1; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === ADMIN BAR === */
body.admin-bar .site-header { top: 32px; }
body.admin-bar { padding-top: calc(var(--header-h) + 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar { padding-top: calc(64px + 46px); }
}

/* === HERO === */
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0a2a4a 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(0,180,216,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0,150,199,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 160%;
  background: rgba(0,180,216,.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 680px; }
.hero-badge {
  display: inline-block;
  background: rgba(0,180,216,.2);
  border: 1px solid rgba(0,180,216,.4);
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.text-accent { color: var(--accent); }
.hero-business {
  font-size: 1.2rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust li {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item { padding: 16px; }
.trust-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label { font-size: .9rem; color: var(--text-light); font-weight: 500; }

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
.service-card-icon svg { width: 32px; height: 32px; max-width: 32px; max-height: 32px; }
.service-card-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.service-card-desc { font-size: .9rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dk);
  font-size: .9rem;
  font-weight: 700;
  margin-top: auto;
}
.service-card-link:hover { opacity: 1; color: var(--navy); }

/* === WHY US === */
.why-us-section { background: var(--bg-alt); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.why-us-content p { color: var(--text-light); margin-bottom: 28px; }
.why-us-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-icon { width: 40px; height: 40px; color: var(--accent); flex-shrink: 0; overflow: hidden; }
.why-icon svg { width: 40px; height: 40px; max-width: 40px; max-height: 40px; }
.why-text { display: flex; flex-direction: column; gap: 2px; }
.why-text strong { font-size: 1rem; color: var(--navy); font-weight: 700; }
.why-text span { font-size: .88rem; color: var(--text-light); }
.why-us-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.why-stat-number { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.why-stat-label { font-size: .85rem; color: var(--text-light); font-weight: 500; }

/* === HOW IT WORKS === */
.how-section { background: var(--navy); }
.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,.7); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--accent), transparent);
  pointer-events: none;
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-text { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* === AREAS === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); opacity: 1; }
.area-card-icon { width: 44px; height: 44px; color: var(--accent); overflow: hidden; flex-shrink: 0; }
.area-card-icon svg { width: 44px; height: 44px; max-width: 44px; max-height: 44px; }
.area-card-name { font-size: .95rem; font-weight: 700; color: var(--navy); }

/* === FAQ === */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-item.open .faq-question { background: rgba(0,180,216,.06); color: var(--accent-dk); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { color: var(--text-mid); font-size: .95rem; line-height: 1.7; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-content h2 { font-size: clamp(1.6rem, 3vw, 2rem); color: var(--white); font-weight: 900; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,.75); font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer { background: var(--navy); }
.footer-top { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-about .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dk)); }
.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text span { color: var(--accent); }
.footer-about p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}
.footer-btn:hover { opacity: .9; transform: translateY(-2px); }
.footer-btn-call { background: var(--amber); color: var(--navy); }
.footer-btn-wa   { background: var(--wa); color: var(--white); }
.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,180,216,.3);
}
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links-list a:hover { color: var(--accent); opacity: 1; }
.footer-info-list { display: flex; flex-direction: column; gap: 14px; }
.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
.footer-info-list svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-info-list a { color: rgba(255,255,255,.65); }
.footer-info-list a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom nav a { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom nav a:hover { color: var(--accent); opacity: 1; }

/* === FLOATING BUTTONS === */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.28); opacity: 1; }
.floating-wa   { background: var(--wa); color: var(--white); }
.floating-call { background: var(--accent); color: var(--white); }
.floating-label {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.floating-btn:hover .floating-label { opacity: 1; }

/* === MOBILE CTA BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0; left: 0;
  height: 58px;
  z-index: 1001;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.mobile-cta-call,
.mobile-cta-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  height: 100%;
}
.mobile-cta-call { background: var(--amber); color: var(--navy); }
.mobile-cta-wa   { background: var(--wa); color: var(--white); }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.page-hero-sub { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 24px; }
.page-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.page-hero-light {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero-light h1 { color: var(--navy); }
.page-hero-light .page-hero-sub { color: var(--text-light); }

/* === BREADCRUMBS === */
.breadcrumbs { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb-list { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb-item a { color: var(--accent-dk); font-size: .85rem; }
.breadcrumb-item + .breadcrumb-item::before {
  content: '‹';
  color: var(--text-light);
  font-size: .85rem;
}
.breadcrumb-current { color: var(--text-light); font-size: .85rem; }

/* === SERVICE PAGE === */
.intro-text {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.content-col h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.content-col p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.checkmark-list { display: flex; flex-direction: column; gap: 10px; }
.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
}
.checkmark-list li::before {
  content: '✓';
  color: var(--wa);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.when-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.when-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.when-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-right: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .95rem;
  color: var(--text-mid);
}

/* === WHY COMPACT === */
.why-compact h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}
.why-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-compact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
}
.why-check { width: 28px; height: 28px; color: var(--wa); flex-shrink: 0; overflow: hidden; }
.why-check svg { width: 28px; height: 28px; max-width: 28px; max-height: 28px; }

/* === AREAS LINKS === */
.areas-links-section h2,
.related-areas h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.areas-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition);
}
.area-link-btn:hover { border-color: var(--accent); background: rgba(0,180,216,.05); opacity: 1; }
.area-link-btn svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* === RELATED SERVICES === */
.related-services h2,
.related-services-grid { margin-bottom: 16px; }
.related-services h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.related-service-link {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.related-service-link:hover { border-color: var(--accent); background: rgba(0,180,216,.05); opacity: 1; }

/* === HUB PAGE === */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); opacity: 1; }
.hub-card-icon { width: 60px; height: 60px; color: var(--accent); overflow: hidden; flex-shrink: 0; }
.hub-card-icon svg { width: 60px; height: 60px; max-width: 60px; max-height: 60px; }
.hub-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.hub-card p { font-size: .88rem; color: var(--text-light); }

/* === SERVICES MINI GRID === */
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color var(--transition);
}
.service-mini-card:hover { border-color: var(--accent); opacity: 1; }
.service-mini-card strong { font-size: .95rem; font-weight: 700; color: var(--navy); }
.service-mini-card span { font-size: .82rem; color: var(--text-light); }

/* === ABOUT PAGE === */
.about-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 14px;
}
.about-content p { color: var(--text-mid); margin-bottom: 16px; }
.about-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.simple-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 24px 0 12px; }
.simple-content h2:first-child { margin-top: 0; }
.simple-content p { color: var(--text-mid); margin-bottom: 12px; line-height: 1.8; }
.simple-content a { color: var(--accent-dk); }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { width: 40px; height: 40px; color: var(--accent); flex-shrink: 0; }
.contact-item-icon svg { width: 40px; height: 40px; }
.contact-item strong { display: block; font-size: .88rem; color: var(--text-light); margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 1rem; color: var(--navy); font-weight: 600; }
.contact-action-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-action-box h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-action-box p { color: var(--text-light); margin-bottom: 24px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-visual { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid::before { display: none; }
  .content-2col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }
  :root { --header-h: 64px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  .main-nav {
    position: fixed;
    top: 64px; right: 0; left: 0;
    background: var(--navy);
    padding: 24px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    transform: translateY(-110%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .main-nav.nav-open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list li a { display: block; padding: 12px 16px; font-size: 1rem; }
  .header-phone { display: none; }
  .menu-toggle { display: flex; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-visual { grid-template-columns: repeat(2, 1fr); }
  .why-compact-grid { grid-template-columns: 1fr; }
  .areas-links-grid { grid-template-columns: repeat(2, 1fr); }
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .services-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .when-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .page-hero-actions { flex-direction: column; align-items: center; }

  .floating-buttons { bottom: 70px; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 58px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-links-grid { grid-template-columns: 1fr; }
  .why-us-visual { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-title { font-size: 2rem; }
  .hub-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .single-cta-btns { flex-direction: column; }
}

/* === HERO VISUAL IMAGE === */
.hero-visual {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 480px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.hero-visual img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .hero-visual { display: none; } }

/* === SERVICE / AREA MAIN IMAGE === */
.service-main-figure,
.area-main-figure {
  margin: 0 0 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}
.service-main-image,
.area-main-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
}
.area-desc-text { color: var(--text-mid); margin-top: 16px; }
.area-services-intro { color: var(--text-mid); margin-bottom: 24px; }

/* === TRUST LABEL SMALL === */
.trust-label-sm {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.5;
}

/* === BLOG CARDS === */
.latest-posts-section { background: var(--bg-alt); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img-link { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-alt); }
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card-date { font-size: .8rem; color: var(--text-light); }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.5; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: .9rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}
.blog-card-link:hover { color: var(--accent-dk); opacity: 1; }
.blog-coming-soon {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-light);
  font-size: 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}

/* === BLOG ARCHIVE PAGE === */
.blog-section { background: var(--bg); }
.blog-empty { text-align: center; padding: 64px 24px; }
.blog-empty p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 24px; }
.blog-pagination { margin-top: 40px; text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background: var(--accent); color: var(--white); }

/* === SINGLE POST === */
.single-article { }
.single-header { background: var(--bg-alt); padding: 48px 0; }
.single-header-inner { max-width: 800px; }
.single-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.single-meta { font-size: .85rem; color: var(--text-light); }
.single-featured-img { margin-bottom: 8px; }
.single-thumb { width: 100%; max-width: 900px; height: auto; border-radius: var(--radius); margin: 0 auto; display: block; }
.single-content-wrap { max-width: 800px; }
.single-content { margin-bottom: 48px; }
.single-content p { margin-bottom: 20px; line-height: 1.85; color: var(--text); }
.single-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.single-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-mid); margin: 24px 0 10px; }
.single-content ul, .single-content ol { padding-right: 24px; margin-bottom: 20px; }
.single-content li { margin-bottom: 8px; line-height: 1.75; }
.single-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 40px;
  color: var(--white);
}
.single-cta-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.single-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: .95rem; }
.single-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.single-related-services h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

/* === FOOTER QUICK LINKS === */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* === PROCESS STEPS (Phase 4) === */
.process-list { counter-reset: step; display: grid; gap: 20px; padding: 0; }
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 72px 22px 24px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p  { color: var(--text-mid); font-size: .93rem; margin: 0; }
@media (min-width: 768px) { .process-list { grid-template-columns: 1fr 1fr; } }

/* === TIPS LIST (Phase 4) === */
.tips-list { display: grid; gap: 12px; padding: 0; }
.tips-list li {
  background: var(--bg-alt);
  border-right: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .95rem;
  line-height: 1.65;
}
@media (min-width: 768px) { .tips-list { grid-template-columns: 1fr 1fr; } }
