/* ============================================================
   HELP PLUMBING - Main Stylesheet
   Brand Colors: Black #0a0a0a, Red #cc1f1f, Yellow #f5c800
   ============================================================ */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --red: #cc1f1f;
  --red-dark: #a01515;
  --red-light: #e63333;
  --yellow: #f5c800;
  --yellow-dark: #d4a900;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray: #888888;
  --gray-dark: #444444;
  --text: #222222;
  --text-light: #555555;
  --border: #e0e0e0;
  --header-bg: #111111;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

*, *::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(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

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

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--red);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--yellow); font-weight: 600; }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--yellow); flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--header-bg);
  padding: 18px 0;
  border-bottom: 3px solid var(--yellow);
  position: relative;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark2);
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,200,0,0.3);
}
.logo-wrap img {
  height: 64px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.logo-text .company-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.logo-text .tagline {
  font-size: 0.72rem;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-phone .label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header-phone a {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.5px;
}
.header-phone a:hover { color: var(--white); }
.btn-emergency {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--red);
}
.btn-emergency:hover { background: var(--red-dark); color: var(--white) !important; transform: translateY(-1px); }
.btn-emergency svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--dark2);
  border-bottom: 2px solid var(--red);
}
nav .container { display: flex; align-items: center; position: relative; }
.nav-list {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 18px;
  transition: color var(--transition), background var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li.active > a {
  color: var(--yellow);
  background: rgba(245,200,0,0.08);
}
.nav-list > li > a svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  margin-left: 4px;
  vertical-align: middle;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  min-width: 260px;
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 1000;
}
.nav-list > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), padding-left var(--transition);
}
.dropdown li a:hover {
  color: var(--yellow);
  padding-left: 28px;
  background: rgba(245,200,0,0.05);
}
.dropdown li:last-child a { border-bottom: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mobile-nav a:hover { color: var(--yellow); background: rgba(245,200,0,0.05); }
.mobile-nav .sub-link { padding-left: 36px; font-size: 0.85rem; text-transform: none; letter-spacing: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0000 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::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.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204,31,31,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.3);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,31,31,0.4); }

/* ── Global: keep all icons inside buttons small & proportional ── */
.btn-primary svg, .btn-secondary svg, .btn-yellow svg,
.btn-white-outline svg, .btn-emergency svg, .btn-form svg,
a[href^="tel"] svg, a[class*="btn"] svg {
  width: 15px !important;
  height: 15px !important;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--yellow); flex-shrink: 0; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-top: 4px solid var(--red);
}
.hero-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.hero-form-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,31,31,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-form {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-form svg { width: 14px !important; height: 14px !important; fill: currentColor; flex-shrink: 0; }
.btn-form:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,31,31,0.4); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--gray); margin-top: 10px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
}

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency-banner {
  background: var(--red);
  padding: 16px 0;
  text-align: center;
}
.emergency-banner p {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.emergency-banner a {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.1rem;
}
.emergency-banner a:hover { color: var(--white); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark2);
  padding: 40px 0;
  border-bottom: 2px solid rgba(245,200,0,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(204,31,31,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--red); }
.service-icon svg { width: 30px; height: 30px; fill: var(--red); transition: fill var(--transition); }
.service-card:hover .service-icon svg { fill: var(--white); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.65; }
.service-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; color: var(--red-dark); }
.service-link::after { content: '→'; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content {}
.why-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--yellow); }
.why-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.why-item-text p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-visual-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.why-visual-card.accent { border-color: rgba(204,31,31,0.4); background: rgba(204,31,31,0.05); }
.why-visual-card .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--yellow);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.why-visual-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 48px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--yellow));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--gray-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: rgba(204,31,31,0.08);
  font-family: Georgia, serif;
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
}
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--black); }
.author-info .location { font-size: 0.78rem; color: var(--gray); }

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.areas-section { background: var(--black); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 40px; }
.area-item {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
  text-align: center;
}
.area-item a {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.area-item:hover { border-color: var(--yellow); background: rgba(245,200,0,0.05); }
.area-item a:hover { color: var(--yellow); }
.county-section { margin-bottom: 36px; }
.county-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,200,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.county-name::before { content: '▶'; font-size: 0.6rem; }
.county-cities { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.county-cities a {
  display: block;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  transition: all var(--transition);
}
.county-cities a:hover { color: var(--yellow); border-color: rgba(245,200,0,0.3); background: rgba(245,200,0,0.05); }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb-icon { width: 60px; height: 60px; fill: rgba(245,200,0,0.3); }
.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}
.blog-body { padding: 24px; }
.blog-date { font-size: 0.78rem; color: var(--gray); margin-bottom: 10px; }
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card h3 a { color: var(--black); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.65; }
.read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { gap: 10px; color: var(--red-dark); }
.read-more::after { content: '→'; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #900000 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-5.5 4.5-10 10-10v10H20z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,200,0,0.4); }
.btn-white-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-white-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo-wrap {
  margin-bottom: 20px;
  display: inline-flex;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-contact-item a { color: var(--yellow); }
.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;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   POPUP OVERLAY
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.popup-overlay.show .popup-box { transform: scale(1) translateY(0); }
.popup-header {
  background: linear-gradient(135deg, var(--black), var(--dark2));
  padding: 28px 32px;
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  gap: 16px;
}
.popup-header-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popup-header-icon svg { width: 26px; height: 26px; fill: var(--white); }
.popup-header-text {}
.popup-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.popup-header p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}
.popup-close:hover { background: var(--red); }
.popup-body { padding: 30px 32px; }
.popup-body .form-group { margin-bottom: 12px; }
.popup-body .btn-form { margin-top: 4px; }
.popup-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,31,31,0.06);
  border: 1px solid rgba(204,31,31,0.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 18px;
}
.popup-urgency svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; }
.popup-urgency span { font-size: 0.82rem; color: var(--red); font-weight: 600; }

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0000 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204,31,31,0.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 580px; }

.content-section { padding: 70px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.content-main h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  margin-top: 30px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  margin-top: 24px;
}
.content-main p { color: var(--text-light); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; }
.content-main ul { margin: 16px 0 20px 0; }
.content-main ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}
.content-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.sidebar {}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card.dark {
  background: var(--black);
  border-color: rgba(255,255,255,0.08);
}
.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  color: var(--black);
}
.sidebar-card.dark h4 { color: var(--white); }
.sidebar-cta-phone {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--yellow) !important;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.sidebar-links a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a::before { content: '›'; color: var(--red); font-size: 1.1rem; }
.sidebar-links a:hover { color: var(--red); padding-left: 6px; }
.sidebar-links a:last-child { border-bottom: none; }

/* City Page Specific */
.city-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.city-service-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-left: 3px solid var(--red);
}
.city-service-item svg { width: 22px; height: 22px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.city-service-item h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}
.city-service-item p { font-size: 0.82rem; color: var(--text-light); }

/* Blog Page */
.blog-post-content { max-width: 820px; }
.blog-post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--black);
  margin: 28px 0 14px;
}
.blog-post-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.blog-post-content ul { margin: 16px 0 20px 24px; list-style: disc; }
.blog-post-content ul li { color: var(--text-light); margin-bottom: 8px; line-height: 1.65; font-size: 0.95rem; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }
.bg-dark { background: var(--black); }
.bg-gray { background: var(--gray-light); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 520px; }
  .hero h1 { font-size: 2.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar .topbar-right { display: none; }
  .header-inner { flex-wrap: wrap; }
  .header-cta { flex-wrap: wrap; gap: 10px; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .county-cities { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-form-card { padding: 26px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .city-services-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.8rem; }
  .popup-header { padding: 20px 24px; }
  .popup-body { padding: 22px 24px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-yellow, .btn-white-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .county-cities { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .logo-wrap img { height: 48px; }
  .logo-text .company-name { font-size: 1.2rem; }
}
