/* ============================================
   DR. ROOTER PLUMBING - Main Stylesheet
   Color Theme: Red #D81F26 | Navy #1A2B6D | White #FFFFFF
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&family=Oswald:wght@500;600;700&display=swap');

:root {
  --red: #D81F26;
  --red-dark: #b01820;
  --red-light: #ff3a42;
  --navy: #1A2B6D;
  --navy-dark: #0f1a45;
  --navy-light: #2a3f99;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #f0f2f7;
  --gray: #7a8390;
  --gray-dark: #3d4452;
  --black: #111318;
  --shadow: 0 4px 24px rgba(26,43,109,0.12);
  --shadow-lg: 0 8px 48px rgba(26,43,109,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-left a, .top-bar-right a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--red-light); }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar .social-icons { display: flex; gap: 10px; }
.top-bar .social-icons a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar .social-icons a:hover { background: var(--red); }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}
.logo img { height: 70px; width: auto; }
.logo { flex-shrink: 0; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-phone span { font-size: 0.75rem; color: var(--gray); }
.header-phone a {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
}
.btn-emergency {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-emergency:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(216,31,38,0.4); }

/* ===== MAIN NAV ===== */
.main-nav {
  background: var(--navy);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--red-light); }
.nav-list > li > a .arrow { font-size: 0.65rem; transition: var(--transition); }
.nav-list > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
}
.nav-list > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--red); background: var(--off-white); padding-left: 24px; }

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: -200px;
  background: var(--white);
  width: 800px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nav-list > li:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.mega-col ul li a {
  display: block;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--gray-dark);
  transition: var(--transition);
}
.mega-col ul li a:hover { color: var(--red); padding-left: 6px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a8a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(216,31,38,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(216,31,38,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(216,31,38,0); }
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red-light); }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(216,31,38,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.trust-badge i { color: var(--red-light); font-size: 1rem; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-header {
  text-align: center;
  margin-bottom: 24px;
}
.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-header p { font-size: 0.85rem; color: var(--gray); }

.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde1ea;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,43,109,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(216,31,38,0.4); }

.form-note {
  text-align: center;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--red);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item i { font-size: 1.8rem; opacity: 0.9; }
.trust-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
}
.trust-item-text span { font-size: 0.78rem; opacity: 0.85; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: rgba(216,31,38,0.1);
  color: var(--red);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== SERVICES SECTION ===== */
.services-section { padding: 90px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(135deg, var(--red), var(--navy));
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--red);
}
.service-card:hover::before { height: 3px; }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(216,31,38,0.1), rgba(26,43,109,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), var(--navy));
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 90px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.why-content h2 span { color: var(--red); }
.why-content p { color: var(--gray); margin-bottom: 30px; line-height: 1.8; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.why-item-text p { font-size: 0.86rem; color: var(--gray); margin: 0; }

.why-visual {
  position: relative;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stat-card:nth-child(2) { background: var(--red); margin-top: 20px; }
.stat-card:nth-child(4) { background: var(--red); margin-top: -20px; }
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; opacity: 0.85; }

/* ===== VIDEO SECTION ===== */
.video-section { padding: 90px 0; background: var(--navy-dark); }
.video-section .section-title { color: var(--white); }
.video-section .section-desc { color: rgba(255,255,255,0.7); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}
.video-card-title {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ===== AREAS SECTION ===== */
.areas-section { padding: 90px 0; background: var(--off-white); }
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.county-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--red);
}
.county-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.county-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1rem;
}
.county-card ul li {
  margin-bottom: 5px;
}
.county-card ul li a {
  font-size: 0.83rem;
  color: var(--gray-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.county-card ul li a::before {
  content: '›';
  color: var(--red);
  font-weight: bold;
}
.county-card ul li a:hover { color: var(--red); padding-left: 4px; }
.county-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 90px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  border-left: 4px solid var(--red);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars i { color: #f59e0b; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}
.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.author-info span { font-size: 0.78rem; color: var(--gray); }

/* ===== EMERGENCY CTA SECTION ===== */
.emergency-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.emergency-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.emergency-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; position: relative; }
.emergency-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== BLOG SECTION ===== */
.blog-section { padding: 90px 0; background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216,31,38,0.7), rgba(26,43,109,0.7));
}
.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.blog-content { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.blog-meta i { color: var(--red); }
.blog-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.read-more:hover { gap: 10px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before { content: '›'; color: var(--red); font-weight: bold; }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
}
.footer-contact-item i { color: var(--red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red-light); }

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition);
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}
.popup-overlay.active .popup-modal { transform: scale(1); }
.popup-header {
  background: linear-gradient(135deg, var(--red), var(--navy));
  padding: 28px 32px 24px;
  color: var(--white);
  position: relative;
}
.popup-header::before {
  content: '🚨';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  opacity: 0.3;
}
.popup-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.popup-header p { font-size: 0.88rem; opacity: 0.85; }
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.35); }
.popup-body { padding: 28px 32px 32px; }
.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(216,31,38,0.1);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.success-message {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.success-message.show { display: block; }
.success-icon { font-size: 3.5rem; margin-bottom: 14px; }
.success-message h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.success-message p { color: var(--gray); font-size: 0.9rem; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-call { background: var(--red); }
.float-form { background: var(--navy); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.float-form:hover, .float-call:hover { animation: none; }

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(216,31,38,0.2), transparent);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; font-size: 1rem; }

/* ===== CONTENT PAGE ===== */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.main-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 14px;
}
.main-content h2:first-child { margin-top: 0; }
.main-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.main-content p { color: var(--gray-dark); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.main-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.main-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-dark);
}
.main-content ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-left: 4px solid var(--red);
}
.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.sidebar-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}
.sidebar-service-list li { margin-bottom: 6px; }
.sidebar-service-list li a {
  font-size: 0.86rem;
  color: var(--gray-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-service-list li a::before { content: '›'; color: var(--red); font-weight: bold; }
.sidebar-service-list li a:hover { color: var(--red); padding-left: 4px; }

/* ===== CITY PAGE SPECIFIC ===== */
.city-intro {
  background: var(--white);
  padding: 60px 0;
}
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.city-service-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.city-service-item:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }
.city-service-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.city-service-item p { font-size: 0.83rem; color: var(--gray); margin: 0; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 16px;
}
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== BLOG POST ===== */
.blog-post-content { padding: 70px 0; }
.blog-post-header { margin-bottom: 32px; }
.blog-post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.blog-post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.blog-post-meta i { color: var(--red); }
.blog-featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red); }

/* ===== RIBBON / ANNOUNCEMENT ===== */
.site-ribbon {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.site-ribbon a { color: var(--white); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .mega-dropdown { width: 600px; grid-template-columns: repeat(3,1fr); left: -100px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-right { display: none; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-form-card { order: -1; }
  .header-inner { flex-wrap: wrap; }
  .hamburger { display: flex; }
  .nav-list { display: none; flex-direction: column; width: 100%; background: var(--navy); }
  .nav-list.open { display: flex; }
  .nav-list > li > a { padding: 14px 20px; }
  .dropdown, .mega-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; width: 100%; border-top: none; display: none; }
  .nav-list > li:hover .dropdown,
  .nav-list > li:hover .mega-dropdown { display: none; }
  .nav-list > li.open .dropdown,
  .nav-list > li.open .mega-dropdown { display: block; }
  .mega-dropdown { grid-template-columns: 1fr; padding: 10px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; justify-content: center; }
  .sidebar { grid-template-columns: 1fr; }
  .trust-strip-inner { justify-content: flex-start; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
  .counties-grid { grid-template-columns: 1fr 1fr; }
  .popup-body, .popup-header { padding: 20px; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(2), .stat-card:nth-child(4) { margin: 0; }
  .floating-cta { bottom: 16px; right: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .counties-grid { grid-template-columns: 1fr; }
  .trust-badge { display: none; }
  .hero h1 { font-size: 2rem; }
}
