/*
  Tampa Mold Remediation Experts - Premium Main Stylesheet
  Design System for Elite Local Restoration Authority
  Grounded in Color Psychology, Conversion Architecture, and Web Performance
*/

/* Core CSS Variables */
:root {
  /* ── Brand Colors ── */
  --primary:        #0F1E35;
  --primary-dark:   #071424;
  --accent:         #F5A623;
  --accent-dark:    #d17200;
  --emergency:      #ba1a1a;
  --verified:       #16a34a;

  /* ── Text Colors ── */
  --text-main:      #0F1E35;
  --text-muted:     #6B7280;
  --text-light:     #CBD5E1;
  --text-subtle:    #94A3B8;
  --white:          #ffffff;

  /* ── Background Colors ── */
  --bg-main:        #F8F9FB;
  --bg-card:        #ffffff;
  --bg-dark:        #0F1E35;
  --bg-darker:      #071424;

  /* ── Border ── */
  --border-color:   #E5E7EB;
  --border-light:   rgba(255,255,255,0.1);

  /* ── Border Radius ── */
  --radius-xs:      4px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-pill:    50px;

  /* ── Shadows ── */
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-orange:  0 8px 24px rgba(245,162,35,0.3);

  /* ── Typography ── */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;

  /* ── Spacing ── */
  --section-pad:    100px 0;
  --section-pad-sm: 60px 0;

  /* ── Transitions ── */
  --transition:     all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Spacing Scale (8px base) ── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 100px;

  /* ── Component Spacing ── */
  --card-padding:        24px;
  --card-padding-lg:     32px;
  --card-gap:            20px;
  --section-gap:         60px;
  --container-padding:   40px;
  --btn-padding-sm:      10px 20px;
  --btn-padding-md:      14px 32px;
  --btn-padding-lg:      18px 44px;
}

/* Reset and Global Settings */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

/* Base Typographic Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary);
}

/* Spacing and Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

.section-padding {
  padding: var(--space-12) 0;
  position: relative;
}

@media (max-width: 1024px) {
  .section-padding { padding: var(--space-11) 0; }
}

@media (max-width: 768px) {
  .section-padding { padding: var(--space-10) 0; }
}

@media (max-width: 480px) {
  .section-padding { padding: var(--space-9) 0; }
}

.text-center { text-align: center; }

/* Dynamic Mesh Background Gradients */
.mesh-bg-light {
  background: radial-gradient(at 0% 0%, rgba(17, 92, 185, 0.03) 0px, transparent 50%),
              radial-gradient(at 100% 100%, rgba(234, 128, 0, 0.02) 0px, transparent 50%),
              var(--bg-main);
}

.mesh-bg-dark {
  background: radial-gradient(at 0% 100%, rgba(17, 92, 185, 0.1) 0px, transparent 50%),
              #071424;
  color: var(--white);
}

.mesh-bg-dark h1, .mesh-bg-dark h2, .mesh-bg-dark h3 {
  color: var(--white);
}

.mesh-bg-dark p {
  color: var(--text-subtle);
}

/* Premium Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid rgba(234, 128, 0, 0.2);
}

.btn-primary:hover {
  background-color: #d17200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 128, 0, 0.25);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  border: 1px solid rgba(17, 92, 185, 0.2);
}

.btn-secondary:hover {
  background-color: #0c4e9e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 92, 185, 0.25);
}

.btn-emergency {
  background-color: var(--emergency);
  color: var(--white);
  border: 1px solid rgba(186, 26, 26, 0.3);
  box-shadow: 0 0 0 0 rgba(186, 26, 26, 0.6);
  animation: btn-emergency-pulse 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-emergency:hover {
  background-color: #9d1414;
  transform: scale(1.05);
  box-shadow: 0 0 25px 4px rgba(186, 26, 26, 0.7);
}

@keyframes btn-emergency-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(186,26,26,0.5), 0 4px 15px rgba(186,26,26,0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(186,26,26,0), 0 4px 25px rgba(186,26,26,0.5);
  }
}
  83% {
    transform: scale(1.03) rotate(-2deg);
    box-shadow: 0 0 15px 3px rgba(186, 26, 26, 0.7);
  }
  86% {
    transform: scale(1.03) rotate(2deg);
    box-shadow: 0 0 20px 4px rgba(186, 26, 26, 0.8);
  }
  89% {
    transform: scale(1.03) rotate(-2deg);
    box-shadow: 0 0 15px 3px rgba(186, 26, 26, 0.7);
  }
  92% {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 0 18px 4px rgba(186, 26, 26, 0.75);
  }
  95% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(186, 26, 26, 0.4);
  }
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Header & Sticky Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 30, 64, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.825rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .info-item {
  font-family: var(--font-body);
  font-weight: 500;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
  margin-left: 4rem; /* shift menu links closer to logo */
  padding-left: 0;
  flex-grow: 1; /* allow nav menu to expand and fill space */
}

/* Push CTA button to far right of navbar */
.nav-menu li:last-child {
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 0;
  font-size: 15.5px;
  position: relative;
  white-space: nowrap;
}

/* Header CTA button pulse and glow animation */
.btn-header-cta {
  box-shadow: 0 4px 12px rgba(234, 128, 0, 0.25);
  animation: cta-pulse-orange 2s infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-header-cta:hover {
  animation: none;
  box-shadow: 0 8px 24px rgba(234, 128, 0, 0.45);
  transform: translateY(-2px);
}

.btn-header-cta:hover .cta-phone-icon {
  transform: rotate(15deg) scale(1.1);
}

@keyframes cta-pulse-orange {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(234, 128, 0, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(234, 128, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(234, 128, 0, 0);
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--secondary);
  text-decoration: none;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-md);
  list-style: none;
  min-width: 250px;
  padding: 0.75rem 0;
  z-index: 10;
  border: 1px solid rgba(0, 30, 64, 0.06);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.5rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-main);
  color: var(--secondary);
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary);
  cursor: pointer;
}

/* Editorial Hero Layout (Asymmetrical) */
.hero {
  padding: 6.5rem 0;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 30, 64, 0.95) 0%, rgba(0, 30, 64, 0.8) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-text p {
  font-size: 1.125rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Glassmorphism Information Panels */
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  color: var(--white);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.glass-panel-icon {
  font-size: 2rem;
  background: rgba(234, 128, 0, 0.2);
  border: 1px solid rgba(234, 128, 0, 0.4);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.glass-panel-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.glass-panel-text p {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Premium Form Card */
.hero-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--accent);
  position: relative;
  z-index: 2;
}

.hero-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.hero-form p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(17, 92, 185, 0.12);
}

/* Dynamic Trust Badges Bar */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 30, 64, 0.05);
  padding: 2.25rem 0;
}

.trust-bar-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-badge-card {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.trust-badge-card:hover {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

.trust-badge-card img {
  height: 100%;
  width: auto;
  max-width: 150px;
}

/* Editorial Layouts & Broken Grids */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-content h4 {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.editorial-content h2 {
  margin-bottom: 1.5rem;
}

/* Offset Imagery & Floating Panels */
.editorial-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.editorial-img-main {
  width: 85%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.editorial-img-overlay {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  width: 50%;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
}

.editorial-img-overlay h4 {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.editorial-img-overlay p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Signature "Field Notes" Annotations */
.field-note-wrapper {
  position: relative;
  display: inline-block;
}

.field-note {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--accent);
  background-color: rgba(234, 128, 0, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border-left: 2px solid var(--accent);
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.field-note::before {
  content: '✦ ';
  margin-right: 0.15rem;
}

/* Services section with Premium Cards */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.premium-service-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.premium-service-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
  background-color: var(--text-light);
}

.premium-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.premium-service-card:hover .premium-service-card-img img {
  transform: scale(1.06);
}

.premium-service-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.premium-service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.premium-service-card p,
.premium-service-card p span,
.premium-service-card p a {
  color: var(--primary) !important;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.premium-service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.premium-service-card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.premium-service-card-link::after {
  content: '→';
  transition: var(--transition-smooth);
}

.premium-service-card:hover .premium-service-card-link::after {
  transform: translateX(4px);
}

/* Premium Process Timeline V3 (Horizontal Cards inspired by Reference Image) */
.process-section {
  position: relative;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-timeline-v3 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 3.5rem;
}

.process-card-v3 {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.process-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.process-card-header-v3 {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--text-light);
}

.process-card-header-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.process-card-v3:hover .process-card-header-v3 img {
  transform: scale(1.05);
}

.process-card-num-v3 {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1rem 0.5rem 1rem;
  border-bottom-right-radius: var(--border-radius-sm);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.process-card-icon-wrap-v3 {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 30, 64, 0.08);
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.process-card-v3:hover .process-card-icon-wrap-v3 {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateX(-50%) scale(1.08);
}

.process-card-icon-svg-v3 {
  width: 20px;
  height: 20px;
  display: block;
}

.process-card-content-v3 {
  padding: 2.25rem 1.5rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.process-card-label-v3 {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  display: block;
  letter-spacing: 0.05em;
}

.process-card-title-v3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.process-card-desc-v3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.process-card-badge-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(17, 92, 185, 0.05);
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(17, 92, 185, 0.1);
  align-self: center;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.process-card-v3:hover .process-card-badge-v3 {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.process-arrow-v3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  opacity: 0.35;
  padding: 0 0.5rem;
}

.process-arrow-svg-v3 {
  width: 24px;
  height: 24px;
  display: block;
}

/* Responsive adjustment for Process V3 */
@media (max-width: 1024px) {
  .process-timeline-v3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-arrow-v3 {
    display: none;
  }
  .process-card-content-v3 {
    padding: 2.25rem 2rem 2rem 2rem;
  }
}

/* Interactive Before/After Image Slider Component */
/* Before/After Results Grid (3 rows, 2 columns) */
.ba-grid-v6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.ba-card-v6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ba-slider-v6 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10; /* exact same ratio, clean equal height & width */
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  background-color: var(--text-light);
}

.ba-before-img-v6, .ba-after-img-v6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.ba-after-wrap-v6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-after-img-v6 {
  width: 100%;
  height: 100%;
}

.ba-range-v6 {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  z-index: 10;
  cursor: ew-resize;
}

/* Hide default range slider track and thumb */
.ba-range-v6::-webkit-slider-runnable-track {
  background: transparent;
}
.ba-range-v6::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 44px;
  height: 440px; /* tall invisible thumb for dragging */
  background: transparent;
  cursor: ew-resize;
}
.ba-range-v6::-moz-range-thumb {
  width: 44px;
  height: 440px;
  background: transparent;
  cursor: ew-resize;
  border: none;
}

.ba-line-v6 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  pointer-events: none;
  z-index: 5;
}

.ba-handle-v6 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent); /* copper accent color */
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  pointer-events: none;
  z-index: 6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  font-size: 1.1rem;
}

.ba-label-v6 {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 4;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.ba-label-before-v6 {
  left: 1rem;
  background-color: rgba(220, 38, 38, 0.85); /* emergency red with opacity */
}

.ba-label-after-v6 {
  right: 1rem;
  background-color: rgba(16, 185, 129, 0.85); /* verified green with opacity */
}

.ba-caption-v6 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .ba-grid-v6 {
    grid-template-columns: 1fr; /* single column on mobile/tablet */
    gap: 2rem;
  }
}

/* Insurance Assistance Block */
.insurance-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.insurance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--secondary);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

.insurance-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.insurance-icon-item {
  background-color: var(--bg-main);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
}

.insurance-icon-item h4 {
  font-size: 1rem;
  color: var(--primary);
}

/* Testimonials / Social Proof Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.testimonial-author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
  font-family: var(--font-body);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 1.1rem;
}

.testimonial-body {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0;
}

/* Immersive Map & Service Coverage */
.map-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.map-card-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--secondary);
}

.map-location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.map-location-item:last-child {
  border-bottom: none;
}

.map-location-name {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-location-badge {
  font-family: var(--font-body);
  font-size: 0.725rem;
  background-color: rgba(45, 110, 99, 0.1);
  color: var(--verified);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.map-frame-container {
  height: 480px;
  background-color: var(--text-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid #94a3b8;
  position: relative;
  overflow: hidden;
}

.map-frame-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 2;
  border-left: 4px solid var(--emergency);
}

.map-frame-overlay h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.map-frame-overlay p {
  font-size: 0.75rem;
  margin-bottom: 0;
  font-family: var(--font-body);
}

/* FAQ Accordion Experience using HTML details */
.faq-grid {
  max-width: 850px;
  margin: 3.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.faq-card summary {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  cursor: pointer;
  outline: none;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-card summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.faq-card[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-card-content {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Final CTA Section */
.cta-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(17, 92, 185, 0.25) 0%, transparent 70%);
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: #cdd6e0;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

/* Footer & Legal */
footer {
  background-color: #08111a;
  color: var(--text-subtle);
  padding: 5rem 0 2.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.85rem;
}

.footer-col ul li a {
  color: var(--text-subtle);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.nap-box {
  background-color: #0f1c29;
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--secondary);
}

.nap-box p {
  margin-bottom: 0.65rem;
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.875rem;
}

.nap-box p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-legal-links a {
  color: var(--text-subtle);
}

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



/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .ba-grid-v6 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .insurance-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
  }
  .mobile-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.15rem; }
  p  { font-size: 0.95rem; }

  .section-padding { padding: 4.5rem 0; }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background-color: var(--bg-main);
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
  
  .editorial-img-overlay {
    bottom: -1rem;
    left: 0;
    width: 60%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  

}

@media (max-width: 480px) {
  .hero-form {
    padding: 1.5rem;
  }
  .insurance-card {
    padding: 1.5rem;
  }
  .insurance-icons {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }
}

/* Premium Team Section layout styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.team-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.team-avatar {
  height: 250px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  border-bottom: 4px solid var(--accent);
}

.team-info {
  padding: 1.75rem 1.5rem;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--primary);
}

.team-info p {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--secondary);
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}

/* Google Reviews Carousel styling */
.reviews-carousel-container {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}

.reviews-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 2rem;
}

.review-card-google {
  flex: 0 0 calc(33.333% - 1.333rem);
  background-color: #f5f5f5; /* Light grey card background as specified */
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.review-card-google:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.review-top-google {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  margin-bottom: 1rem;
}

.reviewer-avatar-google {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.reviewer-meta-google {
  display: flex;
  flex-direction: column;
}

.reviewer-meta-google h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.reviewer-loc-google {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.review-date-google {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.google-g-logo {
  position: absolute;
  top: 0;
  right: 0;
}

.review-stars-row-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars-gold {
  color: #f6e05e; /* Google Review Gold */
  font-size: 1.15rem;
  letter-spacing: -1px;
}

.verified-badge-google {
  width: 16px;
  height: 16px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: bold;
}

.review-body-google {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-body-google.expanded {
  display: block;
  overflow: visible;
}

.read-more-google-link {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-block;
}

.read-more-google-link:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.reviews-carousel-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.reviews-nav-arrow {
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  transition: var(--transition-smooth);
  user-select: none;
}

.reviews-nav-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.reviews-nav-dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reviews-dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .review-card-google {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .review-card-google {
    flex: 0 0 100%;
  }
  .reviews-slider-track {
    gap: 0;
  }
}

/* Meet Our Team Section V5 (Arched navy card styling from reference image) */
.team-eyebrow-v5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eyebrow-icon-v5 {
  color: var(--accent);
}

.team-grid-v5 {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 3.5rem;
  width: 100%;
}

.team-card-v5 {
  width: 260px;
  height: 420px;
  background-color: var(--primary); /* solid dark navy background */
  border-radius: 130px 130px 12px 12px; /* dome arch top (half of 260px width) */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden; /* clips everything to the card dome shape */
  flex-shrink: 0;
  box-sizing: border-box;
}

.team-card-v5:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.team-photo-v5 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
  flex-shrink: 0;
}

.team-card-body-v5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem 1.25rem 1rem;
  flex-grow: 1;
  justify-content: space-between;
  box-sizing: border-box;
}

.team-name-v5 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white); /* bold white name centered */
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.team-role-v5 {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65); /* lighter grey uppercase role */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.team-social-v5 {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  width: 100%;
}

.team-social-dot-v5 {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--primary);
  border: none;
}

.team-social-dot-v5:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.team-social-icon-v5 {
  width: 13px;
  height: 13px;
  display: block;
}

@media (max-width: 1024px) {
  .team-grid-v5 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .team-grid-v5 {
    flex-direction: column;
    align-items: center;
  }
}

/* Hero section outlined pill badge */
.emergency-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--accent); /* outlined orange/copper border */
  border-radius: 30px;
  padding: 6px 14px;
  color: var(--accent); /* orange/copper text */
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  background-color: transparent;
}

.emergency-pill-badge .alert-icon {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

/* Trust Badges Row V6 */
.hero-trust-row-v6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  max-height: 70px;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust-item-v6 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.hero-trust-col-v7 {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.hero-trust-divider-v6 {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.hero-trust-label-v6 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.google-stars-v6 {
  display: flex;
  gap: 2px;
  color: #ffc107;
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 992px) {
  .hero-trust-row-v6 {
    flex-wrap: wrap;
    max-height: none;
    gap: 1rem;
  }
  .hero-trust-divider-v6 {
    display: none;
  }
}

/* Local Coverage Areas Section V9 (Matching Reference Design) */
.coverage-section-v9 {
  background-color: #0c1833;
  padding: 5.5rem 0;
  color: var(--white);
}

.coverage-header-v9 {
  margin-bottom: 2.5rem;
  max-width: 780px;
}

.coverage-eyebrow-v9 {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: block;
}

.coverage-heading-v9 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.coverage-subtext-v9 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ZIP Code Checker Form */
.zip-checker-form-v9 {
  max-width: 560px;
}

.zip-input-group-v9 {
  display: flex;
  gap: 12px;
}

.zip-input-v9 {
  flex: 1;
  background-color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.zip-input-v9:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 128, 0, 0.25);
}

.zip-btn-v9 {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(234, 128, 0, 0.3);
}

.zip-btn-v9:hover {
  background-color: #d17200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 128, 0, 0.45);
}

.zip-result-v9 {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
}

.zip-success-v9 {
  background-color: rgba(46, 125, 50, 0.15);
  border: 1px solid #2e7d32;
  color: #81c784;
}

.zip-expand-v9 {
  background-color: rgba(234, 128, 0, 0.15);
  border: 1px solid var(--accent);
  color: #ffb74d;
}

/* Area Grid: 3 Top, 2 Centered Bottom */
.coverage-grid-v9 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.coverage-btn-v9 {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-btn-v9.btn-row-2-v9 {
  grid-column: span 3;
}

.coverage-btn-v9:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Google Map Frame */
.coverage-map-wrap-v9 {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-map-wrap-v9 iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 768px) {
  .coverage-heading-v9 {
    font-size: 1.85rem;
  }
  .zip-input-group-v9 {
    flex-direction: column;
  }
  .zip-btn-v9 {
    width: 100%;
  }
  .coverage-grid-v9 {
    grid-template-columns: 1fr;
  }
  .coverage-btn-v9,
  .coverage-btn-v9.btn-row-2-v9 {
    grid-column: span 1;
  }
  .coverage-map-wrap-v9 iframe {
    height: 350px;
  }
}

/* Premium Rebuilt Footer V9 (Matching Reference Design) */
.footer-v9 {
  background-color: #0c1833;
  padding: 60px 0 0 0;
  color: var(--white);
  font-family: var(--font-body);
}

.footer-grid-v9 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 50px;
}

.footer-col-v9 {
  display: flex;
  flex-direction: column;
}

.brand-col-v9 .footer-tagline-v9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.footer-phone-v9 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 0.35rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-phone-v9:hover {
  color: #ffb74d;
}

.footer-info-text-v9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

/* Social Icons Row */
.footer-social-row-v9 {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-circle-v9 {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-circle-v9:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Headings & Links */
.footer-heading-v9 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links-v9 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-v9 li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-links-v9 li a:hover {
  color: var(--accent);
}

.footer-highlight-link-v9 {
  color: var(--accent) !important;
  font-weight: 700;
}

.footer-highlight-link-v9:hover {
  color: #ffb74d !important;
}

/* Divider & Copyright Bar */
.footer-divider-v9 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-copyright-v9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 30px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.copyright-text-v9 {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.copyright-links-v9 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.copyright-links-v9 a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright-links-v9 a:hover {
  color: var(--accent);
}

.copyright-sep-v9 {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

@media (max-width: 992px) {
  .footer-grid-v9 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid-v9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-copyright-v9 {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Team Section V11 (2x2 Horizontal Layout Matching Reference Image) */
.team-section-v11 {
  position: relative;
  background-color: #f8fafc;
  padding: 5.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

/* Decorative Background Elements */
.team-dot-grid-tr {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--accent) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.25;
  pointer-events: none;
}

.team-dot-grid-bl {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--accent) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.25;
  pointer-events: none;
}

.team-corner-navy {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
}

.team-corner-orange {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background-color: var(--accent);
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
}

/* Heading & Eyebrow */
.team-eyebrow-v11 {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.team-heading-v11 {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.team-heading-line-v11 {
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  margin: 0 auto 3rem auto;
  border-radius: 2px;
}

/* 2x2 Grid */
.team-grid-v11 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Horizontal Cards */
.team-card-v11 {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--accent);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 220px;
}

.team-card-v11:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-photo-wrap-v11 {
  flex: 0 0 40%;
  width: 40%;
  position: relative;
  overflow: hidden;
}

.team-photo-v11 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-content-v11 {
  flex: 1;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name-v11 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.25;
}

.team-role-v11 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.3;
}

.team-divider-v11 {
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 12px;
  border-radius: 2px;
}

.team-bio-v11 {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.45;
  margin-bottom: 14px;
}

.team-social-v11 {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link-v11 {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link-v11:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .team-grid-v11 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .team-card-v11 {
    flex-direction: column;
  }
  .team-photo-wrap-v11 {
    width: 100%;
    height: 240px;
  }
  .team-heading-v11 {
    font-size: 2rem;
  }
}

/* Warning Signs Section */
.warning-signs-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.warning-grid-v1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.warning-card-v1 {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.warning-card-v1:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.warning-icon-v1 {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(234, 128, 0, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-text-v1 {
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
}

/* Why Choose Us Section */
.why-choose-section {
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.why-grid-v1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .why-grid-v1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Workmanship Guarantee Bar */
.guarantee-bar-v1 {
  margin-top: 2.5rem;
  background-color: #FFF8EC;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(234, 128, 0, 0.08);
}

.guarantee-left-v1 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.guarantee-icon-v1 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(234, 128, 0, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-text-v1 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.guarantee-btn-v1 {
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.guarantee-btn-v1:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 128, 0, 0.35);
}

@media (max-width: 768px) {
  .guarantee-bar-v1 {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .guarantee-left-v1 {
    flex-direction: column;
  }
}

.why-card-v1 {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card-v1:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-icon-v1 {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title-v1 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.why-desc-v1 {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About Tampa Section */
.about-tampa-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.about-tampa-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-color);
}

.about-tampa-content p {
  margin-bottom: 1.5rem;
}

/* Blog Preview Section */
.blog-preview-section {
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.blog-grid-v1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card-v1 {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-v1:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-body-v1 {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 992px) {
  .warning-grid-v1,
  .why-grid-v1,
  .blog-grid-v1 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .warning-grid-v1,
  .why-grid-v1,
  .blog-grid-v1 {
    grid-template-columns: 1fr;
  }
}

/* Warning Signs Section V12 (White Background Theme) */
.warning-section-v12 {
  background-color: var(--white);
  padding: 5.5rem 0;
  color: var(--primary);
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.warning-grid-v12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column */
.warning-left-v12 {
  display: flex;
  flex-direction: column;
}

.warning-eyebrow-v12 {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-heading-v12 {
  font-family: var(--font-body);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.warning-subtext-v12 {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 95%;
}

.warning-list-v12 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.warning-row-v12 {
  background: #f7f8fa;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.warning-row-v12:hover {
  background: #edf2f7;
  border-color: rgba(234, 128, 0, 0.4);
  transform: translateX(4px);
}

.warning-num-badge-v12 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(234, 128, 0, 0.4);
}

.warning-row-text-v12 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}

.warning-cta-btn-v12 {
  align-self: flex-start;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(234, 128, 0, 0.35);
  transition: all 0.25s ease;
}

.warning-cta-btn-v12:hover {
  background-color: #d17200;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 128, 0, 0.5);
  color: var(--white);
}

/* Right Column */
.warning-right-v12 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  height: 100%;
  min-height: 600px;
}

.warning-img-v12 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.warning-overlay-v12 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12, 24, 51, 0.95) 90%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.warning-quote-v12 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.warning-attribution-v12 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .warning-grid-v12 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .warning-right-v12 {
    min-height: 400px;
  }
}

/* Animated Stats Bar Section V1 */
.stats-bar-section-v1 {
  position: relative;
  background-color: #0c1833;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid-v1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.stat-card-v1 {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card-v1:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.stat-icon-v1 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0c1833;
  border: 1.5px solid rgba(234, 128, 0, 0.5);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-val-v1 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label-v1 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

@media (max-width: 992px) {
  .stats-grid-v1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid-v1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About Us Section V13 (Matching Reference Screenshot Exactly) */
.about-us-section-v13 {
  background-color: var(--white);
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.about-heading-v13 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-grid-v13 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3.5rem;
  align-items: start;
}

/* Left Column: Stacked / Offset Images */
.about-images-wrap-v13 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-img-top-v13 {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.about-img-bottom-v13 {
  width: 85%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  margin-left: auto;
  display: block;
}

/* Right Column: Content */
.about-content-v13 {
  display: flex;
  flex-direction: column;
}

.about-para-v13 {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* Progress Bars */
.about-bars-wrap-v13 {
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-bar-item-v13 {
  display: flex;
  flex-direction: column;
}

.about-bar-header-v13 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.about-bar-label-v13 {
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
}

.about-bar-percent-v13 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}

.about-bar-track-v13 {
  width: 100%;
  height: 4px;
  background-color: rgba(27, 42, 74, 0.12);
  border-radius: 2px;
  position: relative;
}

.about-bar-fill-v13 {
  height: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  position: relative;
}

.about-bar-dot-v13 {
  position: absolute;
  right: -5px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 6px rgba(234, 128, 0, 0.6);
}

/* CTA Button */
.about-cta-btn-v13 {
  align-self: flex-start;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.2);
}

.about-cta-btn-v13:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 128, 0, 0.35);
}

@media (max-width: 992px) {
  .about-grid-v13 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-img-bottom-v13 {
    width: 100%;
    margin-left: 0;
  }
}

/* Why DIY Backfires Section V1 */
.why-diy-section-v1 {
  background-color: var(--bg-main);
  padding: 100px 0;
  box-shadow: inset 0 6px 12px -6px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.diy-grid-v1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Left Column: The DIY Problem */
.diy-card-left-v1 {
  background-color: var(--primary);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 30, 53, 0.25);
  display: flex;
  flex-direction: column;
}

.diy-card-left-v1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.05;
  pointer-events: none;
}

.diy-card-right-v1 {
  background-color: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.diy-card-icon-header {
  margin-bottom: 12px;
}

.diy-card-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.diy-card-title-white {
  color: var(--white);
}

.diy-card-title-navy {
  color: var(--primary);
}

.diy-divider {
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* DIY Problem Items */
.diy-items-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.diy-problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.diy-problem-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.diy-x-icon {
  color: #FF6B6B;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.diy-item-title-white {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.diy-item-desc-white {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.diy-pill-tag {
  align-self: flex-start;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
}

/* Professional Steps Items */
.diy-pro-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.diy-pro-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.diy-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.35);
}

.diy-step-title-navy {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.diy-step-desc-gray {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Full Width CTA Bar */
.diy-cta-bar-v1 {
  background-color: var(--primary);
  border-radius: 16px;
  padding: 32px 40px;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(15, 30, 53, 0.2);
}

.diy-cta-text-v1 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.diy-cta-btn-v1 {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(234, 128, 0, 0.35);
}

.diy-cta-btn-v1:hover {
  background-color: #d17200;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 128, 0, 0.5);
  color: var(--white);
}

@media (max-width: 992px) {
  .diy-grid-v1 {
    grid-template-columns: 1fr;
  }
  .diy-cta-bar-v1 {
    flex-direction: column;
    text-align: center;
  }
}

/* Emergency Response Section V3 (Clean, Light, Professional Design) */
.emergency-section-v3 {
  background-color: var(--bg-main);
  padding: 80px 0 0 0;
  box-shadow: inset 0 6px 12px -6px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.em-grid-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 60px;
}

/* Left Column */
.em-left-col-v3 {
  display: flex;
  flex-direction: column;
}

.em-h2-v3 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 0;
}

.em-line-accent-v3 {
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  margin: 16px 0 24px 0;
  border-radius: 2px;
}

.em-para-v3 {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.em-para-v3:last-of-type {
  margin-bottom: 24px;
}

/* 2x2 Grid of 4 Trigger Items */
.em-trigger-grid-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.em-trigger-card-v3 {
  background-color: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.em-trigger-header-v3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.em-trigger-icon-v3 {
  color: var(--accent);
  flex-shrink: 0;
}

.em-trigger-title-v3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.em-trigger-desc-v3 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Right Column Card */
.em-right-col-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.em-right-card-v3 {
  background-color: var(--primary);
  border-radius: 20px;
  padding: 40px 40px 0 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.em-card-eyebrow-v3 {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.em-card-line-v3 {
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* Timeline V3 */
.em-timeline-v3 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.em-timeline-v3::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 20px;
  width: 2px;
  border-left: 2px dotted var(--accent);
  z-index: 1;
}

.em-timeline-step-v3 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.em-time-circle-v3 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.35);
  white-space: nowrap;
}

.em-step-content-v3 {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.em-step-title-v3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.em-step-desc-v3 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.em-card-bottom-strip-v3 {
  background-color: var(--accent);
  border-radius: 0;
  margin: 28px -40px 0 -40px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
}

.em-strip-icon-v3 {
  color: var(--primary);
  flex-shrink: 0;
}

/* 3 Trust Items Below Bottom Strip */
.em-trust-items-v3 {
  margin: 0 -40px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.03);
  margin-top: auto;
}

.em-trust-item-v3 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.em-trust-check-v3 {
  color: var(--accent);
  font-weight: 800;
}

/* Bottom Full-Width CTA Bar V3 */
.em-bottom-cta-v3 {
  background-color: var(--primary);
  width: 100%;
  border-radius: 0;
  margin: 60px 0 0 0;
  padding: 40px 48px;
}

.em-bottom-cta-inner-v3 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.em-bottom-cta-left-v3 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.em-bottom-cta-h3-v3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.em-bottom-cta-p-v3 {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.em-bottom-cta-right-v3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.em-bottom-cta-btn-v3 {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  animation: cta-pulse-glow-v3 2s infinite;
}

.em-bottom-cta-btn-v3:hover {
  background-color: #d18b13;
  transform: translateY(-2px);
  color: var(--white);
}

.em-bottom-cta-sub-v3 {
  font-size: 12px;
  color: var(--white);
  opacity: 0.85;
  text-align: center;
}

@media (max-width: 992px) {
  .em-grid-v3 {
    grid-template-columns: 1fr;
  }
  .em-h2-v3 {
    font-size: 36px;
  }
  .em-bottom-cta-v3 {
    padding: 32px 24px;
  }
  .em-bottom-cta-inner-v3 {
    flex-direction: column;
    text-align: center;
  }
  .em-bottom-cta-left-v3 {
    align-items: center;
  }
  .em-bottom-cta-btn-v3 {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .em-h2-v3 {
    font-size: 28px;
  }
  .em-trigger-grid-v3 {
    grid-template-columns: 1fr;
  }
  .em-stats-row-v3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .em-stat-box-v3:not(:last-child)::after {
    display: none;
  }
  .em-cta-btn-v3 {
    font-size: 14px;
    padding: 14px 24px;
  }
}

/* Rebuilt Process Section Enhanced V5 */
.process-section-v4 {
  background: var(--bg-main);
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.process-bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 280px;
  font-weight: 900;
  color: rgba(15, 30, 53, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -10px;
}

.process-header-v4 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-eyebrow-pill {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 18px;
}

.process-h2-v4 {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 12px;
}

.process-subtext-v4 {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.process-underline-v4 {
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 20px auto 60px auto;
  border-radius: 2px;
}

.process-grid-container-v4 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(15,30,53,0.15);
  border-color: var(--accent);
}

.process-card:nth-child(even) {
  margin-top: 48px;
}

/* Card TOP - Image area */
.process-card-image,
.process-card-top {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--primary);
}

.process-card-image img,
.process-card-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--primary);
  display: block;
}

.process-step-badge-top {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 0 0 12px 0;
  font-family: var(--font-body);
  letter-spacing: 1px;
  z-index: 2;
}

.process-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,30,53,0.85) 0%, transparent 100%);
  height: 100px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  z-index: 1;
}

.process-img-title {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  line-height: 1.3;
}

/* Card BOTTOM - Content area */
.process-card-bottom {
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.process-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.process-card-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-card-desc {
  font-size: 14px;
  color: var(--text-muted) !important;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.process-card-badge-v5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-main);
  border: 1px solid #E5E7EB;
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  margin-top: auto;
  align-self: flex-start;
}

/* Connectors */
.process-card-connector {
  position: absolute;
  top: 130px;
  right: -14px;
  z-index: 10;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(245,162,35,0.4);
}

/* Bottom CTA Strip */
.process-cta-strip {
  background: var(--primary);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.process-cta-left-h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.process-cta-left-p {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.6;
  margin: 0;
}

.process-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-cta-btn-primary {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.process-cta-btn-primary:hover {
  background-color: #d18b13;
  transform: translateY(-2px);
  color: var(--white);
}

.process-cta-btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.process-cta-btn-secondary:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-card:nth-child(even) {
    margin-top: 0;
  }
  .process-card-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-h2-v4 {
    font-size: 32px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-cta-strip {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }
  .process-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .process-cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* Before & After Gallery CTA Button */
.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.gallery-cta-btn:hover::before {
  transform: scaleX(1);
}

.gallery-cta-btn:hover {
  color: var(--primary);
}

.gallery-cta-btn span {
  position: relative;
  z-index: 1;
}

.gallery-cta-btn .btn-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.gallery-cta-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Our Guarantee Section */
.guarantee-section {
  background: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.guarantee-bg-shield {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 400px;
  color: rgba(245,162,35,0.04);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.guarantee-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.guarantee-left-col {
  width: 45%;
  flex-shrink: 0;
}

.guarantee-right-col {
  width: 55%;
  flex-grow: 1;
}

/* Left Column Visual Shield Badge */
.guarantee-shield-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
}

.guarantee-outer-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(245,162,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: none;
  position: absolute;
}


  to { transform: rotate(360deg); }
}

.guarantee-inner-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1B2A4A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(15,30,53,0.25), 0 0 0 8px rgba(245,162,35,0.1);
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.guarantee-inner-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.guarantee-inner-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.guarantee-inner-main {
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
}

.guarantee-inner-sub {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.guarantee-pill {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  z-index: 3;
}

.guarantee-pill-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.guarantee-pill-right {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.guarantee-pill-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.guarantee-pill-left {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Right Column Content */
.guarantee-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.guarantee-h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 12px;
}

.guarantee-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 16px 0 24px 0;
  border-radius: 2px;
}

.guarantee-desc {
  font-size: 16px;
  color: var(--text-muted) !important;
  line-height: 1.8;
  margin-bottom: 32px;
}

.guarantee-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.guarantee-promise-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-main);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.guarantee-check-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}

.guarantee-promise-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.guarantee-promise-desc {
  font-size: 13px;
  color: var(--text-muted) !important;
  line-height: 1.6;
  margin: 0;
}

.guarantee-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.guarantee-btn-primary {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.guarantee-btn-primary:hover {
  background-color: #d18b13;
  transform: translateY(-2px);
  color: var(--white);
}

.guarantee-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.guarantee-btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.guarantee-trust-subtext {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .guarantee-grid {
    flex-direction: column;
    gap: 48px;
  }
  .guarantee-left-col,
  .guarantee-right-col {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .guarantee-h2 {
    font-size: 32px;
  }
  .guarantee-shield-wrap {
    width: 300px;
    height: 300px;
    margin-bottom: 24px;
  }
  .guarantee-outer-ring {
    width: 260px;
    height: 260px;
  }
  .guarantee-inner-circle {
    width: 210px;
    height: 210px;
    padding: 16px;
  }
  .guarantee-inner-main {
    font-size: 24px;
  }
  .guarantee-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .guarantee-cta-row a {
    justify-content: center;
  }
}

/* Mid-Page Free Inspection CTA Section */
.free-inspection-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--primary);
  width: 100%;
}

.free-inspection-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,162,35,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.free-inspection-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
}

.inspection-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.inspection-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 10px 24px;
  background: rgba(245,162,35,0.1);
  border: 1px solid rgba(245,162,35,0.2);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.inspection-trust-strip .stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.inspection-trust-strip .trust-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.free-inspection-cta h2 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 0;
}

.inspection-underline {
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 20px auto 32px auto;
  border-radius: 2px;
}

.inspection-p1 {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

.inspection-p2 {
  font-size: 16px;
  color: var(--text-subtle);
  line-height: 1.7;
  max-width: 640px;
  margin: 16px auto 0 auto;
}

.reassurance-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.reassurance-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.inspection-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-inspection-primary {
  background: var(--accent);
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(245,162,35,0.35);
  animation: pulse-glow-cta 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-inspection-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,162,35,0.5);
  color: var(--primary);
}


  50% { box-shadow: 0 8px 48px rgba(245,162,35,0.6); }
}

.btn-inspection-secondary {
  background: transparent;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-inspection-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.inspection-micro-trust {
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 640px) {
  .free-inspection-cta h2 {
    font-size: 36px;
  }
  .inspection-cta-row {
    flex-direction: column;
    align-items: center;
  }
  .btn-inspection-primary,
  .btn-inspection-secondary {
    width: 100%;
    text-align: center;
  }
  .reassurance-pills {
    flex-direction: column;
    align-items: center;
  }
}

/* Insurance Claim Support Section V2 */
.insurance-section-v2 {
  background: var(--bg-main);
  padding: 100px 0;
  position: relative;
  width: 100%;
}

.insurance-grid-v2 {
  display: flex;
  align-items: center;
  gap: 80px;
}

.insurance-left-v2 {
  width: 50%;
  flex-shrink: 0;
}

.insurance-right-v2 {
  width: 50%;
  flex-grow: 1;
}

.insurance-eyebrow-v2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.insurance-h2-v2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 12px;
}

.insurance-underline-v2 {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 16px 0 24px 0;
  border-radius: 2px;
}

.insurance-desc-v2 {
  font-size: 16px;
  color: var(--text-muted) !important;
  line-height: 1.8;
  margin-bottom: 32px;
}

.insurance-steps {
  margin-top: 32px;
  position: relative;
}

.insurance-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(245,162,35,0.1));
}

.insurance-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-left: 8px;
}

.insurance-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(245,162,35,0.3);
}

.insurance-step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.insurance-step-content p {
  font-size: 14px;
  color: var(--text-muted) !important;
  line-height: 1.7;
  margin: 0;
}

.insurance-cta-btn-v2 {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
  margin-top: 8px;
}

.insurance-cta-btn-v2:hover {
  background-color: #d18b13;
  transform: translateY(-2px);
  color: var(--white);
}

/* Right Column Cards Grid */
.insurance-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.insurance-card-v2 {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insurance-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.insurance-card-icon-v2 {
  width: 48px;
  height: 48px;
  background: rgba(245,162,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.insurance-card-v2 h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.insurance-card-v2 p {
  font-size: 13px;
  color: var(--text-muted) !important;
  line-height: 1.65;
  margin: 0;
}

.insurance-reassurance {
  margin-top: 16px;
  background: var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.insurance-reassurance-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--accent);
}

.insurance-reassurance-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .insurance-grid-v2 {
    flex-direction: column;
    gap: 48px;
  }
  .insurance-left-v2,
  .insurance-right-v2 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .insurance-h2-v2 {
    font-size: 32px;
  }
  .insurance-cards-grid {
    grid-template-columns: 1fr;
  }
  .insurance-cta-btn-v2 {
    width: 100%;
    justify-content: center;
  }
}

/* Team Section Subtext */
.team-subtext {
  font-size: 16px;
  color: var(--text-muted) !important;
  line-height: 1.8;
  text-align: center;
  max-width: 680px;
  margin: 16px auto 48px auto;
}

/* Team Section CTA Button */
.team-cta-wrap {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 8px;
}

.team-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.team-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.team-cta-btn:hover::before {
  transform: scaleX(1);
}

.team-cta-btn:hover {
  color: var(--primary);
  border-color: var(--accent);
}

.team-cta-text,
.team-cta-arrow {
  position: relative;
  z-index: 1;
}

.team-cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.team-cta-btn:hover .team-cta-arrow {
  transform: translateX(5px);
}

.team-cta-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Coverage Section Rebuild */
.coverage-section {
  background: var(--primary);
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.coverage-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,162,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.coverage-header {
  text-align: center;
  padding: 0 20px 60px 20px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.coverage-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.coverage-heading {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}

.coverage-underline {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 20px auto;
  border-radius: 2px;
}

.coverage-subtext {
  font-size: 16px;
  color: var(--text-subtle) !important;
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto;
}

/* 5 Area Cards Grid */
.coverage-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.coverage-area-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.coverage-area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.coverage-area-card:hover::before {
  transform: scaleX(1);
}

.coverage-area-card:hover {
  background: rgba(245,162,35,0.05);
}

.coverage-area-card:last-child {
  border-right: none;
}

.coverage-area-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.coverage-area-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.coverage-area-desc {
  font-size: 13px;
  color: var(--text-subtle) !important;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.coverage-area-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.coverage-area-link:hover {
  gap: 10px;
}

/* Bottom ZIP & Map Section */
.coverage-bottom {
  background: var(--bg-main);
  padding: 80px 0 0 0;
  width: 100%;
}

.coverage-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.coverage-zip-h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.coverage-zip-subtext {
  font-size: 15px;
  color: var(--text-muted) !important;
  margin: 0;
}

.zip-form-wrap {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 32px auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.zip-input {
  flex: 1;
  padding: 18px 28px;
  font-size: 16px;
  border: 2px solid #E5E7EB;
  border-right: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  color: var(--primary);
}

.zip-input:focus {
  border-color: var(--accent);
}

.zip-btn {
  background: var(--accent);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  padding: 18px 32px;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.zip-btn:hover {
  background: #e09400;
}

.zip-result {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.zip-success {
  color: #16a34a;
}

.zip-expand {
  color: var(--text-muted);
}

.coverage-btns-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.coverage-area-btn {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.coverage-area-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.coverage-also-serve {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted) !important;
  max-width: 800px;
  margin: 0 auto;
}

.coverage-map {
  width: 100%;
  height: 480px;
  display: block;
  margin-top: 48px;
  filter: grayscale(20%);
  border: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .coverage-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coverage-area-card {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 640px) {
  .coverage-heading {
    font-size: 32px;
  }
  .coverage-areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coverage-area-card:nth-child(5) {
    grid-column: span 2;
  }
  .coverage-bottom-inner {
    padding: 0 20px;
  }
  .zip-form-wrap {
    flex-direction: column;
    border-radius: 16px;
    box-shadow: none;
  }
  .zip-input {
    border-radius: 50px;
    border-right: 2px solid #E5E7EB;
  }
  .zip-btn {
    border-radius: 50px;
    margin-top: 8px;
  }
}

/* Premium Area View Button */
.area-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(245,162,35,0.4);
  border-radius: 50px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

/* Fill animation on hover */
.area-view-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.area-view-btn:hover::before {
  transform: translateX(0);
}

.area-view-btn:hover {
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(245,162,35,0.3);
}

/* Text and icon above fill */
.area-btn-text,
.area-btn-icon {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Arrow slide animation */
.area-btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.area-view-btn:hover .area-btn-icon {
  transform: translateX(5px);
}

/* Active state */
.area-view-btn:active {
  transform: scale(0.97);
}

/* About Tampa Section */
.about-tampa-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--primary);
  width: 100%;
}

.about-tampa-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../Images/Home page/About Tampa/about-tampa.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.about-tampa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,53,0.82) 0%, rgba(15,30,53,0.65) 50%, rgba(15,30,53,0.78) 100%);
  z-index: 1;
}

.about-tampa-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-tampa-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent) !important;
  display: block;
  margin-bottom: 16px;
}

.about-tampa-h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--white) !important;
  line-height: 1.1;
  margin-bottom: 0;
}

.about-tampa-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

.about-tampa-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}

.tampa-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tampa-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tampa-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tampa-block h3::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.tampa-block p {
  font-size: 15px;
  color: var(--text-light) !important;
  line-height: 1.8;
  margin: 0;
}

.tampa-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.tampa-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.tampa-stat-card:hover {
  background: rgba(245,162,35,0.08);
  border-color: rgba(245,162,35,0.3);
  transform: translateY(-3px);
}

.tampa-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent) !important;
  line-height: 1;
  margin-bottom: 8px;
}

.tampa-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white) !important;
  margin-bottom: 6px;
}

.tampa-stat-desc {
  font-size: 12px;
  color: #94A3B8 !important;
  line-height: 1.6;
}

.tampa-closing {
  background: rgba(245,162,35,0.08);
  border: 1px solid rgba(245,162,35,0.2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tampa-closing-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.tampa-closing-text {
  font-size: 14px;
  color: var(--text-light) !important;
  line-height: 1.7;
  margin: 0;
}

.tampa-closing-text strong {
  color: var(--white) !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-tampa-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tampa-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .about-tampa-grid {
    flex-direction: column;
    gap: 48px;
  }
  .about-tampa-left,
  .about-tampa-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-tampa-heading {
    font-size: 32px;
  }
  .tampa-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-tampa-section::before {
    background-attachment: scroll;
  }
}

/* FAQ Section V2 */
.faq-section-v2 {
  background: var(--bg-main);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-header-v2 {
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-label-v2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.faq-h2-v2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.faq-subtext-v2 {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-underline-v2 {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 20px auto 60px auto;
  border-radius: 2px;
}

.faq-main-grid-v2 {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-left-col-v2 {
  width: 58%;
  flex-shrink: 0;
}

.faq-right-col-v2 {
  width: 42%;
  flex-grow: 1;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(245,162,35,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid #F3F4F6;
  padding-top: 16px;
  margin-top: 0;
}

/* Sidebar Cards */
.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-card-navy {
  background: var(--primary);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 20px;
}

.faq-card-navy-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-card-navy-desc {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-btn-orange {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.faq-btn-orange:hover {
  background: #e0951c;
  transform: translateY(-2px);
}

.faq-btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.faq-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.faq-card-white {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
}

.faq-card-white-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.faq-card-white-underline {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.faq-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-fact-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-fact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-fact-check {
  color: var(--accent);
  font-weight: 700;
}

.faq-emergency-strip {
  background: var(--accent);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-emergency-icon {
  flex-shrink: 0;
}

.faq-emergency-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px 0;
}

.faq-emergency-desc {
  font-size: 13px;
  color: var(--white);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.faq-emergency-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-main-grid-v2 {
    flex-direction: column;
    gap: 40px;
  }
  .faq-left-col-v2,
  .faq-right-col-v2 {
    width: 100%;
  }
  .faq-sidebar {
    position: static;
  }
}











/* ============================================
   DESIGN SYSTEM — UTILITY CLASSES
   Phase 1 Audit Fix — Consistency Layer
   ============================================ */

/* Text color utilities */
.text-white   { color: #ffffff !important; }
.text-navy    { color: var(--primary) !important; }
.text-orange  { color: var(--accent) !important; }
.text-gray    { color: var(--text-muted) !important; }
.text-light   { color: var(--text-light) !important; }
.text-subtle  { color: var(--text-subtle) !important; }

/* Eyebrow label standard */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

/* Section header standard */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* Accent underline */
.accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0 auto;
  display: block;
}

.accent-line-left {
  margin-left: 0;
  margin-right: auto;
}

/* Standard card — light */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Standard card — dark */
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.card-dark:hover {
  background: rgba(245,162,35,0.06);
  border-color: rgba(245,162,35,0.25);
}

/* Standard icon container */
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245,162,35,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* Standard divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin: 24px 0;
}

.divider-light {
  background: rgba(255,255,255,0.08);
}

/* Responsive Typography Overhaul */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.15rem; }
  h4 { font-size: 1rem; }
  p  { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  p  { font-size: 0.9rem; }
}

/* ── Font Size Utilities ── */
.text-xs   { font-size: 0.75rem;  line-height: 1.5;  }
.text-sm   { font-size: 0.875rem; line-height: 1.6;  }
.text-base { font-size: 1rem;     line-height: 1.75; }
.text-md   { font-size: 1.125rem; line-height: 1.6;  }
.text-lg   { font-size: 1.375rem; line-height: 1.4;  }
.text-xl   { font-size: 1.75rem;  line-height: 1.25; }
.text-2xl  { font-size: 2.25rem;  line-height: 1.15; }
.text-3xl  { font-size: 3rem;     line-height: 1.1;  }

/* ── Font Weight Utilities ── */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── Eyebrow Label Standard ── */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 0.75rem;
}

/* Standardized Card Padding */
.premium-service-card .premium-service-card-content { padding: var(--card-padding); }
.faq-card { padding: var(--card-padding); }
.review-card-google { padding: var(--card-padding); }
.insurance-card { padding: var(--card-padding); }

/* ── Spacing Utilities ── */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }

.pt-section { padding-top: var(--space-12); }
.pb-section { padding-bottom: var(--space-12); }
.py-section { padding: var(--space-12) 0; }

.gap-sm  { gap: var(--space-3); }
.gap-md  { gap: var(--space-4); }
.gap-lg  { gap: var(--card-gap); }
.gap-xl  { gap: var(--space-10); }

/* Standardized Button Padding */
.btn {
  padding: var(--btn-padding-md);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-sm { padding: var(--btn-padding-sm); font-size: 0.875rem; }
.btn-lg { padding: var(--btn-padding-lg); font-size: 1.0625rem; }


/* ============================================
   MASTER ANIMATION SYSTEM
   Tampa Mold Remediation Experts
   ============================================ */

/* ── 1. GLOBAL KEYFRAMES ── */

/* Fade up — main scroll entrance */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in — simple opacity */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in — for badges, icons */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Primary CTA pulse — orange glow only, no movement */
@keyframes btn-primary-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(245,162,35,0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(245,162,35,0.6), 0 0 0 6px rgba(245,162,35,0.1);
  }
}

/* Subtle float — for trust badges, icons */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* Pulsing dot — for active/live indicators */
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

/* ── 2. SCROLL-TRIGGERED ANIMATION BASE ── */

/* Base state — elements start hidden */
.anim-ready {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When JS adds .anim-visible class */
.anim-ready.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variants */
.anim-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-left.anim-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-right.anim-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-scale.anim-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays — for card grids */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

/* ── 3. HERO ENTRANCE ANIMATIONS ── */

.hero-text h1 {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-text p {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-text .btn,
.hero-text > div {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-trust-row-v6 {
  animation: fadeIn 0.8s ease 0.6s both;
}

.hero-form {
  animation: slideInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.emergency-pill-badge {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
}

/* ── 4. CTA BUTTON ANIMATIONS ── */

/* Primary orange CTA — gentle pulse only */
.btn-primary {
  animation: btn-primary-pulse 3s ease-in-out infinite;
}

/* On hover — all buttons stop animation */
.btn:hover {
  animation-play-state: paused;
}

/* ── 5. NAVIGATION MICROINTERACTIONS ── */

.nav-link {
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ── 6. CARD HOVER MICROINTERACTIONS ── */

.premium-service-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.premium-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.faq-item {
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.coverage-area-card {
  transition: background 0.3s ease,
              transform 0.2s ease;
}

.team-card-v11 {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}

.team-card-v11:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ── 7. PULSING LIVE INDICATOR ── */

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #F5A623;
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* ── 8. GUARANTEE BADGE — static but premium ── */

.guarantee-outer-ring {
  animation: none;
  box-shadow: 0 0 0 1px rgba(245,162,35,0.15),
              0 0 40px rgba(245,162,35,0.08);
  transition: box-shadow 0.4s ease;
}

.guarantee-outer-ring:hover {
  box-shadow: 0 0 0 1px rgba(245,162,35,0.4),
              0 0 60px rgba(245,162,35,0.15);
}

/* ── 9. PROCESS CARD STAGGER ── */

.process-grid .process-card:nth-child(1) { transition-delay: 0s; }
.process-grid .process-card:nth-child(2) { transition-delay: 0.1s; }
.process-grid .process-card:nth-child(3) { transition-delay: 0.2s; }
.process-grid .process-card:nth-child(4) { transition-delay: 0.3s; }

/* ── 10. TRUST BADGES FLOAT ── */

.hero-trust-item-v6 img {
  transition: transform 0.3s ease;
}

.hero-trust-item-v6:hover img {
  transform: translateY(-2px);
}

/* ── 11. PERFORMANCE — Reduce motion ── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim-ready,
  .anim-left,
  .anim-right,
  .anim-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}
