/* ── RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── DESIGN TOKENS ── */
:root {
  --brand-blue: #1a4b8c;
  --brand-blue-dark: #133872;
  --brand-red: #c8102e;
  --brand-red-dark: #a00d24;
  --neutral-50: #f8f8f8;
  --neutral-100: #f1f1f1;
  --neutral-200: #e5e7eb;
  --neutral-700: #374151;
  --neutral-900: #1a1a1a;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
}

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 75, 140, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.nav-link.active {
  border-bottom: 2px solid #c8102e;
}
.nav-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: #c8102e;
  padding: 8px 18px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-phone:hover { background: #a00d24; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #1a4b8c;
    padding: 16px 24px 24px;
    gap: 4px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-phone { margin-left: 0; margin-top: 8px; }
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: #c8102e;
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 500;
}
.promo-icon { margin: 0 4px; }
.promo-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.promo-link:hover { opacity: 0.85; }

/* ── SECTION UTILITIES ── */
.section-pad { padding: 80px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1a4b8c;
  margin-bottom: 12px;
}
.section-sub {
  color: #374151;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #1a4b8c;
  color: #fff;
  padding: 24px 32px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-icon { font-size: 1.1rem; }

/* ── SERVICES GRID ── */
.services-preview { background: #f8f8f8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.18s, box-shadow 0.18s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border-top-color: #c8102e;
}
.service-card--emergency {
  border-top-color: #c8102e;
  background: #fff5f5;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a4b8c;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 14px;
}
.promo-tag { color: #c8102e; }
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a4b8c;
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.card-link--urgent {
  color: #c8102e;
  font-weight: 700;
}
.services-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #c8102e;
  color: #fff;
}
.btn-primary:hover { background: #a00d24; }
.btn-secondary {
  background: transparent;
  color: #1a4b8c;
  border: 2px solid #1a4b8c;
}
.btn-secondary:hover { background: #1a4b8c; color: #fff; }
.btn-white {
  background: #fff;
  color: #c8102e;
  font-weight: 700;
}
.btn-white:hover { background: #f8f8f8; }

/* ── PROMO SECTION ── */
.promo-section {
  background: #1a4b8c;
  color: #fff;
  text-align: center;
}
.promo-inner { max-width: 660px; }
.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.promo-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.promo-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── FOOTER ── */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo { flex: 1 1 200px; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 140px;
}
.footer-nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact { flex: 1 1 180px; }
.footer-phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c8102e;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-phone:hover { text-decoration: underline; }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
