/* =========================================================
   TOP PLUMBING SOLUTIONS — MAIN STYLESHEET
   Brand: #2296F9 (accent/buttons) | #0E2B5C (primary/headings)
   Font: Archivo
   ========================================================= */

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

:root {
  --primary:       #0E2B5C;
  --primary-dark:  #091e3f;
  --accent:        #2296F9;
  --accent-hover:  #1a7de0;
  --white:         #ffffff;
  --off-white:     #f6f8fb;
  --light-gray:    #eef1f6;
  --text:          #1a2a3a;
  --text-muted:    #5a6a7a;
  --border:        #dce3ed;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.13);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
address { font-style: normal; }

/* --- Typography ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  color: var(--primary);
  line-height: 1.15;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout ---------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header p { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.75rem; }
.section--dark .section-header p { color: rgba(255,255,255,0.72); }

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(34,150,249,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

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

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

.btn-lg { font-size: 1.1rem; padding: 1rem 2rem; }

/* --- Header / Nav ---------------------------------------- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav — direct child ul only (prevents dropdown inheriting flex-row) */
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--accent); background: var(--off-white); }
.main-nav .chevron { font-size: 0.7rem; margin-left: 2px; }

/* Dropdown — single column */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 300;
  /* force single column */
  display: block;
}
.dropdown ul {
  display: block;
  list-style: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 0;
  background: none;
  white-space: nowrap;
}
.dropdown li a:hover { color: var(--accent); background: var(--off-white); }

.header-right { display: flex; align-items: center; gap: 1rem; }
.header-cta { font-size: 0.9rem; padding: 0.6rem 1.25rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--off-white); }
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Floating Emergency CTA */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1.2;
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  color: #fff;
}
.float-cta__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.float-cta__number {
  font-size: 1.05rem;
  font-weight: 700;
}
@media (max-width: 480px) {
  .float-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem;
  }
  .float-cta__number { font-size: 0.95rem; }
}

/* Breadcrumb */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--text-muted); opacity: 0.5; }
.breadcrumb-list a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list li[aria-current="page"] { color: var(--primary); font-weight: 600; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  position: relative;
  z-index: 199;
}
.mobile-nav.active { display: block !important; }
.mobile-nav > ul { padding: 0 1.5rem; }
.mobile-nav li a {
  display: block;
  padding: 0.65rem 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav .mobile-submenu { padding-left: 1rem; }
.mobile-nav .mobile-submenu li a {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text-muted);
  border-bottom: none;
  padding: 0.45rem 0;
}
.mobile-nav .mobile-cta { padding: 1rem 1.5rem 0; }

/* --- Hero ------------------------------------------------ */
.hero {
  background: var(--primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,43,92,0.40) 40%, rgba(14,43,92,0.40) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.hero-subheadline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.trust-bar { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.trust-bar .check {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: #fff;
}

.call-schedule-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.call-schedule-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.5rem; }
.call-schedule-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.25rem; }
.call-schedule-card .btn-primary { width: 100%; justify-content: center; font-size: 1.05rem; }
.card-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.card-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* --- Stats Bar ------------------------------------------- */
.stats-bar {
  background: var(--primary-dark);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat { padding: 0.5rem; }
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- CTA Strip (inline between sections) ----------------- */
.cta-strip {
  background: var(--accent);
  padding: 1.75rem 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}
.cta-strip-text span {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 0.2rem;
}
.cta-strip .btn-white { flex-shrink: 0; }

/* --- Entity / About Section ------------------------------ */
.entity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.entity-content h2 { margin-bottom: 1.25rem; }
.entity-content p { color: var(--text-muted); }

.trust-signals { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}
.trust-badge svg { color: var(--accent); }

/* Entity image placeholder */
.entity-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary) 0%, #1a4a8a 100%);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2rem;
}
.entity-image::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(34,150,249,0.12);
  border-radius: 50%;
}
.entity-image::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.entity-image-inner { position: relative; z-index: 1; }
.entity-image-icon {
  width: 80px;
  height: 80px;
  background: rgba(34,150,249,0.2);
  border: 2px solid rgba(34,150,249,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.entity-image p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.entity-image h4 { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 600; }

/* Services table — full width below entity grid */
.entity-services-full { border-top: 1px solid var(--border); padding-top: 2.5rem; }
.entity-services-full h3 { margin-bottom: 0.5rem; }
.entity-services-full > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.services-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.services-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}
.services-table th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 0.9rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.services-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: middle;
}
.services-table tr:last-child td { border-bottom: none; }
.services-table tr:hover td { background: var(--off-white); }
.services-table td:first-child { font-weight: 700; color: var(--primary); }
.services-table td:last-child a { color: var(--accent); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }

/* --- Emergency Section (dark blue — same as Why Choose Us) */
.emergency-section {
  background: var(--primary);
  padding: 70px 0;
  color: #fff;
}
.emergency-section h2 { color: #fff; }
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.emergency-body { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }
.emergency-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.emergency-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
}
.emergency-list li::before { content: '⚠'; color: #ffd700; flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }

.emergency-cta-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  min-width: 240px;
}
.emergency-cta-box h3 { color: #fff; margin-bottom: 0.25rem; }
.emergency-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.emergency-cta-box .btn-primary { width: 100%; justify-content: center; font-size: 1rem; }
.dispatch-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }

/* --- Problem Cards --------------------------------------- */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.problem-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--primary); }
.problem-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* --- Services Grid --------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--primary) 0%, #1a4a8a 60%, #2a5aaa 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.service-img-placeholder::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(34,150,249,0.15);
  border-radius: 50%;
}
.service-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.service-img-placeholder span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
.service-card a.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-card a.service-link:hover { gap: 0.6rem; }

/* --- Pricing Table --------------------------------------- */
.pricing-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.pricing-table th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.97rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--off-white); }
.pricing-table td:first-child { font-weight: 600; color: var(--text); }
.pricing-table td:last-child { font-weight: 800; color: var(--primary); }
.pricing-note {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: #6d4c00;
  line-height: 1.6;
}

/* --- Why Choose Us --------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.why-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* --- Process Steps --------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: var(--accent);
  opacity: 0.3;
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(34,150,249,0.4);
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.process-cta { text-align: center; }

/* --- Housing Context ------------------------------------- */
.housing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.housing-content h2 { margin-bottom: 1.25rem; }
.housing-content p { color: var(--text-muted); margin-bottom: 1rem; }
.housing-highlights { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.housing-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.housing-highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.housing-highlight-text { font-size: 0.92rem; color: var(--text); line-height: 1.55; }
.housing-highlight-text strong { color: var(--primary); display: block; font-size: 0.88rem; margin-bottom: 0.2rem; }

.housing-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.housing-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(34,150,249,0.15);
  border-radius: 50%;
}
.housing-stat-list { position: relative; }
.housing-stat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.housing-stat-list li:last-child { border-bottom: none; }
.housing-stat-list .hs-label { color: rgba(255,255,255,0.72); }
.housing-stat-list .hs-value { font-weight: 800; color: var(--accent); }

/* --- Recent Jobs ----------------------------------------- */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  padding: 1.5rem;
  color: #fff;
}
.job-location {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.job-card-header h3 { color: #fff; font-size: 1rem; }
.job-card-body { padding: 1.5rem; }
.job-detail { margin-bottom: 0.75rem; }
.job-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.job-detail p { font-size: 0.9rem; color: var(--text); margin: 0; }
.job-result {
  background: #e8f5e9;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 1rem;
}
.job-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 1rem;
}
.jobs-footer { text-align: center; }

/* --- FAQ ------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--off-white); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--light-gray);
}
.faq-answer.open { display: block; }

/* --- CTA Banner (full-width, end of page) ---------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.cta-note { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo:hover { color: var(--accent); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.footer-nap a { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-nap a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact ul { gap: 0.75rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact li a { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-contact li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1023px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .call-schedule-card { max-width: 480px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .entity-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .entity-image { min-height: 280px; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .housing-grid { grid-template-columns: 1fr; }
  .housing-visual { min-height: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding: 56px 0 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-number { font-size: 1.75rem; }

  .problems-grid { grid-template-columns: 1fr; }

  .emergency-grid { grid-template-columns: 1fr; }
  .emergency-list { grid-template-columns: 1fr; }
  .emergency-cta-box { min-width: auto; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .jobs-grid { grid-template-columns: 1fr; }

  .cta-strip .container { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Emergency Page — Compare Grid ───────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.compare-col {
  border-radius: var(--radius);
  padding: 1.75rem;
}
.compare-col--them {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.compare-col--us {
  background: rgba(34,150,249,0.15);
  border: 1px solid rgba(34,150,249,0.4);
}
.compare-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.compare-col--us h3 { color: #7cc8ff; }
.compare-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.compare-col li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  padding-left: 1.2rem;
  position: relative;
}
.compare-col--them li::before { content: '✕'; position: absolute; left: 0; color: rgba(255,80,80,0.7); font-size: 0.75rem; }
.compare-col--us li::before { content: '✓'; position: absolute; left: 0; color: #7cc8ff; font-size: 0.75rem; }

/* ── Emergency Page — Situations Grid ────────────────── */
.situations-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.situations-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.situations-list li {
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.96rem;
  color: var(--text);
  position: relative;
  font-weight: 500;
}
.situations-list li::before {
  content: '⚡';
  position: absolute;
  left: 0.75rem;
  font-size: 0.85rem;
}
.situations-note {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.situations-note p { font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.25rem; color: rgba(255,255,255,0.85); }
.situations-note strong { color: #fff; }

/* ── Responsive: Emergency Page ──────────────────────── */
@media (max-width: 767px) {
  .compare-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr; }
}

/* ── Drain Cleaning Page ──────────────────────────────── */
.hero-img-placeholder {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-img-placeholder .service-img-placeholder {
  height: 100%;
  border-radius: var(--radius-lg);
}
.toilet-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.two-col-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.two-col-lists .list-group h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.situations-callout {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.situations-callout p { margin: 0; font-size: 0.95rem; flex: 1; min-width: 200px; }
.situations-callout strong { color: #fff; }
.diy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 3px solid var(--accent);
}
.diy-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--primary); }
.diy-card p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }
.snake-hydro-note {
  margin-top: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--accent);
}
.local-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.local-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.local-point h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.local-img-col { position: sticky; top: 2rem; }
.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.why-point {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.why-point h3 { font-size: 1rem; margin-bottom: 0.6rem; color: #fff; }

@media (max-width: 1023px) {
  .local-two-col { grid-template-columns: 1fr; }
  .local-img-col { position: static; }
  .why-points { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .two-col-lists { grid-template-columns: 1fr; }
  .toilet-three-col { grid-template-columns: 1fr; }
  .diy-cards { grid-template-columns: 1fr; }
  .situations-callout { flex-direction: column; gap: 1rem; }
  .hero-img-placeholder { display: none; }
}

/* ── Leak Detection Page ─────────────────────────────── */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.sign-group h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--primary); }
.slab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.slab-col h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.slab-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-left: 0;
}
.slab-options li {
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.93rem;
  color: var(--text);
}
@media (max-width: 1023px) {
  .signs-grid { grid-template-columns: 1fr; }
  .slab-grid { grid-template-columns: 1fr; }
}

/* ── Sewer Line Page ──────────────────────────────────── */
.snake-explainer {
  max-width: 760px;
  margin: 0 auto;
}
.snake-explainer p { font-size: 1.05rem; margin-bottom: 1rem; }
.snake-callout {
  margin-top: 1.5rem;
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.snake-callout strong { display: block; font-size: 1.05rem; color: var(--primary); margin-bottom: 0.75rem; }
.snake-callout p { margin: 0; color: var(--text-muted); }

/* ── About Page ───────────────────────────────────────── */
.owner-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.owner-photo-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  justify-content: center;
}
.owner-name-block { margin-bottom: 1.25rem; }
.owner-name-block h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.owner-title { color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.owner-bio p { margin-bottom: 1rem; color: var(--text); }

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 3px solid var(--accent);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-service-card:hover { box-shadow: 0 6px 24px rgba(14,43,92,0.1); transform: translateY(-2px); }
.about-service-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 0.5rem; }
.about-service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.about-service-link { font-size: 0.85rem; font-weight: 700; color: var(--accent); }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
}
.credentials-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.credentials-list li {
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  font-size: 0.95rem;
}
.credentials-badge {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.badge-year { font-size: 2rem; font-weight: 800; color: var(--accent); }
.badge-name { font-size: 1.1rem; font-weight: 700; margin: 0.5rem 0 0.25rem; }
.badge-location { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.badge-license { margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; }
.badge-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; letter-spacing: 0.05em; }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.promise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.promise-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34,150,249,0.25);
  border: 1px solid rgba(34,150,249,0.5);
  color: #7cc8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.promise-item p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.82); }
.promise-statement {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(34,150,249,0.12);
  border: 1px solid rgba(34,150,249,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.promise-statement strong { font-size: 1.1rem; color: #fff; }

@media (max-width: 1023px) {
  .about-services-grid { grid-template-columns: 1fr 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .owner-grid { grid-template-columns: 1fr; }
  .owner-photo-placeholder { height: 200px; }
}
@media (max-width: 767px) {
  .about-services-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
}

/* ── Case Studies Page ────────────────────────────────── */
.cs-jump-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.cs-jump-nav .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cs-jump-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  flex-shrink: 0;
}
.cs-jump-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.cs-jump-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.cs-section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.cs-section-header h2 { margin: 0; }
.cs-category-tag {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.cs-tag--emergency { background: rgba(220,38,38,0.12); color: #b91c1c; border: 1px solid rgba(220,38,38,0.25); }
.cs-tag--drain     { background: rgba(34,150,249,0.12); color: #1565c0; border: 1px solid rgba(34,150,249,0.3); }
.cs-tag--sewer     { background: rgba(120,80,20,0.1);   color: #78501e; border: 1px solid rgba(120,80,20,0.2); }
.cs-tag--leak      { background: rgba(14,43,92,0.08);   color: var(--primary); border: 1px solid rgba(14,43,92,0.2); }
.cs-tag--wh        { background: rgba(234,88,12,0.1);   color: #c2410c; border: 1px solid rgba(234,88,12,0.2); }
.cs-tag--toilet    { background: rgba(22,163,74,0.1);   color: #15803d; border: 1px solid rgba(22,163,74,0.2); }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cs-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem 0;
}
.cs-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}
.cs-location { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.cs-timing   { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.cs-card h3  { font-size: 1.1rem; padding: 0.75rem 1.75rem 0; color: var(--primary); }
.cs-photo-placeholder {
  margin: 1rem 1.75rem;
  height: 160px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.cs-body { padding: 0 1.75rem 1.75rem; }
.cs-section { margin-bottom: 1rem; }
.cs-section strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.35rem; }
.cs-section p { margin: 0; font-size: 0.92rem; color: var(--text); line-height: 1.65; }
.cs-materials {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  margin: 1rem 0;
}
.cs-result {
  font-size: 0.92rem;
  font-weight: 600;
  color: #15803d;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.cs-service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.cs-service-link:hover { text-decoration: underline; }

@media (max-width: 1023px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-section-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
@media (max-width: 767px) {
  .cs-jump-nav .container { gap: 1rem; }
}

/* ── Contact Page ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-card--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  grid-row: span 2;
}
.contact-card--primary h3 { color: #fff; }
.contact-card--primary p  { color: rgba(255,255,255,0.82); }
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(34,150,249,0.15);
  border: 1px solid rgba(34,150,249,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.contact-card--primary .contact-card-icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.contact-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.75rem; }
.contact-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.contact-number:hover { color: var(--accent); }
.contact-address {
  font-style: normal;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.hours-row:last-child { border-bottom: none; }
.hours-value { font-weight: 600; color: var(--primary); }
.hours-open { color: #15803d; }

.contact-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-cred-item {}
.cred-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.cred-value { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); }

@media (max-width: 1023px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card--primary { grid-row: span 1; }
  .contact-creds { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 767px) {
  .contact-creds { grid-template-columns: 1fr; gap: 1.25rem; }
}
