/* ============================================================
   TRIAD HERO - Emergency Restoration Website
   Mobile-first responsive styles
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --blue-900: #0f2057;
  --blue-800: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-100: #fee2e2;

  --green-600: #059669;
  --green-500: #10b981;
  --green-100: #d1fae5;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-600); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--gray-900); line-height: 1.2; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-decoration: none;
  min-height: 48px;
}
.btn:active { transform: scale(.97); }

.btn-emergency {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(220,38,38,.35);
}
.btn-emergency:hover {
  background: var(--red-500);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(220,38,38,.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.btn-submit {
  width: 100%;
  background: var(--red-600);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(220,38,38,.3);
}
.btn-submit:hover {
  background: var(--red-500);
  box-shadow: 0 6px 28px rgba(220,38,38,.4);
  transform: translateY(-1px);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: var(--blue-900);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(15,32,87,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow: visible;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}
.logo-text { display: flex; flex-direction: column; min-width: 0; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
.logo-tagline {
  display: none;
  font-size: .65rem;
  color: var(--gray-400);
  letter-spacing: .03em;
  margin-top: 2px;
}

.logo-icon { width: 30px; height: 30px; flex-shrink: 0; }

/* Nav */
.main-nav { display: none; }
.nav-list { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-badge {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  color: var(--green-500);
  background: rgba(16,185,129,.12);
  padding: 6px 12px;
  border-radius: 100px;
}
.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--white);
  background: var(--red-600);
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background .2s, transform .15s;
  white-space: nowrap;
  min-width: 44px;
  min-height: 44px;
}
.header-phone span { display: none; }
.header-phone:hover {
  background: var(--red-500);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  z-index: 1001;
  transition: background .2s;
}
.mobile-toggle:hover, .mobile-toggle:active {
  background: rgba(255,255,255,.2);
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu Open */
.main-nav.open {
  display: flex;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--blue-900);
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  animation: slideDown .3s ease;
}
.main-nav.open .nav-list {
  flex-direction: column;
  width: 100%;
}
.main-nav.open .nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 20px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(30,58,138,.95), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(127,29,29,.6), transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #0f2057 100%);
  background-size: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59,130,246,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(220,38,38,.1) 0%, transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: heroFadeIn .8s ease;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge-anim {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  color: var(--green-500);
  background: rgba(16,185,129,.1);
  border: 1.5px solid rgba(16,185,129,.3);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge-dot {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 10px;
  height: 10px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16,185,129,.6);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(16,185,129,.6); }
  50% { opacity: .6; box-shadow: 0 0 14px rgba(16,185,129,.8); }
}
.hero-badge-top {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--white);
}
.hero-badge-bottom {
  font-weight: 600;
  font-size: .95rem;
  color: var(--green-500);
  letter-spacing: .02em;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.3); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 18px;
  border-radius: var(--radius-md);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.3);
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ALERT BAR
   ============================================================ */
.alert-bar {
  background: var(--red-600);
  padding: 14px 20px;
}
.alert-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  text-align: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
}
.alert-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--white);
  background: rgba(0,0,0,.2);
  padding: 8px 20px;
  border-radius: var(--radius-md);
  transition: background .2s;
}
.alert-phone:hover {
  background: rgba(0,0,0,.35);
  color: var(--white);
}
.pulse {
  animation: alertPulse 2s ease-in-out infinite;
}
@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 80px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card-body ul {
  margin-bottom: 12px;
}
.service-card-body li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--gray-600);
}
.service-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
}
.service-note {
  font-size: .82rem;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: 16px;
}
.service-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue-600);
}
.service-link:hover { color: var(--red-600); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 80px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--radius-md);
}
.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-item p {
  font-size: .95rem;
  color: var(--gray-500);
}

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage {
  padding: 80px 0;
  background: var(--blue-900);
  color: var(--white);
}
.coverage .section-label {
  background: rgba(255,255,255,.1);
  color: var(--blue-100);
}
.coverage .section-header h2 { color: var(--white); }
.coverage .section-header p { color: rgba(255,255,255,.6); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.coverage-city {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.08);
}
.coverage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
}
.coverage-city--primary {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.coverage-city--primary .coverage-dot {
  background: var(--green-500);
  box-shadow: 0 0 8px rgba(16,185,129,.5);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 80px 0;
  background: var(--gray-50);
}
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-100);
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-700);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--gray-50);
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  padding-top: 2px;
}
.step-content p {
  font-size: .95rem;
  color: var(--gray-500);
}
.step-content a {
  font-weight: 700;
  color: var(--red-600);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-700);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 50%;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--gray-900);
  display: block;
  font-size: .95rem;
}
.testimonial-card footer span {
  font-size: .82rem;
  color: var(--gray-400);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 80px 0;
  background: var(--gray-50);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-md); }

.faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--blue-600);
}
.faq-answer {
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 80px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-info .section-label { margin-bottom: 12px; }
.contact-info h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.contact-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--red-600);
  transition: color .2s;
}
.contact-phone-big:hover { color: var(--red-500); }
.contact-sub {
  font-size: .9rem;
  color: var(--gray-400);
  margin-top: 8px;
  margin-bottom: 28px;
}
.contact-trust { display: flex; flex-direction: column; gap: 10px; }
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-600);
}

/* Form */
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 0; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.required { color: var(--red-600); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color .2s, box-shadow .2s;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group + .form-group { margin-top: 16px; }

.radio-group {
  display: flex;
  gap: 20px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  color: var(--gray-600);
  cursor: pointer;
}
.radio-label input { width: auto; min-height: auto; cursor: pointer; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-100);
  color: var(--green-600);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  font-size: .95rem;
}
.form-success[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-logo .logo-name { color: var(--white); font-size: 1.1rem; }
.footer-col p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-col li a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-disclaimer { font-size: .75rem; color: rgba(255,255,255,.3); }


/* ============================================================
   RESPONSIVE - WIDE MOBILE (480px+)
   ============================================================ */
@media (min-width: 600px) {
  .hero-badge-anim {
    flex-direction: row;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
  }
  .hero-badge-dot { position: relative; top: auto; left: auto; }
  .hero-badge-top { font-size: 1.15rem; }
  .hero-badge-bottom { font-size: 1.05rem; }
  .header-inner { padding: 0 20px; gap: 16px; }
  .header-phone { padding: 10px 18px; }
  .header-phone span { display: inline; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-name { font-size: 1.15rem; }
  .logo-tagline { display: block; }
  .logo { gap: 10px; }
}

/* ============================================================
   RESPONSIVE - TABLET (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
  .main-nav { display: flex; }
  .header-badge { display: flex; }
  .logo-name { font-size: 1.25rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    max-width: 100%;
  }

  .coverage-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonial-grid { grid-template-columns: repeat(4, 1fr); }

  .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; gap: 64px; }
  .contact-trust { flex-direction: row; gap: 20px; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  .hero { min-height: 100vh; }
  .hero h1 { font-size: 3.5rem; }
}

/* ============================================================
   ANIMATIONS - scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* Skip to content (screen reader) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   CONVERSION FEATURES
   ============================================================ */

/* --- 1. Floating Mobile CTA Bar --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.floating-cta.visible { transform: translateY(0); }

.floating-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  background: var(--red-600);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background .2s;
}
.floating-cta-call:hover { background: var(--red-500); color: var(--white); }

.floating-cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.floating-cta-text:hover { background: var(--blue-700); color: var(--white); }

/* Hide on desktop */
@media (min-width: 1024px) {
  .floating-cta { display: none; }
}

/* Add bottom padding to body so footer isn't hidden behind floating bar */
@media (max-width: 1023px) {
  .site-footer { padding-bottom: 64px; }
}

/* --- 4. Social Proof Counter --- */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.social-proof-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.proof-count {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

/* --- 5. Speed Promise --- */
.hero-speed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-500);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-speed::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

/* --- 7. Crews Available Banner --- */
.crews-banner {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(4,78,57,.95);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform .4s ease;
}
.crews-banner.visible { transform: translateY(0); }
.crews-banner-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Offset scroll-padding when banner is visible */
html.crews-visible { scroll-padding-top: calc(var(--header-h) + 40px); }

/* --- Alert bar Text Us button --- */
.alert-text-btn {
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.alert-text-btn:hover { opacity: .8; color: var(--white); }

/* --- Contact section Text Us link --- */
.contact-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-600);
  margin-top: 8px;
}
.contact-text-link:hover { color: var(--blue-500); }

/* --- Form speed promise & micro trust --- */
.form-speed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--green-600);
  background: var(--green-100);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.form-micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: 12px;
}
