/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2744;
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: 1.15rem; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  text-align: center;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-orange {
  background: #f97316;
  color: #ffffff;
}
.btn-outline {
  background: transparent;
  color: #f97316;
  border: 2px solid #f97316;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: #1a2744;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.site-logo {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  max-width: 60%;
}
.header-phone a {
  background: #f97316;
  color: #ffffff;
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  background: #1a2744;
  color: #ffffff;
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 { color: #ffffff; margin-bottom: 1rem; }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #c8d4f0;
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 0.95rem;
  color: #93a8d4;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.hero-phone-display {
  color: #c8d4f0;
  font-size: 1rem;
  margin-top: 1rem;
}
.hero-phone-display a { color: #f97316; font-weight: 700; }

/* ===== SERVICES ===== */
.services { background: #f8f9fc; }
.services h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1a2744;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 16px rgba(26,39,68,0.1); }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { color: #1a2744; margin-bottom: 0.5rem; }
.service-card p { color: #4b5a7a; font-size: 0.95rem; }

/* ===== TRUST BAR ===== */
.trust { background: #1a2744; color: #ffffff; padding: 3rem 0; }
.trust h2 { text-align: center; color: #ffffff; margin-bottom: 2rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.trust-item { padding: 1rem; }
.trust-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.trust-item h3 { color: #f97316; margin-bottom: 0.4rem; font-size: 1rem; }
.trust-item p { color: #c8d4f0; font-size: 0.9rem; }

/* ===== SERVICE AREA ===== */
.service-area { background: #ffffff; }
.service-area h2 { margin-bottom: 1rem; color: #1a2744; }
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.area-text p { color: #4b5a7a; margin-bottom: 1rem; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 1rem;
}
.area-list li {
  background: #f0f4ff;
  color: #1a2744;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact { background: #f8f9fc; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact h2 { color: #1a2744; margin-bottom: 1rem; }
.contact-details p { color: #4b5a7a; margin-bottom: 1.5rem; }
.contact-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 1.5rem;
  display: block;
}
.contact-phone a { color: #f97316; }
.emergency-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #92400e;
  margin-top: 1.5rem;
}
.map-wrap { border-radius: 8px; overflow: hidden; border: 1px solid #e2e8f0; }
.map-wrap iframe { display: block; width: 100%; height: 320px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.875rem;
}
.site-footer a { color: #f97316; }
.footer-phone { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #f97316;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.sticky-cta:hover { background: #ea6d0d; }

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
  .sticky-cta { display: none; }

  .hero-ctas { flex-direction: row; justify-content: center; }

  .service-area-inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }
}
