/*
Theme Name: Royall Technologies
Theme URI: https://royall-tech.co.za
Author: Royall Technologies
Author URI: https://royall-tech.co.za
Description: Professional cybersecurity consulting theme — White & Royal Blue edition
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: royall-tech
Tags: business, cybersecurity, professional, white, royal-blue
*/

/* ── DESIGN TOKENS ── */
:root {
  --royal:       #4169E1;   /* Royal Blue — primary */
  --royal-dark:  #2d50c8;   /* Darker royal for hover */
  --royal-deep:  #1a3499;   /* Deep royal for headings on blue */
  --royal-light: #6b8be8;   /* Lighter royal */
  --royal-pale:  #eef2fd;   /* Very pale blue tint for backgrounds */
  --royal-50:    #f0f4ff;   /* Lightest tint */
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;
  --ink:         #0d1b3e;   /* Very dark navy for primary text */
  --red:         #dc2626;
  --red-light:   #fee2e2;
  --green:       #16a34a;
  --green-light: #dcfce7;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 100px 0; }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--royal);
  background: var(--royal-pale);
  border: 1px solid rgba(65,105,225,0.2);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.section-h {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--gray-500);
  font-weight: 300; line-height: 1.8;
  max-width: 560px; margin-bottom: 60px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s; border: 2px solid transparent;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-royal {
  background: var(--royal); color: var(--white);
  box-shadow: 0 4px 16px rgba(65,105,225,0.3);
}
.btn-royal:hover { background: var(--royal-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(65,105,225,0.4); }
.btn-outline {
  background: transparent; color: var(--royal);
  border-color: var(--royal);
}
.btn-outline:hover { background: var(--royal); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--royal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--royal-pale); color: var(--royal-dark); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.8); }
.btn-danger {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}
.btn-danger:hover { background: #b91c1c; color: var(--white); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 20px; color: var(--ink); letter-spacing: -0.5px;
}
.logo-mark {
  width: 36px; height: 36px; background: var(--royal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.site-logo .dot { color: var(--royal); }
#primary-navigation {
  display: flex; gap: 8px;
}
#primary-navigation a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.18s;
}
#primary-navigation a:hover { color: var(--royal); background: var(--royal-pale); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-emergency {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--red); padding: 8px 14px;
  border: 1.5px solid rgba(220,38,38,0.3);
  border-radius: 8px; background: var(--red-light);
  transition: all 0.2s;
}
.nav-emergency:hover { background: #fecaca; color: var(--red); border-color: var(--red); }
.nav-emergency .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; }
.nav-cta { background: var(--royal); color: #fff; padding: 10px 22px; border-radius: 9px; font-size: 14px; font-weight: 600; transition: background 0.2s; }
.nav-cta:hover { background: var(--royal-dark); color: #fff; }
.menu-toggle { display: none; background: none; border: 1.5px solid var(--gray-200); color: var(--gray-700); width: 38px; height: 38px; border-radius: 8px; font-size: 18px; align-items: center; justify-content: center; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--gray-100); position: absolute; top: 70px; left: 0; right: 0; z-index: 199; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 5%; color: var(--gray-700); font-size: 15px; border-bottom: 1px solid var(--gray-100); transition: background 0.15s; }
.mobile-menu a:hover { background: var(--royal-pale); color: var(--royal); }
.mobile-menu .emergency-link { color: var(--red); background: var(--red-light); font-weight: 600; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  padding: 130px 5% 80px;
  background: linear-gradient(150deg, var(--royal-50) 0%, var(--white) 50%, #f0f4ff 100%);
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle-1 {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; border: 1px solid rgba(65,105,225,0.1);
  top: -200px; right: -150px;
}
.hero-circle-2 {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%; border: 1px solid rgba(65,105,225,0.07);
  top: -80px; right: 50px;
}
.hero-blob {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(65,105,225,0.07) 0%, transparent 70%);
  top: -100px; right: -200px;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light); border: 1px solid rgba(220,38,38,0.25);
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--red);
  margin-bottom: 28px;
}
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; }
#hero h1 {
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -2px; margin-bottom: 24px;
  color: var(--ink); line-height: 1.05;
}
#hero h1 em {
  font-style: normal; color: var(--royal);
}
.hero-desc {
  font-size: 17px; color: var(--gray-500);
  line-height: 1.8; max-width: 480px;
  margin-bottom: 44px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--gray-200);
}
.hero-trust-label { font-size: 12px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge {
  font-size: 12px; font-weight: 600; color: var(--gray-600);
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 5px 12px; border-radius: 6px;
}
/* Hero image card */
.hero-visual { position: relative; }
.hero-img-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(65,105,225,0.18);
  border: 1px solid rgba(65,105,225,0.1);
  position: relative;
}
.hero-img-card img { width: 100%; height: 380px; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.7) 0%, transparent 50%);
}
.hero-img-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.badge-icon {
  width: 42px; height: 42px; background: var(--royal-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-icon svg { width: 20px; height: 20px; stroke: var(--royal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.badge-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.badge-text span { font-size: 12px; color: var(--gray-500); }
.float-stat {
  position: absolute; background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
}
.float-stat.top { top: -20px; right: -20px; animation-delay: 0s; }
.float-stat.left { bottom: 120px; left: -30px; animation-delay: 2s; }
.float-stat-val { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--royal); line-height: 1; }
.float-stat-label { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
#stats {
  background: var(--royal);
  padding: 0;
}
.stats-grid {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 44px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; }
.stat-num sup { font-size: 22px; vertical-align: super; color: rgba(255,255,255,0.8); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 400; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
#services { padding: 110px 0; background: var(--white); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.svc-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  background: var(--white);
}
.svc-card:hover { border-color: rgba(65,105,225,0.3); box-shadow: 0 16px 48px rgba(65,105,225,0.12); transform: translateY(-4px); }
.svc-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.4s;
}
.svc-card:hover .svc-img { transform: scale(1.04); }
.svc-img-wrap { overflow: hidden; position: relative; }
.svc-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,27,62,0.55) 100%);
}
.svc-img-label {
  position: absolute; bottom: 14px; left: 16px; z-index: 1;
  background: var(--royal); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 5px;
}
.svc-body { padding: 28px 28px 32px; }
.svc-icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--royal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--royal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-body h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.svc-body p { font-size: 14px; color: var(--gray-500); line-height: 1.75; font-weight: 300; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--royal); transition: gap 0.2s; }
.svc-link:hover { gap: 10px; color: var(--royal-dark); }
.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────────────────────────────────
   INCIDENT RESPONSE (SPLIT)
───────────────────────────────────────── */
#incident { padding: 110px 0; background: var(--royal-50); }
.incident-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.incident-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(65,105,225,0.15);
  position: relative;
}
.incident-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.incident-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(65,105,225,0.2), transparent 60%);
}
.incident-steps { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.inc-step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 20px;
  transition: border-color 0.2s;
}
.inc-step:hover { border-color: rgba(65,105,225,0.3); }
.inc-num {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--royal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.inc-step h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.inc-step p { font-size: 13px; color: var(--gray-500); line-height: 1.6; font-weight: 300; }
.retainer-box {
  background: var(--royal); border-radius: 16px; padding: 32px; color: #fff;
}
.retainer-box h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.retainer-box p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
.retainer-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.rfeat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.85); }
.rfeat-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.rfeat-check svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────────────────────────────────
   CAPABILITIES
───────────────────────────────────────── */
#capabilities { padding: 110px 0; background: var(--white); }
.cap-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.cap-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s; background: var(--white);
}
.cap-card:hover { border-color: rgba(65,105,225,0.25); box-shadow: 0 12px 40px rgba(65,105,225,0.1); transform: translateY(-3px); }
.cap-img-wrap { position: relative; overflow: hidden; }
.cap-img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s; }
.cap-card:hover .cap-img { transform: scale(1.04); }
.cap-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(13,27,62,0.5) 100%);
}
.cap-badge {
  position: absolute; bottom: 12px; left: 14px; z-index: 1;
  background: rgba(65,105,225,0.9); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; backdrop-filter: blur(4px);
}
.cap-body { padding: 24px 26px 28px; }
.cap-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cap-icon-sm { width: 36px; height: 36px; background: var(--royal-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cap-icon-sm svg { width: 18px; height: 18px; stroke: var(--royal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cap-body h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.cap-body p { font-size: 13px; color: var(--gray-500); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.cap-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.cap-tag { font-size: 11px; font-weight: 600; background: var(--royal-pale); color: var(--royal); padding: 3px 10px; border-radius: 4px; letter-spacing: 0.3px; }

/* ─────────────────────────────────────────
   AI SECURITY
───────────────────────────────────────── */
#ai-security { padding: 110px 0; background: var(--royal); overflow: hidden; position: relative; }
#ai-security::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#ai-security .section-tag { color: var(--white); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
#ai-security .section-h { color: var(--white); }
#ai-security .section-sub { color: rgba(255,255,255,0.65); }
.ai-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.ai-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.ai-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.ai-cards { display: flex; flex-direction: column; gap: 16px; }
.ai-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 24px;
  transition: all 0.2s;
}
.ai-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.ai-card h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ai-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.ai-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 7px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8);
}
.ai-chip svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
#why-us { padding: 110px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(65,105,225,0.1); }
.why-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--royal-pale); border: 1px solid rgba(65,105,225,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--royal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-point h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-point p { font-size: 13px; color: var(--gray-500); line-height: 1.7; font-weight: 300; }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
#cta-banner {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--ink) 0%, #1a3499 100%);
  text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(65,105,225,0.3) 0%, transparent 70%);
}
#cta-banner h2 { color: #fff; font-size: clamp(26px,3vw,40px); margin-bottom: 16px; position: relative; z-index: 1; }
#cta-banner p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 500px; margin: 0 auto 36px; font-weight: 300; line-height: 1.7; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact { padding: 110px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.c-card {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 22px; border-radius: 12px;
  border: 1px solid var(--gray-200); background: var(--white);
  transition: border-color 0.2s;
}
.c-card:hover { border-color: rgba(65,105,225,0.3); }
.c-card.urgent { border-color: rgba(220,38,38,0.3); background: var(--red-light); }
.c-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--royal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon.red { background: rgba(220,38,38,0.1); }
.c-icon svg { width: 20px; height: 20px; stroke: var(--royal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-icon.red svg { stroke: var(--red); }
.c-text h4 { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; }
.c-text p { font-size: 15px; font-weight: 500; color: var(--ink); }
.c-card.urgent .c-text h4 { color: var(--red); }
.c-card.urgent .c-text p { color: var(--red); }
.contact-form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 20px; padding: 40px;
  box-shadow: 0 8px 40px rgba(65,105,225,0.07);
}
.form-heading { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-600); letter-spacing: 0.3px; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; color: var(--gray-800);
  background: var(--gray-50); outline: none; transition: border 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--royal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(65,105,225,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { color: var(--gray-600); }
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
#form-feedback {
  padding: 12px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 500; display: none;
}
#form-feedback.success { background: var(--green-light); color: var(--green); border: 1px solid rgba(22,163,74,0.25); }
#form-feedback.error { background: var(--red-light); color: var(--red); border: 1px solid rgba(220,38,38,0.25); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#site-footer { background: var(--ink); padding: 72px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 16px; }
.footer-logo .logo-mark { background: var(--royal); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 250px; font-weight: 300; margin-bottom: 24px; }
.footer-contact-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-contact-line svg { width: 14px; height: 14px; stroke: var(--royal-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-line a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-line a:hover { color: #fff; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 11px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-emergency { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #fca5a5; font-weight: 500; }
.footer-emergency .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .ai-grid-layout { grid-template-columns: 1fr; }
  .ai-img-wrap { display: none; }
}
@media (max-width: 900px) {
  .incident-inner, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .incident-img-wrap, .why-img-wrap { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #primary-navigation, .nav-emergency { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 70px 0; }
}
