@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Lato:wght@400;700&display=swap');

:root {
  --navy: #0b1f3a;
  --navy-mid: #122847;
  --red: #c8102e;
  --red-dark: #a00d24;
  --gold: #f0a500;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --light-grey: #e8ecf1;
  --mid-grey: #6b7a8d;
  --dark-grey: #2d3748;
  --text: #1a2332;
  --shadow: 0 4px 24px rgba(11,31,58,0.12);
  --shadow-lg: 0 8px 48px rgba(11,31,58,0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --max-w: 1160px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--mid-grey); max-width: 620px; margin-bottom: 2.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-contact { display: flex; gap: 20px; }
.topbar-contact a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.topbar-contact a:hover { color: var(--gold); }
.topbar-certs { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* ---- HEADER / NAV ---- */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(11,31,58,0.09);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 0;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-svg { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.logo-tag {
  font-size: 0.7rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: var(--off-white); color: var(--red); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  margin-left: 8px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--red-dark); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark-grey);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--red); }
.dropdown-section { padding: 6px 12px 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-grey); margin-top: 4px; }
.dropdown-divider { height: 1px; background: var(--light-grey); margin: 6px 0; }

/* Mega dropdown for Services */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -120px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 560px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.mega-menu a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--light-grey);
  transition: color var(--transition), padding-left var(--transition);
}
.mega-menu a:last-child { border-bottom: none; }
.mega-menu a:hover { color: var(--red); padding-left: 6px; }
.mega-sub {
  font-size: 0.78rem;
  color: var(--mid-grey);
  padding-left: 10px;
}
.mega-sub:hover { color: var(--red) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.mobile-nav a.sub { padding-left: 16px; font-size: 0.95rem; color: var(--dark-grey); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-section { padding: 8px 0 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-grey); }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--navy-mid); padding: 10px 0; }
.trust-inner { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-item .icon { font-size: 1rem; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #0e2a52 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 48px 0 40px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; }
.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero-sub { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 1.05rem; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-2px); }
.card-icon { font-size: 2rem; }
.card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.card-desc { font-size: 0.9rem; color: var(--mid-grey); flex: 1; line-height: 1.6; }
.card-link { font-size: 0.85rem; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 4px; }
.card-link::after { content: '→'; }

/* ---- WHY GRID ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { list-style: none; padding: 0; margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-text h3 { font-size: 1.1rem; margin-bottom: 4px; }
.why-text p { font-size: 0.9rem; color: var(--mid-grey); margin: 0; }
.why-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.big-num { font-family: 'Barlow Condensed', sans-serif; font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
.why-visual p { color: rgba(255,255,255,0.75); margin: 8px 0 24px; }
.cert-list { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.cert-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cert-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ---- AREAS GRID ---- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.area-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.area-card:hover { box-shadow: var(--shadow); border-color: var(--red); }
.area-icon { font-size: 1.8rem; margin-bottom: 8px; }
.area-card h3 { font-size: 1rem; color: var(--navy); }

/* ---- CONTENT LAYOUT (inner pages) ---- */
.content-section { padding: 64px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.content-body h2 { margin: 2rem 0 0.75rem; padding-top: 0.5rem; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin: 1.5rem 0 0.5rem; color: var(--navy); }
.content-body h4 { margin: 1.2rem 0 0.4rem; color: var(--dark-grey); }
.content-body p { color: var(--dark-grey); margin-bottom: 1rem; }
.content-body ul, .content-body ol { color: var(--dark-grey); margin-bottom: 1rem; }

/* Sidebar */
aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-grey);
}
.sidebar-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 14px;
}
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--light-grey); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 8px 0; font-size: 0.9rem; color: var(--dark-grey); transition: color var(--transition), padding-left var(--transition); }
.sidebar-links a:hover { color: var(--red); padding-left: 4px; }

/* ---- FAQ ---- */
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--light-grey); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  gap: 12px;
  font-size: 0.95rem;
}
.faq-q span { font-size: 1.3rem; color: var(--mid-grey); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q span { transform: rotate(45deg); color: var(--red); }
.faq-a { display: none; padding: 0 0 16px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.92rem; color: var(--dark-grey); margin: 0; }

/* ---- FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 1.5rem 0; }
.feature-item {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border-left: 3px solid var(--red);
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.88rem; color: var(--mid-grey); margin: 0; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--red); padding: 56px 0; }
.cta-inner { display: flex; gap: 40px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-contact { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ---- FOOTER ---- */
footer { background: var(--navy); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-about p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 16px 0; line-height: 1.7; }
.footer-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-hours { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-certs { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.footer-cert { font-size: 0.82rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.footer-cert::before { content: '✓'; color: var(--gold); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  aside { position: static; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .mega-menu { display: none; }
}

/* ---- MOBILE NAV GROUPS (expandable) ---- */
.mob-group {
  display: none;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-grey);
}
.mob-group.open { display: block; }
.mobile-nav .subsub {
  padding-left: 32px !important;
  font-size: 0.88rem !important;
  color: var(--mid-grey) !important;
  border-bottom-color: var(--light-grey) !important;
}
.mobile-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.mobile-toggle:hover { color: var(--red); }
.mob-arrow { transition: transform 0.2s; font-size: 0.8rem; }
.mobile-toggle.open .mob-arrow { transform: rotate(180deg); }
