/* ============================================================
   SPARK FLASH SECURITY LTD — Design System
   "Corporate Security 2028" — Outfit Edition
   ============================================================ */

/* 1. Google Fonts — Outfit + Space Grotesk + Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap&font-display=swap');

/* 2. Design Tokens */
:root {
  /* Brand Palette */
  --navy:       #0C1F33;
  --navy-deep:  #0a1a2b;
  --white:      #FFFFFF;
  --steel:      #5B6770;
  --sky:        #32A8E0;
  --red:        #D72638;
  --red-deep:   #b01e2d;
  --red-10:     rgba(215, 38, 56, 0.10);
  --red-20:     rgba(215, 38, 56, 0.20);
  --lgrey:      #F2F4F6;

  /* Computed */
  --navy-80:    rgba(12, 31, 51, 0.80);
  --navy-90:    rgba(12, 31, 51, 0.90);
  --sky-10:     rgba(50, 168, 224, 0.10);
  --sky-20:     rgba(50, 168, 224, 0.20);

  /* Typography — Outfit is the corporate authority font */
  --ff-head: 'Outfit', 'Space Grotesk', Arial, sans-serif;
  --ff-body: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-mono: 'Space Grotesk', monospace;

  /* Spacing */
  --section-py: 5.5rem;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(12,31,51,0.06);
  --shadow-card: 0 4px 28px rgba(12,31,51,0.09);
  --shadow-lift: 0 10px 48px rgba(12,31,51,0.16);
  --shadow-red:  0 8px 32px rgba(215,38,56,0.30);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:   all 0.3s var(--ease);
}

/* ── TOPBAR ─────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--red);
  padding: 0;
  min-height: 38px;
  position: relative;
  z-index: 1060;
  overflow: hidden;
}
/* Subtle diagonal texture overlay */
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.025) 6px,
    rgba(255,255,255,0.025) 12px
  );
  pointer-events: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  position: relative;
  z-index: 1;
}

/* Left section: badges */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.topbar-badge .bi { font-size: 0.72rem; }

.topbar-badge-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.40);
}

.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.30);
  display: inline-block;
  flex-shrink: 0;
}

/* Right section: contact + socials */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.92);
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.topbar-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.topbar-link .bi { font-size: 0.75rem; flex-shrink: 0; }

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0.15rem;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 0.25rem;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,0.80);
  font-size: 0.82rem;
  border-radius: 3px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.topbar-social:hover {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}

@media (max-width: 575px) {
  .topbar-left  { display: none; }
  .topbar-right { margin-left: 0; gap: 0; }
  .topbar-link span { display: none; }
  .topbar-link .bi  { font-size: 0.9rem; }
  .topbar-link { padding: 0.2rem 0.5rem; }
  .topbar-divider { height: 14px; margin: 0; }
}

/* 3. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--steel);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* 4. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}
a { color: var(--sky); text-decoration: none; transition: var(--t); }
a:hover { color: var(--navy); }

/* Outfit utility classes */
.text-outfit { font-family: var(--ff-head) !important; }
.fw-black     { font-weight: 900 !important; }

/* Section background helpers */
.bg-white  { background: var(--white) !important; }
.bg-lgrey  { background: var(--lgrey) !important; }
.bg-navy   { background: var(--navy)  !important; }
section    { padding: var(--section-py) 0; }

/* ── 5. SIGNATURE MOTIFS ──────────────────────────────────────────────────── */

/* Diagonal Sky Blue accent line (used beside headings, as dividers) */
.sky-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--sky);
  transform: skewX(-18deg);
  border-radius: 2px;
}

/* Corner-cut containers — echo the shield/lightning-bolt angularity */
.corner-cut {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  overflow: hidden;
  position: relative;
}
.corner-cut-lg {
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
  overflow: hidden;
}

/* Photo containers with corner motif + navy overlay */
.photo-frame {
  position: relative;
  border-radius: 2px;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.photo-frame:hover img { transform: scale(1.04); }
/* Sky-blue corner accent line */
.photo-frame::before {
  content: '';
  position: absolute;
  top: -4px; right: -4px;
  width: 56px; height: 3px;
  background: var(--sky);
  transform: rotate(45deg);
  transform-origin: right top;
  z-index: 2;
}
/* Navy 10% overlay */
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,31,51,0.10);
  pointer-events: none;
}

/* ── 6. SECTION HEADER ───────────────────────────────────────────────────── */
.section-header { margin-bottom: 3.25rem; }

/* Section numbers hidden — clean minimal headings */
.section-number { display: none; }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0;
}
/* Red accent — one emphatic word per heading */
.accent, .section-title .accent,
h1 .accent, h2 .accent, h3 .accent {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}
.accent-red  { color: var(--red)  !important; }
.accent-sky  { color: var(--sky)  !important; }

/* Section title: red + sky double-bar underline */
.section-title::after {
  content: '';
  display: block;
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 45%, var(--sky) 55%, var(--sky) 100%);
  margin-top: 0.85rem;
  transform: skewX(-18deg);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(215,38,56,0.35);
}
.bg-navy .section-title         { color: var(--white); }
.bg-navy .section-title::after  { background: linear-gradient(90deg, var(--red) 0%, var(--red) 45%, var(--sky) 55%, var(--sky) 100%); }

.section-subtitle {
  color: var(--steel);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 540px;
  line-height: 1.8;
}
.bg-navy .section-subtitle { color: rgba(255,255,255,0.65); }

/* ── 7. NAVBAR ───────────────────────────────────────────────────────────── */
.navbar-spark {
  background: var(--navy);
  padding: 0.85rem 0;
  position: sticky;
  top: 38px; /* Sits below topbar */
  z-index: 1050;
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease), top 0.3s var(--ease);
  box-shadow: 0 2px 20px rgba(12,31,51,0.20);
  border-bottom: 3px solid var(--red);
}
.navbar-spark.scrolled {
  padding: 0.5rem 0;
  top: 0;
  box-shadow: 0 4px 32px rgba(12,31,51,0.50);
}

.navbar-brand-spark {
  display: flex; align-items: center; gap: 0.85rem; text-decoration: none;
}
.navbar-brand-spark img { height: 52px; width: auto; }
/* Brand text — shown beside the icon logo */
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.03em;
}
.brand-name .accent-sky { color: var(--sky) !important; }
.brand-tagline {
  font-size: 0.6rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ── Unedited Logo Floating White Background (Overflow Navbar) ────────── */
.logo-white-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px 18px 12px 18px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-top: none;
  position: relative;
  z-index: 1070;
  margin-bottom: -28px; /* Hangs down past navbar bottom edge */
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.logo-white-badge:hover {
  transform: translateY(3px);
  box-shadow: 0 14px 36px rgba(50, 168, 224, 0.40);
  background: #ffffff;
}
.logo-img-unedited {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .logo-white-badge {
    padding: 6px 12px 10px 12px;
    border-radius: 0 0 10px 10px;
    margin-bottom: -20px;
  }
  .logo-img-unedited {
    height: 52px;
  }
}

.logo-white-badge-mob {
  margin-bottom: 0 !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
}
.logo-white-badge-mob .logo-img-unedited {
  height: 44px;
}

.logo-white-badge-footer {
  margin-bottom: 0 !important;
  border-radius: 12px !important;
  padding: 10px 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}
.logo-white-badge-footer .logo-img-unedited {
  height: 64px;
}

.navbar-spark .nav-link {
  color: rgba(255,255,255,0.80) !important;
  font-family: var(--ff-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.55rem 0.9rem !important;
  position: relative; transition: var(--t);
}
.navbar-spark .nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0.9rem; right: 0.9rem;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--sky));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
  border-radius: 2px;
}
.navbar-spark .nav-link:hover,
.navbar-spark .nav-link.active { color: var(--white) !important; }
.navbar-spark .nav-link:hover::after,
.navbar-spark .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.navbar-spark .dropdown-menu {
  background: var(--navy-deep);
  border: 1px solid rgba(215,38,56,0.25);
  border-top: 3px solid var(--red);
  border-radius: 0 0 10px 10px;
  margin-top: 0; padding: 0.5rem 0;
  box-shadow: 0 16px 48px rgba(12,31,51,0.60);
  min-width: 230px;
}
.navbar-spark .dropdown-item {
  color: rgba(255,255,255,0.72); font-family: var(--ff-head);
  font-size: 0.77rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.65rem 1.25rem; transition: var(--t);
  display: flex; align-items: center; gap: 0.6rem;
  border-left: 3px solid transparent;
}
.navbar-spark .dropdown-item:hover {
  background: var(--red-10);
  color: var(--white);
  border-left-color: var(--red);
  padding-left: 1.55rem;
}
.navbar-spark .dropdown-item .bi { font-size: 0.9rem; color: var(--red); }

/* ── Digital Reporting — plain nav item (no special highlight) ──────── */
.nav-link--digital { display: inline-flex !important; align-items: center; gap: 0.4rem; }
.nav-link--digital .bi { font-size: 0.75rem; }

/* ── Hamburger → X animation ─────────────────────────────────────────── */
.navbar-toggler {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: var(--t);
  padding: 0;
}
.navbar-toggler:hover { background: rgba(50,168,224,0.2); }
.toggler-bar {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, width 0.3s var(--ease);
  transform-origin: center; align-self: center;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; width: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Overlay Menu ─────────────────────────────────────────────── */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 1999;
  background: rgba(8, 20, 35, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mob-overlay.open { display: block; }

.mob-panel {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--navy);
  max-height: 92vh;
  overflow-y: auto;
  border-bottom: 3px solid var(--sky);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-105%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-overlay.open .mob-panel { transform: translateY(0); }

/* Panel header */
.mob-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0;
  background: var(--navy); z-index: 2;
}
.mob-panel-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}
.mob-panel-logo img { height: 48px; width: auto; }
.mob-panel-logo .brand-text { display: flex; }
.mob-panel-logo .brand-name { font-size: 0.88rem; }
.mob-panel-logo .brand-tagline { font-size: 0.55rem; }

.mob-close {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: var(--t);
}
.mob-close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }

/* Nav items */
.mob-nav { list-style: none; padding: 0.5rem 0 1.5rem; margin: 0; }

.mob-nav-link {
  display: flex; align-items: center;
  width: 100%; padding: 0.95rem 1.5rem;
  color: rgba(255,255,255,0.82);
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; text-decoration: none;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: none; cursor: pointer; text-align: left;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  gap: 0.85rem;
}
.mob-nav-link:hover,
.mob-nav-link.active { color: var(--sky); background: rgba(50,168,224,0.07); padding-left: 2rem; }
.mob-nav-link.active { border-left: 3px solid var(--sky); }

.mob-nav-icon { font-size: 1rem; color: var(--sky); flex-shrink: 0; }

/* Services accordion button */
.mob-nav-accordion { justify-content: space-between; }
.mob-nav-accordion > span { display: flex; align-items: center; gap: 0.85rem; }
.mob-chevron { transition: transform 0.3s var(--ease); font-size: 0.8rem; margin-left: auto; }
.mob-nav-accordion[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); }
.mob-nav-accordion[aria-expanded="true"] { color: var(--sky); background: rgba(50,168,224,0.07); }

/* Sub-menu */
.mob-sub-menu {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease;
  background: rgba(0,0,0,0.22);
}
.mob-sub-menu.open { max-height: 520px; }
.mob-sub-menu li a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.75rem 1.5rem 0.75rem 2.25rem;
  color: rgba(255,255,255,0.60);
  font-family: var(--ff-head); font-size: 0.83rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.mob-sub-menu li a:hover { color: var(--sky); background: rgba(50,168,224,0.08); padding-left: 2.75rem; }
.mob-sub-menu li a .bi { color: var(--sky); font-size: 0.85rem; flex-shrink: 0; }

/* CTA button - mobile */
.mob-nav-cta { padding: 1rem 1.5rem 0; }
.mob-cta-btn {
  justify-content: center;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  border-bottom: none !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.5rem !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.mob-cta-btn:hover { background: #2190c8 !important; padding-left: 1.5rem !important; }


/* CTA button in nav */
.btn-nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 0.45rem 1.4rem !important;
  font-weight: 800 !important;
  font-family: var(--ff-head) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: var(--t) !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  box-shadow: 0 4px 16px rgba(215,38,56,0.35) !important;
}
.btn-nav-cta:hover {
  background: var(--red-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215,38,56,0.50) !important;
}
.btn-nav-cta::after { display: none !important; }

/* ── 8. BUTTONS ──────────────────────────────────────────────────────────── */
.btn-spark,
.btn-spark-outline,
.btn-spark-white,
.btn-spark-red {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 2rem; border-radius: 4px; border: none;
  font-family: var(--ff-head); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; transition: var(--t);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn-spark { background: var(--sky); color: var(--white); }
.btn-spark:hover { background: #2190c8; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(50,168,224,0.40); }

/* RED — max CTA impact */
.btn-spark-red { background: var(--red); color: var(--white); }
.btn-spark-red:hover {
  background: var(--red-deep); color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-spark-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-spark-outline:hover { border-color: var(--red); color: var(--white); transform: translateY(-2px); background: rgba(215,38,56,0.15); }

.btn-spark-white { background: var(--white); color: var(--navy); }
.btn-spark-white:hover { background: var(--red); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-red); }

.btn-spark-navy { background: var(--navy); color: var(--white); }
.btn-spark-navy:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }

/* ── 9. HERO SLIDER ──────────────────────────────────────────────────────── */

/* ── Outer container ─────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 560px;
  max-height: 920px;
  overflow: hidden;
  background: var(--navy-deep);
  /* Keep the slider below the sticky topbar+navbar */
}

/* ── Track: horizontal strip of slides ───────────────────────────────────── */
.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ── Individual slide ─────────────────────────────────────────────────────── */
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image — full bleed, no gradient */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  /* Ken Burns subtle zoom */
  transition: transform 6s ease-in-out;
  transform: scale(1.04);
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1.0);
}

/* Very subtle dark veil just to make card legible on any photo — nothing heavy */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

/* Slide inner — positions the card to the LEFT */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  pointer-events: none;
  padding-top: clamp(2rem, 5vh, 4rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

/* ── CONTENT CARD ────────────────────────────────────────────────────────── */
.hero-card {
  pointer-events: all;
  align-self: center;
  background: var(--navy);
  border-left: 5px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: clamp(1.75rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 520px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.60),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;

  /* Slide-in animation from the LEFT */
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

/* Decorative corner triangle — top-right */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent var(--red) transparent transparent;
  opacity: 0.18;
}

/* Red→sky bottom bar */
.hero-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--sky), transparent);
}

/* Activate card when slide is active */
.hero-slide.active .hero-card {
  opacity: 1;
  transform: translateX(0);
}

/* Sky accent variant */
.hero-card--accent {
  background: linear-gradient(155deg, var(--navy-deep) 0%, #0f2a48 100%);
  border-left-color: var(--sky);
}
.hero-card--accent::before {
  border-color: transparent var(--sky) transparent transparent;
  opacity: 0.14;
}

/* ── Card internals ──────────────────────────────────────────────────────── */
.hero-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.hero-card-eyebrow .bi { font-size: 0.8rem; }
.hero-card--accent .hero-card-eyebrow { color: var(--sky); }

.hero-card-title {
  font-family: var(--ff-head);
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-card-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 440px;
}

.hero-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Small inline badge at card bottom */
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
  margin-top: 0.25rem;
}
.hero-card-badge .bi { color: var(--sky); }

/* ── Navigation arrows ───────────────────────────────────────────────────── */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(12, 31, 51, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(6px);
}
.hero-nav:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.hero-nav--prev { left: clamp(0.75rem, 2vw, 2rem); }
.hero-nav--next { right: clamp(0.75rem, 2vw, 2rem); }

@media (max-width: 575px) {
  .hero-nav { width: 40px; height: 40px; font-size: 0.9rem; }
}

/* ── Dot indicators ──────────────────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.55rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s, width 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  width: 28px;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.7); }

/* ── Slide counter (top-right) ───────────────────────────────────────────── */
.hero-counter {
  position: absolute;
  top: 1.5rem;
  right: clamp(1rem, 3vw, 2.5rem);
  z-index: 10;
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#heroCurrentSlide { color: var(--red); font-size: 1.5rem; line-height: 1; }
.hero-counter-sep { font-size: 1rem; opacity: 0.35; }

/* ── Progress bar (bottom of slider) ────────────────────────────────────── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--sky));
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Keep page-hero (non-home heroes) intact ─────────────────────────────── */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 88vh; overflow: hidden;
}
.page-hero { min-height: 46vh; }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,31,51,0.88) 0%, rgba(12,31,51,0.60) 55%, rgba(12,31,51,0.40) 100%);
}
.page-hero .hero-bg::after {
  background: linear-gradient(135deg, rgba(12,31,51,0.93) 0%, rgba(12,31,51,0.72) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--sky); font-family: var(--ff-head);
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 38px; height: 2px;
  background: var(--sky); transform: skewX(-18deg);
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title .accent-red { color: var(--red); }
.hero-title .accent-sky { color: var(--sky); }
.hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem; max-width: 520px;
  margin-bottom: 2.5rem; line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Breadcrumb (page heroes) */
.breadcrumb-spark {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
  font-family: var(--ff-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb-spark a { color: rgba(255,255,255,0.45); }
.breadcrumb-spark a:hover { color: var(--sky); }
.breadcrumb-spark .sep { color: var(--sky); }

/* ── 9b. PAGE HEADER (icon-only, no photo) ──────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #0e2642 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
/* Geometric ring — top-right corner accent */
.page-header::before {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 420px; height: 420px;
  border: 56px solid rgba(50, 168, 224, 0.055);
  transform: rotate(25deg);
  border-radius: 6px;
  pointer-events: none;
}
/* Sky accent bar — bottom left */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 200px; height: 3px;
  background: var(--sky);
  transform: skewX(-18deg);
  transform-origin: left bottom;
}
/* The big decorative icon */
.page-header-icon {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: min(230px, 30vw);
  color: rgba(50, 168, 224, 0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.page-header-content { position: relative; z-index: 1; }
.page-header-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* ── 10. SERVICE CARDS ────────────────────────────────────────────────────── */
.service-card {
  background: var(--white); border: 1px solid #e8ecf0;
  border-radius: 8px; padding: 2rem;
  box-shadow: var(--shadow-card); transition: var(--t);
  height: 100%; position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--sky);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); }
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px; background: var(--sky-10);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--sky); margin-bottom: 1.25rem;
  transition: var(--t);
}
.service-card:hover .card-icon { background: var(--sky); color: var(--white); }

.card-title {
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.75rem;
}
.card-text { color: var(--steel); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; }
.card-link {
  color: var(--sky); font-family: var(--ff-head);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--t);
}
.card-link:hover { gap: 0.75rem; color: var(--navy); }

/* Category cards (services overview page) */
.cat-card {
  background: var(--white); border: 1px solid #e8ecf0;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--t); height: 100%;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}
.cat-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }

.cat-card-head {
  background: var(--navy); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
}
.cat-card-head::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--sky);
}
.cat-card-icon { font-size: 2.5rem; color: var(--sky); margin-bottom: 0.85rem; display: block; }
.cat-card-title {
  font-family: var(--ff-head); font-size: 1.3rem; font-weight: 800;
  color: var(--white); margin: 0;
}
.cat-card-body { padding: 1.75rem; }

.service-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.service-list li {
  color: var(--steel); font-size: 0.88rem;
  padding: 0.45rem 0; border-bottom: 1px solid #f0f3f6;
  display: flex; align-items: center; gap: 0.6rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: ''; width: 7px; height: 7px;
  background: var(--sky); transform: rotate(45deg); flex-shrink: 0;
}

/* ── 11. STATS STRIP ──────────────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0f2440 50%, var(--navy) 100%);
  padding: 4rem 0; position: relative; overflow: hidden;
}
/* Red top accent bar */
.stats-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 40%, var(--sky) 60%, var(--sky) 100%);
}
.stats-strip::after {
  content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 2px;
  background: linear-gradient(270deg, rgba(50,168,224,0.5) 0%, transparent 100%);
}
/* Decorative background cross-hatch */
.stats-strip .container { position: relative; z-index: 1; }

.stat-item { text-align: center; padding: 1rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); height: 55%; width: 1px;
  background: rgba(255,255,255,0.10);
}
.stat-number {
  font-family: var(--ff-head); font-size: 3.5rem; font-weight: 900;
  color: var(--red); line-height: 1; display: block;
  text-shadow: 0 0 40px rgba(215,38,56,0.40);
}
.stat-number .stat-suffix { font-size: 2rem; color: var(--sky); }
.stat-label {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.16em; margin-top: 0.5rem; display: block;
}

/* ── 12. COMPLIANCE STRIP ─────────────────────────────────────────────────── */
.compliance-strip {
  background: var(--lgrey); padding: 1.5rem 0;
  border-top: 1px solid #dde2e7; border-bottom: 1px solid #dde2e7;
}
.compliance-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 0.5rem 2.25rem;
}
.compliance-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-head); font-size: 0.74rem; font-weight: 700;
  color: var(--steel); text-transform: uppercase; letter-spacing: 0.09em;
}
.compliance-item .dot {
  width: 7px; height: 7px; background: var(--sky); transform: rotate(45deg); flex-shrink: 0;
}
.compliance-sep { color: rgba(91,103,112,0.30); font-size: 1.2rem; }

/* ── 13. CTA BAND ─────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 45%, #a01828 100%);
  padding: 5.5rem 0;
  text-align: center; position: relative; overflow: hidden;
}
/* Diagonal texture overlay */
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 8px,
    rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 16px
  );
  pointer-events: none;
}
/* Top accent line */
.cta-band::after {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 220px; height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
}
.cta-band p { color: rgba(255,255,255,0.80); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; }

/* ── 14. RATES TABLE ──────────────────────────────────────────────────────── */
.rates-table {
  width: 100%; border-collapse: collapse;
  box-shadow: var(--shadow-card); border-radius: 10px; overflow: hidden;
}
.rates-table thead tr { background: var(--sky); }
.rates-table thead th {
  padding: 1.15rem 1.5rem; font-family: var(--ff-head);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: left; color: var(--white);
}
.rates-table tbody tr { background: var(--white); border-bottom: 1px solid #eef1f5; transition: background 0.2s; }
.rates-table tbody tr:hover { background: var(--lgrey); }
.rates-table tbody tr.highlighted { background: rgba(50,168,224,0.05); }
.rates-table tbody td { padding: 1.15rem 1.5rem; color: var(--steel); font-size: 0.93rem; }
.rates-table .rate-amount {
  font-family: var(--ff-head); font-weight: 800;
  color: var(--navy); font-size: 1.1rem;
}
.rates-table .rate-period {
  font-size: 0.75rem; color: var(--steel); font-weight: 500; display: block;
}
.rates-badge {
  display: inline-block; background: var(--sky); color: var(--white);
  font-family: var(--ff-head); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: 3px; margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── 14b. CONTACT PAGE LAYOUT ─────────────────────────────────────────────── */

/* Quick-contact bar below page header */
.contact-quick-bar {
  background: var(--sky);
  padding: 0.9rem 0;
}
.contact-quick-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 2rem;
}
.contact-quick-item {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--white); font-family: var(--ff-head);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; transition: opacity 0.2s;
}
.contact-quick-item:hover { opacity: 0.8; color: var(--white); }
.contact-quick-item .bi { font-size: 0.95rem; }
.contact-quick-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
@media (max-width: 767px) { .contact-quick-sep { display: none; } }

/* Two-column section */
.contact-main-section { background: var(--white); }

.contact-form-col { background: var(--white); }
.contact-form-inner {
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
  height: 100%;
}

/* Navy sidebar */
.contact-offices-col {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative; overflow: hidden;
}
.contact-offices-col::before {
  content: '\F3FA'; font-family: 'bootstrap-icons';
  position: absolute; bottom: -40px; right: -40px;
  font-size: min(300px, 50vw); color: rgba(50,168,224,0.05);
  line-height: 1; pointer-events: none;
}
.contact-offices-inner {
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column;
}

.contact-offices-title {
  font-family: var(--ff-head); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 0.4rem; line-height: 1.1;
}
.contact-offices-sub {
  color: rgba(255,255,255,0.50); font-size: 0.88rem;
  margin-bottom: 2rem;
}

/* In-sidebar office cards */
.contact-office-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--sky);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.contact-office-card:hover { background: rgba(255,255,255,0.11); }

.contact-office-badge {
  font-family: var(--ff-head); font-size: 0.65rem; font-weight: 800;
  color: var(--red); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-office-city {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 800;
  color: var(--white); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.contact-office-city .bi { color: var(--sky); font-size: 1rem; }

.contact-office-detail {
  display: flex; align-items: flex-start; gap: 0.65rem;
  color: rgba(255,255,255,0.60); font-size: 0.87rem;
  line-height: 1.7; margin-bottom: 0.55rem;
}
.contact-office-detail .bi { color: var(--sky); flex-shrink: 0; margin-top: 0.2rem; font-size: 0.85rem; }
.contact-office-detail a { color: rgba(255,255,255,0.60); text-decoration: none; }
.contact-office-detail a:hover { color: var(--sky); }

.contact-office-cta { margin-top: auto; padding-top: 1.5rem; }
.contact-office-cta .btn-spark { width: 100%; }

/* Fix: contact form labels sit directly in col-* — add spacing via CSS sibling rule */
.contact-form .row > [class*="col-"] + [class*="col-"] { }
.contact-form label {
  display: block; font-family: var(--ff-head);
  font-size: 0.75rem; font-weight: 800; color: var(--navy);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.55rem; margin-top: 0;
}

/* ── 15. CONTACT FORM ─────────────────────────────────────────────────────── */
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block; font-family: var(--ff-head);
  font-size: 0.75rem; font-weight: 800; color: var(--navy);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.55rem;
}
.contact-form label .req { color: var(--red); }
.contact-form .form-control {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid #dde2e8; border-radius: 6px;
  font-family: var(--ff-body); font-size: 0.95rem;
  color: var(--navy); background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none; -webkit-appearance: none;
}
.contact-form .form-control:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(50,168,224,0.16);
}
.contact-form textarea.form-control { min-height: 155px; resize: vertical; }
.contact-form select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235B6770' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}

.alert-spark {
  border-radius: 8px; padding: 1rem 1.25rem;
  font-family: var(--ff-head); font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem;
}
.alert-spark.success { background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.30); color: #15803d; }
.alert-spark.error   { background: rgba(215,38,56,0.10);  border: 1px solid rgba(215,38,56,0.30);  color: var(--red); }
.alert-spark .bi { font-size: 1.15rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ── 16. OFFICE CARDS ─────────────────────────────────────────────────────── */
.office-card {
  background: var(--white); border: 1px solid #e8ecf0;
  border-radius: 10px; padding: 2rem; box-shadow: var(--shadow-card);
  transition: var(--t); height: 100%; position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.office-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--sky);
}
.office-city {
  font-family: var(--ff-head); font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 0.35rem;
}
.office-label {
  font-family: var(--ff-head); font-size: 0.68rem; font-weight: 800;
  color: var(--red); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.office-detail {
  color: var(--steel); font-size: 0.9rem; line-height: 1.85;
  display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem;
}
.office-detail .bi { color: var(--sky); flex-shrink: 0; margin-top: 0.2rem; }

/* ── 17. SERVICE DETAIL CARDS ─────────────────────────────────────────────── */
.sd-card {
  background: var(--white); border-left: 3px solid var(--sky);
  padding: 2rem 2rem 2rem 2.25rem; margin-bottom: 2rem;
  box-shadow: var(--shadow-card); border-radius: 0 8px 8px 0; transition: var(--t);
}
.sd-card:hover { box-shadow: var(--shadow-lift); transform: translateX(4px); }
.sd-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.sd-card p  { color: var(--steel); font-size: 0.93rem; line-height: 1.8; margin: 0; }

.training-list {
  list-style: none; padding: 0; margin: 1.1rem 0 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 0.45rem;
}
.training-list li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.88rem; color: var(--steel); padding: 0.3rem 0;
}
.training-list li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--sky); transform: rotate(45deg); margin-top: 0.42rem;
}

/* ── 18. NOTICE / INFO BOXES ──────────────────────────────────────────────── */
.notice-box {
  background: var(--sky-10); border-left: 4px solid var(--sky);
  border-radius: 0 6px 6px 0; padding: 1.1rem 1.35rem;
  font-size: 0.9rem; color: var(--steel); margin-top: 1.75rem;
}
.notice-box strong { color: var(--navy); }

/* ── 19. COMPLIANCE DETAIL ────────────────────────────────────────────────── */
.comp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.comp-item {
  background: var(--white); border: 1px solid #e8ecf0;
  border-radius: 8px; padding: 1.75rem; text-align: center; box-shadow: var(--shadow-sm);
}
.comp-item .ci-label {
  font-family: var(--ff-head); font-size: 0.7rem; font-weight: 800;
  color: var(--sky); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.comp-item .ci-value {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 800; color: var(--navy);
}

/* ── 20. QUALITY POLICY ───────────────────────────────────────────────────── */
.quality-policy {
  background: var(--navy); color: rgba(255,255,255,0.82);
  padding: 2.75rem; border-radius: 8px; position: relative; overflow: hidden;
}
.quality-policy::before {
  content: '\201C'; position: absolute; top: -1rem; left: 1.5rem;
  font-size: 9rem; font-family: var(--ff-head); color: rgba(50,168,224,0.12); line-height: 1;
}
.quality-policy p { position: relative; z-index: 1; font-size: 1.02rem; line-height: 1.85; font-style: italic; }
.quality-policy cite {
  display: block; margin-top: 1.25rem; font-family: var(--ff-head);
  font-size: 0.72rem; font-weight: 800; color: var(--sky);
  letter-spacing: 0.12em; text-transform: uppercase; font-style: normal;
}

/* ── 21. MAPS ─────────────────────────────────────────────────────────────── */
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-card); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ── 22. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 4.5rem 0 0; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), transparent 70%);
}
.footer-brand-img { height: 52px; margin-bottom: 0.85rem; }
.footer-brand-name { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 800; color: var(--white); }
.footer-brand-name span { color: var(--sky); }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.40); font-size: 0.82rem; margin-top: 0.25rem; }

.footer-col-title {
  font-family: var(--ff-head); font-size: 0.72rem; font-weight: 800;
  color: var(--sky); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.35rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(50,168,224,0.18);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--t);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.footer-links a::before { content: '›'; color: var(--sky); }
.footer-links a:hover { color: var(--sky); gap: 0.65rem; }

.footer-contact-row {
  display: flex; gap: 0.75rem; margin-bottom: 0.9rem;
  font-size: 0.86rem; color: rgba(255,255,255,0.60); align-items: flex-start;
}
.footer-contact-row .bi { color: var(--sky); flex-shrink: 0; margin-top: 0.18rem; }
.footer-contact-row a { color: rgba(255,255,255,0.60); }
.footer-contact-row a:hover { color: var(--sky); }

.footer-bottom {
  margin-top: 3.5rem; padding: 1.3rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-reg {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-head); font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.30); letter-spacing: 0.06em;
}
.footer-reg::before { content: ''; width: 6px; height: 6px; background: var(--sky); transform: rotate(45deg); }

/* ── 23. SCROLL ANIMATIONS ────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ── 24. RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  :root { --section-py: 4rem; }
  .hero { min-height: 68vh; }
  .hero-home { min-height: 72vh; }
  .page-hero { min-height: 40vh; }
  .stat-item:not(:last-child)::after { display: none; }
  .navbar-collapse { background: rgba(12,31,51,0.98); padding: 1rem; border-top: 2px solid var(--sky); margin-top: 0.5rem; border-radius: 0 0 8px 8px; }
}
@media (max-width: 767.98px) {
  :root { --section-py: 3.25rem; }
  .hero-home { min-height: 65vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-spark,
  .hero-actions .btn-spark-outline { width: 100%; justify-content: center; }
  .footer-bottom .d-flex { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .compliance-items { gap: 0.75rem 1.25rem; }
  .rates-table { font-size: 0.84rem; }
  .rates-table th,
  .rates-table td { padding: 0.85rem 0.9rem; }
}
@media (max-width: 575.98px) {
  .section-number { font-size: 4.5rem; }
  .quality-policy { padding: 2rem; }
  .cat-card-head { padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   DIGITAL REPORTING PAGE
══════════════════════════════════════════════════════════════════════ */

/* ── Page header variant ─────────────────────────────────────────────── */
.dr-page-header {
  background: linear-gradient(135deg, #080f1a 0%, var(--navy-deep) 45%, #0a2040 100%);
}
.dr-page-header::before {
  border-color: rgba(215, 38, 56, 0.06);
}
.dr-page-header::after {
  background: var(--red);
}
.dr-eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

/* ── Problem / Solution section ─────────────────────────────────────── */
.dr-problem-section { padding: var(--section-py) 0; }

.dr-problem-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-10);
  border: 1px solid var(--red-20);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

.dr-problem-list,
.dr-solution-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }

.dr-problem-item,
.dr-solution-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
}
.dr-problem-bad {
  color: var(--red);
  background: rgba(215,38,56,0.06);
  border: 1px solid rgba(215,38,56,0.14);
}
.dr-problem-bad .bi { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }

.dr-solution-item {
  color: #1a7a3c;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
}
.dr-solution-item .bi { color: #22c55e; font-size: 0.9rem; flex-shrink: 0; }

/* Solution card */
.dr-solution-card {
  background: var(--navy);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  border-top: 4px solid var(--sky);
  box-shadow: 0 24px 64px rgba(12,31,51,0.22);
  position: relative;
  overflow: hidden;
}
.dr-solution-card::before {
  content: '\F5D2';
  font-family: 'bootstrap-icons';
  position: absolute;
  bottom: -30px; right: -20px;
  font-size: min(220px, 35vw);
  color: rgba(50,168,224,0.04);
  line-height: 1;
  pointer-events: none;
}
.dr-solution-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.dr-solution-icon {
  font-size: 2.5rem;
  color: var(--sky);
  flex-shrink: 0;
  line-height: 1;
}
.dr-solution-tag {
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.35rem;
}
.dr-solution-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.dr-solution-desc {
  color: rgba(255,255,255,0.68);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ── Benefit Cards ───────────────────────────────────────────────────── */
.dr-benefit-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.dr-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.dr-benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.dr-benefit-card:hover::before { transform: scaleX(1); }

.dr-benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--red-10);
  border: 1px solid var(--red-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  transition: var(--t);
}
.dr-benefit-card:hover .dr-benefit-icon { background: var(--red); color: var(--white); }

.dr-benefit-icon--sky { background: var(--sky-10); border-color: var(--sky-20); color: var(--sky); }
.dr-benefit-card:hover .dr-benefit-icon--sky { background: var(--sky); color: var(--white); }

.dr-benefit-title {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.dr-benefit-desc {
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

/* ── Navy two-col: checklists ────────────────────────────────────────── */
.dr-list-block { padding: 0.5rem 0; }

.dr-list-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.dr-list-eyebrow--sky { color: var(--sky); }

.dr-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dr-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, padding-left 0.2s;
  border-radius: 4px;
}
.dr-checklist li:last-child { border-bottom: none; }
.dr-checklist li:hover {
  background: rgba(215,38,56,0.10);
  color: var(--white);
  padding-left: 1.25rem;
}
.dr-checklist li .bi {
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.dr-checklist--sky li:hover { background: rgba(50,168,224,0.10); }
.dr-checklist--sky li .bi { color: var(--sky); }

/* ── How it works: Step Cards ────────────────────────────────────────── */
.dr-step-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 2.25rem 2rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--t);
  position: relative;
}
.dr-step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.dr-step-card--active {
  background: var(--navy);
  border-color: var(--red);
  box-shadow: 0 12px 48px rgba(215,38,56,0.22);
}
.dr-step-card--active .dr-step-number { color: var(--red); }
.dr-step-card--active .dr-step-icon { background: rgba(215,38,56,0.15); color: var(--red); }
.dr-step-card--active .dr-step-title { color: var(--white); }
.dr-step-card--active .dr-step-desc { color: rgba(255,255,255,0.65); }

.dr-step-number {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(12,31,51,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.dr-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sky-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--sky);
  margin: 0 auto 1.25rem;
  transition: var(--t);
}
.dr-step-card:hover .dr-step-icon { background: var(--sky); color: var(--white); }
.dr-step-card--active:hover .dr-step-icon { background: var(--red); }

.dr-step-title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.dr-step-desc {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.8;
  margin: 0;
}

/* ── CTA decorative phone icon ───────────────────────────────────────── */
.dr-cta-icon {
  position: absolute;
  font-size: min(300px, 40vw);
  color: rgba(255,255,255,0.04);
  top: 50%; right: 5%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  font-family: 'bootstrap-icons';
}

/* ── Homepage teaser pills ───────────────────────────────────────────── */
.dr-teaser-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dr-teaser-pill .bi { color: var(--red); font-size: 0.8rem; }
.dr-teaser-pill:hover {
  background: rgba(215,38,56,0.15);
  border-color: rgba(215,38,56,0.35);
  color: var(--white);
}

/* ── Homepage teaser mini-stat cards ─────────────────────────────────── */
.dr-teaser-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(215,38,56,0.25);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: var(--t);
}
.dr-teaser-card:hover {
  background: rgba(215,38,56,0.12);
  border-color: var(--red);
  transform: translateY(-4px);
}
.dr-teaser-card--sky {
  border-color: rgba(50,168,224,0.25);
}
.dr-teaser-card--sky:hover {
  background: rgba(50,168,224,0.12);
  border-color: var(--sky);
}
.dr-teaser-card-icon {
  font-size: 1.6rem;
  color: var(--red);
  display: block;
  margin-bottom: 0.6rem;
}
.dr-teaser-card--sky .dr-teaser-card-icon { color: var(--sky); }

.dr-teaser-card-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.dr-teaser-card-label {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}


