@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand-harmonized palette for Huntsville Mold & Water Pros */
  --primary: #0A4B3E;        /* Deep Forest Emerald — Trust & Structural Safety */
  --primary-hover: #06352B;
  
  --secondary: #2ECC71;      /* Bright Emerald Green — Clean Air & Restoration */
  --secondary-dark: #27AE60;
  
  --accent: #F59E0B;         /* High-Contrast Warm Gold — Action CTAs & Phone Buttons */
  --accent-hover: #D97706;
  
  --dark: #0A192F;           /* Deep Midnight Slate — Premium Header Nav & Footer */
  --light: #F8FAF9;          /* Crisp Clean Off-White */
  --white: #FFFFFF;
  
  --text-primary: #1E293B;
  --text-muted: #475569;
  --border-color: #E2E8F0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  
  --transition: all 0.2s ease-in-out;
  --max-width: 1100px;
}

/* Global Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Image Styles */
.img-responsive {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.team-photo {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  object-fit: cover;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Top Bar */
.top-bar {
  background-color: #072C24;
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-cta a {
  background-color: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-cta a:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* Header & Nav */
header {
  background-color: #0A192F;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
}

.logo span {
  color: #E2E8F0;
  font-weight: 500;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 12px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  font-weight: 600;
  color: #E2E8F0;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

nav ul li a:hover, 
nav ul li a.active {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu Styling */
li.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 1001;
  animation: fadeInNav 0.2s ease-out;
}

@keyframes fadeInNav {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

li.dropdown:hover .dropdown-menu,
li.dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 10px 18px;
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(39, 174, 96, 0.2);
  color: #FFFFFF;
  padding-left: 22px;
}

/* Header Call Button CTA */
.header-cta .phone-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e8b4c 100%);
  color: #FFFFFF !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s ease;
}

.header-cta .phone-btn:hover {
  background: linear-gradient(135deg, #2ecc71 0%, #27AE60 100%);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
  transform: translateY(-2px);
}

.header-cta .phone-btn svg {
  flex-shrink: 0;
}

/* Mobile Toggle & Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  nav ul {
    gap: 6px;
  }
  nav ul li a {
    padding: 6px 8px;
    font-size: 0.88rem;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: #0A192F;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid var(--secondary);
    padding: 20px;
    z-index: 999;
  }

  nav.mobile-active {
    display: block !important;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
  }

  li.dropdown .dropdown-menu {
    position: static;
    display: flex;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--secondary);
    border-radius: 0;
    margin-left: 15px;
    padding-left: 10px;
    background-color: transparent;
  }

  .header-cta {
    display: none;
  }
}

/* Health Warning Banner */
.health-warning-banner {
  background-color: #FFF3E0;
  border-left: 5px solid var(--accent);
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
}

.health-warning-banner .warning-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.health-warning-banner p {
  color: #D35400;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* Hero Section */
.hero {
  background-color: var(--white);
  background-image: linear-gradient(rgba(248, 250, 249, 0.95), rgba(248, 250, 249, 0.95)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 20c-5.52 0-10-4.48-10-10S4.48 0 10 0s10 4.48 10 10-4.48 10-10 10zm0 1c5.52 0 10 4.48 10 10s-4.48 10-10 10-10-4.48-10-10 4.48-10 10-10zm0 80c-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10-4.48 10-10 10z' fill='%230A4B3E' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-image-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white);
}

.hero-image-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 75, 62, 0.7); /* Primary color overlay */
  z-index: 1;
}

.hero-image-section .container {
  position: relative;
  z-index: 2;
}

.hero-image-section h1 {
  color: var(--white);
}

.hero-image-section p {
  color: #E8F5E9;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.badge-charm {
  background-color: var(--accent);
  color: var(--white);
}

/* Subpage Hero (Light Backgrounds) */
.hero {
  background-color: var(--light, #F8FAF9);
  padding: 50px 0 40px 0;
  border-bottom: 1px solid var(--border-color, #E5E5E5);
  color: #333333;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 15px;
  color: var(--primary, #0A4B3E);
}

.hero h1 span {
  color: var(--secondary, #27AE60);
  border-bottom: 3px double var(--primary, #0A4B3E);
}

.hero p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Homepage & Dark Hero Overlay — High Contrast AAA Compliance */
.hero[style*="background-image"],
.hero.hero-dark,
.hero-image-section {
  color: #FFFFFF !important;
}

.hero[style*="background-image"] h1,
.hero.hero-dark h1,
.hero-image-section h1 {
  font-size: 2.8rem !important;
  line-height: 1.2 !important;
  margin-bottom: 15px !important;
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8) !important;
}

.hero[style*="background-image"] h1 span,
.hero.hero-dark h1 span,
.hero-image-section h1 span {
  color: #2ECC71 !important;
  border-bottom: 3px double #2ECC71 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 0 6px !important;
  border-radius: 4px !important;
}

.hero[style*="background-image"] p,
.hero.hero-dark p,
.hero-image-section p {
  font-size: 1.1rem !important;
  color: #FFFFFF !important;
  margin-bottom: 25px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.9) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
  transition: all 0.25s ease-in-out !important;
}

.btn-primary {
  background-color: var(--accent) !important;
  color: var(--white) !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
}

.btn-primary:hover {
  background-color: var(--accent-hover) !important;
}

.btn-secondary {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.btn-secondary:hover {
  background-color: var(--primary-hover) !important;
}

.btn-warning,
.warning-text-col a,
.warning-text-col a.btn-warning,
.health-warning a.btn {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.45) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  border: none !important;
  transition: all 0.25s ease !important;
}

.btn-warning:hover,
.warning-text-col a:hover,
.warning-text-col a.btn-warning:hover,
.health-warning a.btn:hover {
  background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.6) !important;
  transform: translateY(-2px) !important;
}

/* Pulse Animation on Call Buttons */
.pulse {
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

/* Local Badging Area in Hero */
.local-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Badge Row */
.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.badge-row img {
  height: 60px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition);
}

.badge-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Stat Counter */
.stats-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 0;
}

.stat-counter {
  text-align: center;
  padding: 20px;
}

.stat-counter .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}

.stat-counter .label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .hero-form-container,
.hero.hero-dark .hero-form-container,
.hero-image-section .hero-form-container,
.hero-form-container {
  background-color: #FFFFFF !important;
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--primary);
  color: #1E293B !important;
}

.hero .hero-form-container h3,
.hero.hero-dark .hero-form-container h3,
.hero-image-section .hero-form-container h3,
.hero-form-container h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--primary, #0A4B3E) !important;
  text-shadow: none !important;
}

.hero .hero-form-container p,
.hero.hero-dark .hero-form-container p,
.hero-image-section .hero-form-container p,
.hero-form-container p {
  color: #475569 !important;
  font-size: 0.9rem !important;
  margin-bottom: 18px;
  text-shadow: none !important;
  font-weight: 500 !important;
}

.inline-form {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.inline-form h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #FDFDFD;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
  background-color: var(--white);
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: #E74C3C;
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.invalid-feedback {
  display: none;
  color: #E74C3C;
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Sections */
section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-bg-white {
  background-color: var(--white);
}

.section-bg-light {
  background-color: var(--light);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.section-header h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Service Cards */
.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-card .read-more {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card .read-more:hover {
  color: var(--secondary);
}

/* Before / After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.before-after-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.before-after-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(26, 35, 50, 0.8);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

@media (max-width: 576px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}

/* Features */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon-wrapper {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%) !important;
  color: #FFFFFF !important;
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18) !important;
  flex-shrink: 0 !important;
}

.feature-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Sidebar for detail pages */
.service-sidebar {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  border: 1px solid var(--border-color);
  position: sticky;
  top: 95px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 1.15rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
}

.sidebar-links {
  list-style: none;
  margin-bottom: 25px;
}

.sidebar-links li {
  margin-bottom: 8px;
}

.sidebar-links li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  background-color: var(--light);
  font-size: 0.95rem;
}

.sidebar-links li a:hover, .sidebar-links li a.active {
  background-color: var(--primary);
  color: var(--white);
}

.sidebar-cta-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: center;
}

.sidebar-cta-box {
  background-color: #0A2F25;
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-cta-box h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 800;
}

.sidebar-cta-box p {
  color: #E2E8F0;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.sidebar-cta-box .phone,
.sidebar-cta-box p.phone,
.sidebar-cta-box a.phone,
.sidebar-cta-box .phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #F59E0B !important;
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* Process Section */
.process-step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%) !important;
  color: #FFFFFF !important;
  font-family: var(--font-heading) !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
  margin: 0 auto 18px auto !important;
  border: 3px solid #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Review Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stars {
  color: #F39C12; /* Star color */
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-highlight {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 40px 0;
  box-shadow: var(--shadow-md);
}

.testimonial-highlight .stars {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-highlight .review-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 25px;
  border-top: none;
}

.testimonial-highlight .author-info h4 {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Local Cities Area */
.local-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.city-badge {
  background-color: rgba(10, 75, 62, 0.05);
  border: 1px solid rgba(10, 75, 62, 0.1);
  padding: 6px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.city-badge:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* FAQs */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.faq-item.open {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.15);
}

.faq-question {
  padding: 20px 25px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  user-select: none;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(10, 75, 62, 0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 15px 25px 22px 25px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Local Pride Box */
.local-pride-box {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-md);
  margin-top: 50px;
  border-left: 6px solid var(--secondary);
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.local-pride-box h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.local-pride-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--primary);
  background-image: linear-gradient(rgba(10, 75, 62, 0.82), rgba(10, 75, 62, 0.82)), url('../images/team-van.jpg?v=20');
  background-size: cover;
  background-position: center center;
  color: var(--white);
  text-align: center;
  padding: 85px 0;
  border-bottom: 5px solid var(--accent);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-banner p {
  color: #E8F5E9;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.cta-banner .phone-number,
.cta-banner a.phone-number,
.cta-banner p.phone-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #F59E0B !important;
  display: block;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: #A0AABF;
  padding: 70px 0 25px 0;
}

footer h3, footer h4 {
  color: var(--white);
}

.footer-top {
  margin-bottom: 50px;
}

.footer-about p {
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--secondary);
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-links-col ul li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--secondary);
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Service Areas */
.service-areas {
  background-color: var(--light);
  padding: 60px 0;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.city-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: white;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.city-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Dual-line CTA Buttons */
.btn-sub {
  font-size: 0.75rem;
  opacity: 0.9;
  display: block;
  font-weight: 400;
  margin-top: 4px;
}

/* Testimonial Avatars */
.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Clean FAQ Accordion Fix */
.faq-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: #ffffff;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A4B3E;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #f8faf9;
}
.faq-icon, .faq-question .icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E67E22;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-answer {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}
.faq-answer-content, .faq-answer p {
  padding: 16px 22px 20px 22px;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}
