/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 3.0
*/

/* ============================================================
   RESET & CSS VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- FORCE FULL WIDTH — override Hello Elementor theme wrappers ---- */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body { overflow-x: hidden !important; }

/* Kill every theme wrapper padding/margin */
body > div,
.page-wrapper, .site-wrapper, .hfeed,
#page, #content, #main, .site,
.elementor-page, .post-type-page,
.wp-site-blocks, .entry-content,
.elementor-section-wrap {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* ---- FOOTER: Override Hello Elementor max-width constraint ---- */
/* The theme constrains .site-footer:not(.dynamic-footer) to 1140px.
   We add .dynamic-footer class to our footer and override here too. */
.site-footer,
.site-footer.dynamic-footer,
.site-footer.footer-full-width,
footer.site-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
  float: none !important;
  position: relative !important;
  left: auto !important;
  box-sizing: border-box !important;
  background: #060D1C !important;
}

/* Header always full width */
.tcu-header {
  left: 0 !important; right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2044;
  --blue:       #1D4ED8;
  --blue-light: #3B82F6;
  --red:        #EF4444;
  --red-dark:   #DC2626;
  --gold:       #F59E0B;
  --white:      #FFFFFF;
  --off-white:  #F8FAFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-900:   #111827;
  --font:       'Plus Jakarta Sans', 'Inter', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s ease;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08);
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-xl:       28px;

  /* Aliases used across page templates */
  --dark:   #0f172a;
  --muted:  #64748B;
  --border: #E2E8F0;
  --ice:    #EFF6FF;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
/* Skip-to-content — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 100000;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 0 0 10px 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: top .2s;
  white-space: nowrap;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

/* Visible focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Suppress outline on mouse clicks, keep for keyboard */
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.tcu-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .4s var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none; white-space: nowrap;
  font-family: var(--font);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s;
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn-lg { padding: 17px 34px; font-size: 16px; border-radius: 14px; }
.btn i  { font-size: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #F97316 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239,68,68,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239,68,68,.5);
  color: #fff;
}
.btn-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10,22,40,.3);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,22,40,.45);
  color: #fff;
}
.btn-glass {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
}
.btn-glass:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  color: var(--navy);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow i { font-size: 14px; }
.eyebrow-white { color: rgba(255,255,255,.7); }

.section-h {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--gray-900);
  margin-bottom: 18px;
}
.section-h span {
  background: linear-gradient(135deg, var(--red) 0%, #F97316 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-h-white { color: #fff; }
.section-p {
  font-size: 17px; color: var(--gray-600);
  line-height: 1.8; max-width: 560px;
}
.section-p-white { color: rgba(255,255,255,.7); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: orb-float 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,.5) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,68,68,.35) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,.2) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation-delay: -6s;
}
@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Left content */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--gold);
  font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: .4px;
}
.hero-badge i { font-size: 14px; }

.hero-title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-title .grad {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, var(--red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55);
  font-weight: 500;
}
.hero-trust-item i { color: var(--gold); font-size: 16px; }

/* Right — stat cards */
.hero-right {
  display: flex; flex-direction: column; gap: 16px;
}

.hero-stat-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 4px;
}
.hero-stat-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  transition: all .3s var(--ease);
}
.hero-stat-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}
.hero-stat-num {
  font-size: 38px; font-weight: 900; color: #fff;
  line-height: 1;
}
.hero-stat-num em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red), #F97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 6px; font-weight: 500; }

.hero-main-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
}
.hero-main-card-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.hmc-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), #F97316);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 24px; color: #fff;
}
.hmc-text h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hmc-text p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }
.hmc-brands {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hmc-brand {
  padding: 5px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.65);
}

/* ============================================================
   TICKER / TRUST BAR
   ============================================================ */
.ticker-bar {
  background: var(--gray-900);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(90deg, var(--gray-900), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(-90deg, var(--gray-900), transparent); }

.ticker-track {
  display: flex; gap: 0;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.ticker-item i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.2); flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES OVERVIEW (Homepage)
   ============================================================ */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media(max-width:1100px){ .services-grid-home { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px) { .services-grid-home { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .services-grid-home { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
  display: block; color: inherit;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(29,78,216,.04) 100%);
  opacity: 0; transition: opacity .35s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  color: inherit;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-card-icon { transform: scale(1.08) rotate(-3deg); }

.svc-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: transform .35s var(--ease);
}
.svc-card h3 {
  font-size: 15.5px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 8px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 13px; color: var(--gray-400);
  line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 16px;
}
.svc-card-arrow {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  transition: gap .3s var(--ease);
}
.svc-card:hover .svc-card-arrow { gap: 9px; }

/* Color variants for icons */
.icon-blue   { background: rgba(29,78,216,.1); color: var(--blue); }
.icon-red    { background: rgba(239,68,68,.1); color: var(--red); }
.icon-teal   { background: rgba(13,148,136,.1); color: #0D9488; }
.icon-purple { background: rgba(139,92,246,.1); color: #8B5CF6; }
.icon-amber  { background: rgba(245,158,11,.1); color: var(--gold); }
.icon-green  { background: rgba(22,163,74,.1); color: #16A34A; }
.icon-cyan   { background: rgba(6,182,212,.1); color: #06B6D4; }
.icon-rose   { background: rgba(244,63,94,.1); color: #F43F5E; }
.icon-orange { background: rgba(249,115,22,.1); color: #F97316; }
.icon-indigo { background: rgba(99,102,241,.1); color: #6366F1; }
.icon-emerald{ background: rgba(16,185,129,.1); color: #10B981; }
.icon-navy   { background: rgba(10,22,40,.08); color: var(--navy); }

/* ============================================================
   NUMBERS / IMPACT
   ============================================================ */
.impact-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  position: relative; z-index: 1;
}
.impact-item {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-size: 56px; font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 10px; letter-spacing: -2px;
}
.impact-num span {
  background: linear-gradient(135deg, var(--red), #F97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-label { font-size: 14px; color: rgba(255,255,255,.45); font-weight: 500; }
.impact-icon  {
  font-size: 28px; color: rgba(255,255,255,.08);
  margin-bottom: 18px; display: block;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-visual-block {
  position: relative;
}
.why-main-box {
  background: linear-gradient(135deg, var(--navy) 0%, #162040 100%);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  color: #fff;
  position: relative; overflow: hidden;
}
.why-main-box::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(29,78,216,.2);
  border-radius: 50%; filter: blur(60px);
}
.why-main-box::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(239,68,68,.15);
  border-radius: 50%; filter: blur(50px);
}
.why-box-icon {
  font-size: 48px; margin-bottom: 20px; display: block;
  position: relative; z-index: 1;
}
.why-main-box h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.why-main-box p  { font-size: 15px; opacity: .7; line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 1; }
.why-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 1; }
.why-mini {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px 14px; text-align: center;
}
.why-mini-num   { font-size: 28px; font-weight: 900; line-height: 1; }
.why-mini-num span { color: var(--red); }
.why-mini-lbl   { font-size: 11px; opacity: .6; margin-top: 5px; }

/* Floating badge */
.why-float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.wfb-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), #F97316);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px; color: #fff;
}
.wfb-text strong { font-size: 16px; font-weight: 800; display: block; color: var(--navy); }
.wfb-text span   { font-size: 11px; color: var(--gray-400); }

/* Why features list */
.why-features-list { display: flex; flex-direction: column; gap: 16px; }
.why-feat {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all .3s var(--ease);
}
.why-feat:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateX(3px);
}
.why-feat-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 13px;
  display: grid; place-items: center;
  font-size: 22px;
}
.why-feat-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--gray-900); }
.why-feat-body p  { font-size: 13.5px; color: var(--gray-400); line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-bg { background: var(--off-white); }
.process-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--red));
  z-index: 0;
}
.process-item {
  text-align: center; padding: 12px;
  position: relative; z-index: 1;
}
.process-circle {
  width: 88px; height: 88px;
  background: var(--white);
  border: 3px solid var(--gray-200);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 22px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all .35s var(--ease);
}
.process-circle span {
  font-size: 28px; font-weight: 900; color: var(--gray-200);
  line-height: 1;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.process-circle i {
  font-size: 30px; color: var(--navy);
  position: relative; z-index: 1;
}
.process-item:hover .process-circle {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(10,22,40,.25);
}
.process-item:hover .process-circle i { color: #fff; }
.process-item:hover .process-circle span { opacity: 0; }
.process-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.process-item p  { font-size: 13px; color: var(--gray-400); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-bg { background: var(--navy); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: all .3s var(--ease);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 28px;
  font-size: 80px; line-height: 1; font-family: Georgia, serif;
  color: rgba(255,255,255,.06);
  pointer-events: none;
}
.testi-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-5px);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-stars i { color: var(--gold); font-size: 15px; }
.testi-text {
  font-size: 15px; color: rgba(255,255,255,.75);
  line-height: 1.8; margin-bottom: 28px; font-style: italic;
}
.testi-footer { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 14.5px; font-weight: 700; color: #fff; }
.testi-loc  { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* ============================================================
   CTA / LEAD FORM
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0A1628 0%, #0F2044 50%, #1a1050 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(29,78,216,.25) 0%, transparent 65%);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(239,68,68,.18) 0%, transparent 65%);
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.cta-left .section-p { max-width: 100%; }
.cta-perks { display: flex; flex-direction: column; gap: 13px; margin-top: 32px; }
.cta-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: rgba(255,255,255,.8); font-weight: 500;
}
.cta-perk i { font-size: 18px; color: var(--gold); flex-shrink: 0; }

.form-card {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.form-card-head h3 {
  font-size: 22px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 4px;
}
.form-card-head p {
  font-size: 13.5px; color: var(--gray-400);
  margin-bottom: 28px;
}
.form-card-head p span {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(22,163,74,.1); color: #16A34A;
  padding: 2px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { margin-bottom: 16px; }
.f-group label {
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--gray-600); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .4px;
}
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px; font-family: var(--font);
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--gray-400); }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
  background: #fff;
}
.f-submit {
  width: 100%; padding: 15px; font-size: 15.5px;
  font-weight: 700; border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #F97316);
  color: #fff; border: none; cursor: pointer;
  font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 20px rgba(239,68,68,.3);
  transition: all .3s var(--ease);
}
.f-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239,68,68,.45);
}
.f-note {
  text-align: center; margin-top: 12px;
  font-size: 12px; color: var(--gray-400);
}

/* ============================================================
   PAGE HERO (Inner)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2044 60%, #1a1050 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,.3) 0%, transparent 65%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.4);
  margin-bottom: 18px; font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .25s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb i { font-size: 11px; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,.6);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.fade-in.is-visible { opacity: 1; }

/* ============================================================
   SERVICES PAGE — CARDS
   ============================================================ */
.cat-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 56px;
}
.cat-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-600);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .25s var(--ease); white-space: nowrap;
}
.cat-pill i { font-size: 14px; }
.cat-pill:hover { border-color: var(--navy); color: var(--navy); }
.cat-pill.active {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10,22,40,.2);
}

.srv-cat-block { margin-bottom: 72px; }
.srv-cat-hd {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1.5px solid var(--gray-200);
}
.srv-cat-hd-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 26px;
  flex-shrink: 0;
}
.srv-cat-hd h2 { font-size: 22px; font-weight: 800; color: var(--gray-900); }
.srv-cat-hd p  { font-size: 13.5px; color: var(--gray-400); margin-top: 3px; }

.srv-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.srv-sub-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  text-decoration: none; color: inherit;
  transition: all .3s var(--ease);
}
.srv-sub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}
.srv-sub-card:hover .ssci { transform: scale(1.08); }
.ssci {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px; display: grid; place-items: center;
  font-size: 20px; transition: transform .3s var(--ease);
}
.ss-text h4 { font-size: 13.5px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; line-height: 1.3; }
.ss-text p  { font-size: 11.5px; color: var(--gray-400); line-height: 1.5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-hero-visual {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2044 100%);
  height: 520px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; padding: 40px;
}
.about-hero-visual i { font-size: 80px; color: rgba(255,255,255,.15); }
.about-hero-visual h3 { font-size: 22px; font-weight: 800; color: #fff; text-align: center; }
.about-hero-visual p  { font-size: 14px; color: rgba(255,255,255,.55); text-align: center; line-height: 1.7; }
.about-stat-row {
  display: flex; gap: 16px; width: 100%; margin-top: 8px;
}
.abs-card {
  flex: 1; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px; text-align: center;
}
.abs-card strong { font-size: 26px; font-weight: 900; color: #fff; display: block; }
.abs-card span   { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-card {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 22px 18px; text-align: center;
  transition: all .3s var(--ease);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.value-card i  { font-size: 28px; margin-bottom: 10px; display: block; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.value-card p  { font-size: 12.5px; color: var(--gray-400); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.team-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.team-av {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: grid; place-items: center; margin: 0 auto 16px;
  font-size: 28px; font-weight: 900; color: #fff;
}
.team-card h3   { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.team-card span { font-size: 12.5px; color: var(--red); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p    { font-size: 13px; color: var(--gray-400); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-info-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2044 100%);
  border-radius: var(--r-xl); padding: 44px 36px; color: #fff;
  position: relative; overflow: hidden;
}
.contact-info-box::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(29,78,216,.3) 0%, transparent 70%);
}
.contact-info-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 7px; }
.contact-info-box > p { font-size: 14px; opacity: .6; margin-bottom: 36px; }
.ci-item {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ci-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 11px; display: grid; place-items: center; font-size: 18px;
}
.ci-item h4 { font-size: 11px; font-weight: 700; opacity: .5; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.ci-item a, .ci-item span { font-size: 14.5px; font-weight: 600; color: #fff; }
.ci-item a:hover { opacity: .8; }
.hours-block h4 { font-size: 11px; font-weight: 700; opacity: .5; text-transform: uppercase; letter-spacing: .5px; margin: 24px 0 12px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13.5px; }
.hours-open { color: #4ADE80; font-weight: 600; }

.contact-form-box {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.contact-form-box > p { font-size: 14px; color: var(--gray-400); margin-bottom: 30px; }

.map-box {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.map-box i { font-size: 56px; color: var(--gray-200); }
.map-box h3 { font-size: 18px; font-weight: 700; color: var(--gray-600); }
.map-box p  { font-size: 14px; color: var(--gray-400); }

.success-alert {
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: 10px; padding: 14px 18px;
  font-size: 13.5px; font-weight: 600; color: #16A34A;
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 20px;
}

/* ============================================================
   SECTION TAGS & TITLES (shared across all page templates)
   ============================================================ */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(239,68,68,.08);
  color: var(--red);
  font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 14px; letter-spacing: .4px;
  text-transform: uppercase;
}
.section-tag i { font-size: 14px; }

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -1px; color: var(--dark);
  margin-bottom: 18px;
}
.section-title span {
  background: linear-gradient(135deg, var(--red) 0%, #F97316 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Map wrapper (contact page) */
.map-wrapper {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: 16px; padding: 56px 32px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.map-wrapper i { font-size: 64px; color: var(--gray-200); }
.map-wrapper p { font-size: 15px; color: var(--muted); }

/* Contact page classes (match contact.php markup) */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2044 100%);
  border-radius: var(--r-xl); padding: 44px 36px; color: #fff;
  position: relative; overflow: hidden;
}
.contact-info-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 7px; }
.contact-info-card > p { font-size: 14px; opacity: .6; margin-bottom: 28px; }

.c-info-item { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.c-info-item:last-of-type { border-bottom: none; }
.c-info-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(255,255,255,.08); border-radius: 11px; display: grid; place-items: center; font-size: 18px; color: #fff; }
.c-info-item h4 { font-size: 11px; font-weight: 700; opacity: .5; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.c-info-item a, .c-info-item span { font-size: 14.5px; font-weight: 600; color: #fff; }

.hours-grid { margin-top: 24px; }
.hours-grid h4 { font-size: 11px; font-weight: 700; opacity: .5; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13.5px; color: rgba(255,255,255,.75); }
.hours-row .open { color: #4ADE80; font-weight: 700; }

.contact-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: var(--font); color: var(--dark);
  background: var(--gray-50); outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.1); background: #fff;
}
.form-submit {
  width: 100%; padding: 15px; font-size: 15.5px; font-weight: 700; border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #F97316);
  color: #fff; border: none; cursor: pointer; font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 20px rgba(239,68,68,.3); transition: all .3s var(--ease);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(239,68,68,.45); }

.success-msg {
  background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.2);
  border-radius: 10px; padding: 14px 18px;
  font-size: 13.5px; font-weight: 600; color: #16A34A;
  display: flex; align-items: center; gap: 9px; margin-bottom: 20px;
}

/* About page classes */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--navy), #0F2044);
  border-radius: var(--r-xl); padding: 48px 40px; color: #fff;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.big-icon { font-size: 72px; color: rgba(255,255,255,.2); display: block; }
.about-visual h3 { font-size: 20px; font-weight: 800; }
.about-visual p { font-size: 14px; opacity: .65; line-height: 1.7; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-card { background: var(--gray-50); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px; text-align: center; transition: all .3s; }
.value-card:hover { background: #fff; box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.value-card i { font-size: 28px; color: var(--red); margin-bottom: 10px; display: block; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--dark); }
.value-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.about-content { }
.team-section { background: var(--gray-50); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); display: grid; place-items: center; margin: 0 auto 16px; font-size: 26px; font-weight: 900; color: #fff; }
.team-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.team-card span { font-size: 12.5px; color: var(--red); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* section-sm */
.section-sm { padding: 64px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media(max-width:900px) {
  .hero-grid, .why-grid, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .why-float-badge { display: none; }
  .testi-grid, .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Services page */
  .cat-filter { gap: 8px; }
  .cat-btn { font-size: 12px; padding: 8px 14px; }
  .cat-header { flex-wrap: wrap; }
  /* About page */
  .about-values { grid-template-columns: 1fr 1fr; }
  /* section spacing */
  .section { padding: 80px 0; }
  .section-sm { padding: 48px 0; }
}
@media(max-width:640px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .hero-inner { padding: 90px 0 56px; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .section-title { font-size: clamp(22px, 5.5vw, 32px); }
  .testi-grid, .process-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .form-row, .form-row-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .contact-form-card, .contact-info-card { padding: 28px 20px; }
  .cta-strip { flex-direction: column; text-align: center; }
  /* services page filter overflow */
  .cat-filter { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cat-filter::-webkit-scrollbar { display: none; }
  .cat-btn { flex-shrink: 0; }
  /* sub-services grid compact */
  .sub-services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sub-card { padding: 14px 12px; }
}
@media(max-width:420px) {
  .sub-services-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .impact-num { font-size: 44px; }
  #tcu-wa-btn { bottom: 18px !important; right: 16px !important; width: 52px !important; height: 52px !important; }
}

/* ─── RELATED SERVICES (service-page.php) ─── */
.sp-related-section { background: #f8fafc; padding: 56px 0; border-top: 1px solid #e2e8f0; }
.sp-related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 14px; margin-top: 32px; }
.sp-related-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px 16px; text-decoration: none; transition: all .25s; }
.sp-related-card:hover { border-color: #EF4444; box-shadow: 0 4px 16px rgba(239,68,68,.1); transform: translateY(-2px); }
.sp-related-card > i:first-child { font-size: 26px; color: #EF4444; flex-shrink: 0; }
.sp-related-card div { flex: 1; }
.sp-related-card strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; }
.sp-related-card span { display: block; font-size: 12px; color: #64748b; margin-top: 2px; }
.sp-related-arrow { font-size: 16px; color: #cbd5e1; flex-shrink: 0; }
.sp-related-card:hover .sp-related-arrow { color: #EF4444; }
.sp-btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border: 2px solid var(--navy); border-radius: 10px; color: var(--navy); font-weight: 700; font-size: 14px; text-decoration: none; transition: all .25s; }
.sp-btn-outline:hover { background: var(--navy); color: #fff; }

/* ─── SIBLING SERVICES (sub-service-page.php) ─── */
.ssp-siblings { background: #f8fafc; padding: 48px 0; border-top: 1px solid #e2e8f0; }
.ssp-sib-head { text-align: center; margin-bottom: 28px; }
.ssp-sib-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 12px; }
.ssp-sib-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px 14px; text-decoration: none; transition: all .25s; }
.ssp-sib-card:hover { border-color: #1D4ED8; box-shadow: 0 4px 16px rgba(29,78,216,.1); transform: translateY(-2px); }
.ssp-sib-card > i:first-child { font-size: 24px; color: #1D4ED8; flex-shrink: 0; }
.ssp-sib-card div { flex: 1; min-width: 0; }
.ssp-sib-card strong { display: block; font-size: 13px; font-weight: 700; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ssp-sib-card span { display: block; font-size: 12px; color: #64748b; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ssp-sib-card > i:last-child { font-size: 16px; color: #cbd5e1; flex-shrink: 0; }
.ssp-sib-card:hover > i:last-child { color: #1D4ED8; }

/* ============================================================
   REDUCED MOTION (accessibility)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
  .hero-orb     { animation: none; }
}
