/* =============================================
   FIRST COAST AIR & HEAT — styles.css
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #f0f6fb;
  color: #1a2a3a;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

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

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #0099d4;
  color: #fff;
  border-color: #0099d4;
}
.btn-primary:hover {
  background: #0082b5;
  border-color: #0082b5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,153,212,0.35);
}

.btn-secondary {
  background: transparent;
  color: #0a2d5a;
  border-color: #0a2d5a;
}
.btn-secondary:hover {
  background: #0a2d5a;
  color: #fff;
}

.btn-full { width: 100%; }

/* ---- Section Typography ---- */
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0099d4;
  margin-bottom: 8px;
}

.section-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0a2d5a;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: #5a7080;
  max-width: 600px;
  margin-bottom: 40px;
}

.section-header { margin-bottom: 48px; }

/* ---- HR Gradient ---- */
.hr-gradient {
  height: 3px;
  background: linear-gradient(90deg, #0099d4, transparent);
  border: none;
  margin: 16px 0 28px;
  border-radius: 2px;
}

/* ---- Fade-up Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   EMERGENCY BAND (top)
   ============================================= */
.emergency-band {
  background: #0a2d5a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.emergency-band svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.emergency-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0099d4;
  color: #fff;
  padding: 4px 14px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.emergency-phone svg { width: 14px; height: 14px; }
.emergency-phone:hover { background: #0082b5; }

/* =============================================
   NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #d4e6f5;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(10,45,90,0.12);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark svg { width: 32px; height: 32px; }
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a2a3a;
  letter-spacing: 0.03em;
}
.logo-text strong {
  font-weight: 700;
  color: #0a2d5a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  color: #3a5070;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links li a:hover { color: #0099d4; }

.nav-cta {
  background: #0099d4 !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: #0082b5 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a2d5a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 108px);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(240,246,251,0.6) 0%,
    rgba(240,246,251,0) 60%
  );
}

.hero-content-wrap {
  background: #f0f6fb;
  display: flex;
  align-items: center;
  padding: 60px 64px 60px 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f3fb;
  border: 1px solid #c0ddf0;
  color: #0a2d5a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #0099d4;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.75); }
}

.hero-headline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #0a2d5a;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #5a7080;
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #d4e6f5;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #3a5070;
  letter-spacing: 0.03em;
}
.trust-item svg { width: 16px; height: 16px; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: #0a2d5a;
  padding: 0;
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0099d4;
  line-height: 1;
  letter-spacing: 0.03em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.stat-divider { display: none; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: #f0f6fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px 28px 28px;
  border: 1px solid #d4e6f5;
  border-left: 4px solid #0099d4;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,45,90,0.1);
}

.service-card-accent { display: none; }

.service-icon {
  margin-bottom: 16px;
}
.service-icon svg { width: 44px; height: 44px; }

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2d5a;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.service-card p {
  font-size: 0.95rem;
  color: #5a7080;
  line-height: 1.65;
}

.card-badge {
  display: inline-block;
  background: #0099d4;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 12px;
}

/* =============================================
   EMERGENCY CTA BAND
   ============================================= */
.emergency-cta-band {
  background: #0099d4;
  padding: 48px 24px;
}

.emergency-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.emergency-cta-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.emergency-cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 500px;
}

.emergency-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #0a2d5a;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  animation: phone-pulse 3s ease-in-out infinite;
}
.emergency-number svg {
  width: 22px;
  height: 22px;
  stroke: #0099d4;
  display: none;
}
.emergency-number:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@keyframes phone-pulse {
  0%, 85%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  42% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.emergency-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: flex-start;
  padding-bottom: 80px;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(10,45,90,0.12);
}

.about-image-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #0a2d5a;
  color: #fff;
  padding: 20px 28px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(10,45,90,0.25);
}
.aic-number {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0099d4;
  line-height: 1;
}
.aic-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.about-content > p {
  font-size: 1rem;
  color: #5a7080;
  margin-bottom: 36px;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #f0f6fb;
  border-radius: 4px;
  border: 1px solid #d4e6f5;
  transition: border-color 0.2s, transform 0.2s;
}
.trust-badge:hover {
  border-color: #0099d4;
  transform: translateX(4px);
}

.tb-icon { flex-shrink: 0; }
.tb-icon svg { width: 32px; height: 32px; }

.tb-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a2d5a;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.tb-text span {
  font-size: 0.88rem;
  color: #5a7080;
}

/* Service image row */
.service-image-row {
  background: #e8f3fb;
  padding: 60px 0;
}
.service-image-row .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-image-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(10,45,90,0.1);
}
.sir-caption h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a2d5a;
  margin-bottom: 14px;
}
.sir-caption p {
  font-size: 1rem;
  color: #5a7080;
  line-height: 1.65;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: 100px 0;
  background: #f0f6fb;
}

.reviews .section-header { text-align: left; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.review-card {
  background: #fff;
  border: 1px solid #d4e6f5;
  border-radius: 4px;
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,45,90,0.1);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #0a2d5a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-meta {
  flex: 1;
}
.review-meta strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a2d5a;
}
.review-meta span {
  font-size: 0.82rem;
  color: #7a90a0;
}
.review-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

.google-g { margin-left: auto; }
.google-g svg { width: 20px; height: 20px; }

.review-text {
  font-size: 0.95rem;
  color: #3a5070;
  line-height: 1.65;
  font-style: italic;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-left .section-heading { margin-bottom: 4px; }

.contact-left > p {
  font-size: 1rem;
  color: #5a7080;
  margin-bottom: 36px;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-item svg {
  width: 20px;
  height: 20px;
  stroke: #0099d4;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a7080;
  margin-bottom: 2px;
}
.ci-item div a,
.ci-item div span {
  font-size: 0.97rem;
  color: #1a2a3a;
  font-weight: 600;
}
.ci-item div a:hover { color: #0099d4; }

/* Form */
.contact-form-wrap {
  background: #f0f6fb;
  border: 1px solid #d4e6f5;
  border-radius: 4px;
  padding: 40px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0a2d5a;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #c0d8ed;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem;
  color: #1a2a3a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a2d5a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0099d4;
  box-shadow: 0 0 0 3px rgba(0,153,212,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #d04040; }

.field-error {
  font-size: 0.78rem;
  color: #d04040;
  font-weight: 600;
  margin-top: 4px;
  min-height: 18px;
}

.form-group textarea { resize: vertical; min-height: 90px; }

/* Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: #0099d4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0a2d5a;
  margin-bottom: 10px;
}
.form-success p { color: #5a7080; font-size: 0.97rem; }
.form-success a { color: #0099d4; font-weight: 700; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0a2d5a;
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark svg { width: 28px; height: 28px; }
.footer-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.footer-logo strong { color: #fff; font-weight: 700; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-bottom: 4px;
}
.footer-brand a {
  color: #0099d4;
  font-weight: 600;
  font-size: 1rem;
}
.footer-tagline-text {
  font-size: 0.88rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 12px !important;
}

.footer-links h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links li a:hover { color: #0099d4; }

.footer-certifications h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-badge {
  background: rgba(0,153,212,0.15);
  border: 1px solid rgba(0,153,212,0.3);
  color: #0099d4;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 2px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 380px; }
  .hero-content-wrap { padding: 48px 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap img { height: 340px; }
  .about-image-card { right: 12px; bottom: -16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-image-row .container { grid-template-columns: 1fr; gap: 32px; }
  .service-image-row img { height: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 108px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid #d4e6f5;
    box-shadow: 0 8px 20px rgba(10,45,90,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid #f0f6fb;
    font-size: 1.1rem;
    color: #0a2d5a;
  }
  .nav-cta { margin: 8px 24px; border-radius: 3px; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-inner { flex-direction: column; }

  .emergency-cta-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content-wrap { padding: 36px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 12px; }
  .about-image-card { position: static; margin-top: 16px; display: flex; gap: 12px; align-items: center; justify-content: center; }
}
