/* ============================================
   COASTAL PLUMBING AND HEATING - STYLES
   ============================================ */

:root {
  --navy: #0f1d35;
  --navy-light: #1a2d4f;
  --navy-mid: #142240;
  --orange: #e8720c;
  --orange-hover: #d16108;
  --orange-light: rgba(232, 114, 12, 0.12);
  --white: #ffffff;
  --off-white: #f7f8fa;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --text: #1e293b;
  --text-light: #475569;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --section-alt: #f8fafc;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --navy: #0a1628;
  --navy-light: #111d33;
  --off-white: #0d1829;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --border: #1e3050;
  --card-bg: #12202f;
  --section-alt: #0b1522;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  background: var(--card-bg);
  color: var(--text);
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-accent { color: var(--orange); }
.section { padding: 6rem 0; }
.section:nth-child(even) { background: var(--section-alt); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-accent {
  background: var(--orange);
  color: var(--white);
}
.btn-accent:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,114,12,0.35); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.navbar.scrolled .logo { color: var(--text); }
.logo-icon { width: 40px; height: 40px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.15rem; display: block; line-height: 1.1; }
.logo-sub { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }
.navbar.scrolled .nav-links .btn-accent { color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,53,0.92) 0%, rgba(15,29,53,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(232,114,12,0.5);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--white);
}
.stat-suffix { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--orange); }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.15rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll a { color: rgba(255,255,255,0.5); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* EMERGENCY BANNER */
.emergency-banner {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.emergency-inner strong { white-space: nowrap; }
.emergency-inner span { opacity: 0.9; font-size: 0.9rem; }
.emergency-inner .btn { margin-left: auto; }
.emergency-pulse {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--orange); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.service-price { font-size: 0.85rem; font-weight: 700; color: var(--orange); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-tools {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-md);
}
.about-experience-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-exp-num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; display: block; line-height: 1; }
.about-exp-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 0.25rem; }
.about-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.about-content p { color: var(--text-light); margin-bottom: 1rem; }
.accreditations { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.accred-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
}
.accred-icon svg { width: 40px; height: 40px; }
.accred-item strong { display: block; font-size: 0.9rem; }
.accred-item span { font-size: 0.78rem; color: var(--text-light); }

/* BEFORE/AFTER SLIDER */
.slider-section { background: var(--navy) !important; }
.slider-section .section-tag { color: var(--orange); }
.slider-section .section-header h2 { color: var(--white); }
.slider-section .section-header p { color: rgba(255,255,255,0.6); }
.ba-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 16/10;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 2; width: 50%; overflow: hidden; }
.ba-after { z-index: 1; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.ba-before img { min-width: 900px; width: auto; max-width: none; }
.ba-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  z-index: 5;
}
.ba-label-before { left: 1.5rem; background: var(--navy); color: var(--white); }
.ba-label-after { right: 1.5rem; background: var(--orange); color: var(--white); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
.ba-handle-line { flex: 1; width: 3px; background: var(--white); }
.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  flex-shrink: 0;
}

/* MAP */
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.map-container {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
#pembsMap { width: 100%; height: auto; }
.map-county {
  fill: var(--orange-light);
  stroke: var(--orange);
  stroke-width: 2;
  transition: fill var(--transition);
}
[data-theme="dark"] .map-county { fill: rgba(232,114,12,0.08); }
.map-coast { fill: none; stroke: var(--orange); stroke-width: 1; opacity: 0.3; }
.map-bay { fill: rgba(232,114,12,0.05); stroke: var(--orange); stroke-width: 1; opacity: 0.5; }
.map-town circle { fill: var(--card-bg); stroke: var(--orange); stroke-width: 2; transition: all var(--transition); cursor: pointer; }
.map-town .town-dot { fill: var(--orange); stroke: none; }
.map-town:hover circle:first-child { fill: var(--orange); r: 10; }
.map-town:hover .town-dot { fill: var(--white); }
.map-town text {
  font-size: 11px;
  font-weight: 600;
  fill: var(--text);
  pointer-events: none;
}
.map-town .town-sub { font-size: 8px; font-weight: 400; fill: var(--orange); }
[data-theme="dark"] .map-town text { fill: var(--text); }
.map-tooltip {
  position: absolute;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  white-space: nowrap;
}
.area-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.area-info > p { color: var(--text-light); margin-bottom: 1.5rem; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.area-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; }
.area-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.area-note { font-size: 0.85rem; color: var(--text-light); font-style: italic; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--orange); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--slate-light); }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-chevron { transition: transform var(--transition); flex-shrink: 0; color: var(--orange); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 1.25rem; color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }
.quote-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.75rem; text-align: center; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; }
.contact-item span { font-size: 0.8rem; color: var(--text-light); }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.hours-row:last-of-type { border: none; }
.hours-note { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-top: 0.75rem; }
.contact-img { border-radius: var(--radius); width: 100%; object-fit: cover; max-height: 200px; }

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; opacity: 0.7; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-links a { display: block; font-size: 0.85rem; margin-bottom: 0.5rem; opacity: 0.6; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--orange); }
.footer-phone { font-family: 'DM Serif Display', serif; font-size: 1.25rem !important; color: var(--orange) !important; opacity: 1 !important; }
.footer-small { font-size: 0.78rem; opacity: 0.5; margin-top: 0.5rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}
.footer-sample { color: var(--orange); opacity: 1; }

/* THEME TOGGLE */
.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  color: var(--text);
}
.theme-toggle:hover { transform: scale(1.1); border-color: var(--orange); }
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin: 1rem 0 0.5rem; }
.modal p { color: var(--text-light); margin-bottom: 1.5rem; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--card-bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text) !important; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-tools { width: 140px; right: -1rem; bottom: -1rem; }
  .about-experience-badge { left: -0.5rem; }
  .area-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-content { padding-top: 5rem; }
  .section { padding: 4rem 0; }
  .emergency-inner .btn { margin-left: 0; }
  .ba-before img { min-width: 100vw; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .area-list { grid-template-columns: 1fr; }
}
