:root {
  --blue-900: #0b2a4a;
  --blue-800: #0f3b66;
  --blue-700: #14507f;
  --blue-500: #1e73be;
  --blue-100: #e8f3ff;
  --orange-500: #f47c20;
  --orange-600: #e26610;
  --white: #ffffff;
  --slate-700: #1f2d3d;
  --slate-500: #405161;
  --slate-200: #d8e1ea;
  --shadow: 0 18px 45px rgba(11, 42, 74, 0.18);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bebas Neue", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  background: #f6fbff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  z-index: 300;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-banner {
  background: linear-gradient(90deg, #f47c20, #f1a142);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.3px;
}

.top-banner strong {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(12, 29, 48, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--blue-900);
}

/* Logo image in header */
.brand-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Fallback icon (kept for any page not yet updated) */
.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-700);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
}

.brand span {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ---- Mobile hamburger button ---- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--blue-100);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile nav dropdown ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 12px 0 16px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 24px;
  font-weight: 600;
  color: var(--slate-700);
  border-bottom: 1px solid var(--blue-100);
  transition: color 0.15s;
}

.mobile-nav a:hover {
  color: var(--blue-700);
}

.mobile-nav .mobile-cta {
  margin: 12px 20px 0;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 999px;
  text-align: center;
  padding: 14px 20px;
  border-bottom: none;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
}

.nav a {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--blue-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.phone-pill {
  background: var(--blue-100);
  color: var(--blue-900);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 18px 28px rgba(244, 124, 32, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(244, 124, 32, 0.35);
}

.btn-outline {
  border: 2px solid var(--blue-700);
  color: var(--blue-700);
  background: transparent;
}

.hero {
  padding: 72px 0 56px;
  background: radial-gradient(circle at top left, rgba(30, 115, 190, 0.18), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #edf6ff 50%, #fdf1e5 100%);
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  color: var(--blue-900);
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 24px;
  color: var(--slate-500);
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-illustration {
  background: linear-gradient(120deg, #e8f3ff, #ffffff);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  background: var(--blue-100);
  color: var(--blue-900);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.section {
  padding: 64px 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0 0 16px;
  color: var(--blue-900);
}

.section p.lead {
  color: var(--slate-500);
  font-size: 1.05rem;
  margin: 0 0 24px;
}

.grid {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 35px rgba(15, 59, 102, 0.1);
}

.card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--blue-800);
}

.card p {
  color: var(--slate-500);
  margin: 0;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue-100);
  display: grid;
  place-items: center;
  color: var(--blue-700);
}

.emergency-banner {
  background: linear-gradient(100deg, #0b2a4a, #1e73be);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 12px;
}

.emergency-banner strong {
  font-size: 1.4rem;
}

.testimonial {
  display: grid;
  gap: 12px;
}

.testimonial span {
  font-weight: 700;
  color: var(--blue-700);
}

.service-area-list a {
  display: block;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  font-family: var(--font-body);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer a {
  color: var(--white);
}

/* Footer logo (white-filtered) */
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-copyright {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.floating-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 200;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 18px 28px rgba(244, 124, 32, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-call {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-actions .phone-pill {
    display: none;
  }
}

.page-hero {
  padding: 52px 0 30px;
  background: linear-gradient(120deg, #f3faff, #ffffff 45%, #fef1e3);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 12px;
  color: var(--blue-900);
}

.page-hero p {
  color: var(--slate-500);
}

.service-detail {
  display: grid;
  gap: 18px;
}

.service-detail ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--slate-500);
}

.map-placeholder {
  background: repeating-linear-gradient(45deg, #e4eef8, #e4eef8 12px, #f8fbff 12px, #f8fbff 24px);
  height: 260px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--slate-500);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- FAQ accordion ---- */
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.15s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--orange-500);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--blue-100);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--slate-500);
  line-height: 1.65;
}

.faq-item a {
  color: var(--blue-700);
  font-weight: 600;
  text-decoration: underline;
}