/* ===================================================================
   THE PLUMBERS OF FLORIDA — MAIN STYLESHEET
   style.css
   =================================================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #5e5e5e;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: #ab1a1c;
}

a:hover {
  color: #002745;
}

ul {
  list-style: none;
}

/* ===== COLORS & TOKENS ===== */
:root {
  --red: #ab1a1c;
  --red-dark: #8f1215;
  --navy: #002745;
  --navy-light: #1a3d60;
  --white: #fff;
  --gray-text: #5e5e5e;
  --gray-light: #f5f5f5;
  --gray-border: #e0e0e0;
  --pad-section: 80px;
  --pad-section-sm: 60px;
  --pad-container: 40px;
  --card-pad: 32px 28px;
  --gap-grid: 24px;
  --btn-pad-v: 15px;
  --btn-pad-h: 36px;
  --btn-radius: 50px;
  --btn-font: 17px;
  --btn-weight: 700;
  --btn-tracking: 0.5px;
  --font-body: 16px;
  --font-sm: 15px;
  --font-xs: 14px;
  --lh-body: 1.85;
  --section-tag-size: 13px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

h1 {
  font-size: clamp(40px, 7vw, 83px);
}

h2 {
  font-size: clamp(32px, 5vw, 60px);
}

h3 {
  font-size: clamp(22px, 3vw, 36px);
}

h4 {
  font-size: clamp(18px, 2.5vw, 42px);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
}

.section-pad {
  padding: var(--pad-section) 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 26, 28, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== GLOBAL SECTION PADDING ===== */
.hiw-section,
.certs-section,
.commercial-section,
.area-map-section,
.wcu-section,
.testimonials-section,
.faq-section,
.areas-section,
.whoweare-section {
  padding: var(--pad-section) 0;
}

.stats-section {
  padding: var(--pad-section-sm) 0;
}

.van-section {
  padding: var(--pad-section-sm) 0;
}

.community-section {
  padding: var(--pad-section) 0;
}

.svc-img-section {
  padding: var(--pad-section) 0;
}

/* ===== SECTION TITLE ===== */
.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrap h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  color: var(--navy);
}

.section-title-wrap p {
  max-width: 680px;
  margin: 14px auto 0;
  font-size: var(--font-body);
  line-height: var(--lh-body);
  color: var(--gray-text);
}

.section-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: var(--section-tag-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ===== GLOBAL CTA BUTTONS ===== */
.svc-img-cta,
.wcu-call-btn,
.community-cta,
.who-cta,
.van-btn-call,
.van-btn-schedule,
.comm-cta,
.area-map-cta {
  padding: var(--btn-pad-v) var(--btn-pad-h) !important;
  font-size: var(--btn-font) !important;
  border-radius: var(--btn-radius) !important;
  font-weight: var(--btn-weight) !important;
  letter-spacing: var(--btn-tracking) !important;
  font-family: 'Roboto', sans-serif !important;
  text-transform: uppercase !important;
  transition: all 0.3s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* ===== CARD PADDING ===== */
.service-card {
  padding: var(--card-pad);
}

.testi-card {
  padding: 36px 32px;
}

.comm-card {
  padding: 32px 24px;
}

.cert-badge {
  padding: 26px 20px;
}

/* ===== BODY TEXT ===== */
.hiw-step p,
.wcu-subtitle,
.whoweare-text p,
.community-section p,
.van-content p,
.emergency-text p,
.area-map-text p,
.faq-answer p,
.contact-info>p {
  font-size: var(--font-body);
  line-height: var(--lh-body);
}

.testi-text {
  font-size: var(--font-body);
  line-height: var(--lh-body);
}

.cert-sub {
  font-size: 14px;
  line-height: 1.3;
}

.footer-brand p,
.footer-links a,
.footer-contact li {
  font-size: var(--font-sm);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--red);
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
}

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

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.85;
  color: #fff;
}

.top-bar-right .top-cta {
  background: var(--navy);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
}

.top-bar-right .top-cta:hover {
  background: #011d35;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

/* Spacer so page content doesn't hide behind fixed header */
#header-placeholder {
  display: flow-root;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}

.logo-wrap {
  flex-shrink: 0;
  padding: 8px 0;
}

.logo-wrap img {
  width: 130px;
  border-radius: 8px;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.main-nav>li {
  position: relative;
}

.main-nav>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 22px 11px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav>li>a:hover,
.main-nav>li>a.active {
  color: var(--red);
}

.main-nav>li>a i {
  font-size: 11px;
  transition: transform 0.25s;
}

.main-nav>li:hover>a i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
  list-style: none;
  padding: 8px 0;
}

.main-nav>li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  color: var(--red);
  background: var(--gray-light);
  border-left-color: var(--red);
}

/* Header Call Button */
.hdr-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.3s;
  white-space: nowrap;
  border: 2px solid var(--red);
  flex-shrink: 0;
}

.hdr-call-btn i {
  font-size: 15px;
}

.hdr-call-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 26, 28, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  font-size: 22px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url('../assets/images/trusted-plumbers-tx.webp') no-repeat center center / cover;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  color: #fff;
  font-size: clamp(36px, 5.5vw, 75px);
  line-height: 1.03;
  margin-bottom: 0;
}

.hero-text h1 span {
  color: var(--red);
}

.hero-text .hero-sub {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
  line-height: 1.3;
}

.hero-btns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-hero-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 50px;
  background: var(--red);
  color: #fff !important;
  border: 3px solid var(--red);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s;
  min-width: 280px;
  justify-content: center;
}

.btn-hero-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(171, 26, 28, 0.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 50px;
  background: transparent;
  color: #fff !important;
  border: 3px solid #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s;
  min-width: 280px;
  justify-content: center;
}

.btn-hero-outline:hover {
  background: #fff;
  color: var(--navy) !important;
  transform: translateY(-3px);
}

.hero-offer-card {
  background: var(--red);
  border-bottom-left-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  max-width: 320px;
}

.hero-offer-card .offer-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #fff;
}

.hero-offer-card .offer-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i {
  color: #fff;
  font-size: 20px;
}

.trust-item h4 {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 39, 69, 0.12);
  border-color: var(--red);
  background: #fff;
}

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

.service-icon {
  width: 65px;
  height: 65px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-icon i {
  color: #fff;
  font-size: 26px;
}

.service-card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.3;
}

/* ===== IMAGE SERVICES ===== */
.svc-img-section {
  background: #f5efe6;
  padding: 70px 0;
}

.svc-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.svc-img-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.svc-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.svc-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.svc-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
  pointer-events: none;
}

.svc-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-img-label {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.svc-img-card:hover .svc-img-label {
  transform: translateY(-8px);
}

.svc-img-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
  max-height: 0;
  overflow: hidden;
}

.svc-img-card:hover .svc-img-desc {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
}


.svc-img-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.svc-img-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: 3px solid var(--red);
}

.svc-img-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171, 26, 28, 0.45);
}

/* ===== WHY CHOOSE US ===== */
.wcu-section {
  background: #fff;
  overflow: hidden;
  padding: 80px 0;
}

.wcu-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
}

.wcu-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.wcu-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
}

.wcu-panel {
  background: #fff;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #f0f0f0;
}

.wcu-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.wcu-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.wcu-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 28px;
  line-height: 1.3;
}

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.wcu-feat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wcu-feat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gray-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcu-feat-icon i {
  font-size: 20px;
  color: var(--navy);
}

.wcu-feat-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wcu-feat-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  white-space: nowrap;
}

.wcu-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: #fff !important;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  align-self: flex-start;
}

.wcu-call-btn i {
  font-size: 16px;
}

.wcu-call-btn:hover {
  background: #011d35;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 39, 69, 0.3);
}

/* ===== STATS ===== */
.stats-section {
  background: var(--navy);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--red);
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 8px;
}




/* ===== RECENT BLOG POSTS (Homepage) ===== */
.blog-preview-section {
  background: #fff;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-preview-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 39, 69, 0.12);
}

.blog-preview-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.blog-preview-body {
  padding: 24px 28px 28px;
}

.blog-preview-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.blog-preview-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-preview-body p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-preview-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}

.blog-preview-meta i {
  color: var(--red);
  margin-right: 4px;
}

.blog-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.2s;
}

.blog-preview-link:hover {
  gap: 10px;
}

.blog-view-all {
  text-align: center;
  margin-top: 40px;
}


/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--gray-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 5px 5px 10px rgba(51, 51, 51, 0.12);
  position: relative;
  transition: transform 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
}

.testi-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-avatar i {
  color: #fff;
  font-size: 24px;
}

.testi-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-transform: uppercase;
}

.testi-location {
  font-size: 13px;
  color: #999;
}

/* ===== VAN SECTION ===== */
.van-section {
  background: #f5ece0;
  padding: 50px 0;
}

.van-dark-box {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),
    url('../assets/images/trusted-plumbers-tx.webp') no-repeat center center / cover;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 50px;
}

.van-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
}

.van-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  flex-shrink: 0;
}

.van-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--red);
  line-height: 1.05;
  margin-bottom: 10px;
}

.van-card-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.van-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.5;
}

.van-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}

.van-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 640px;
}

.van-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.van-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.van-btn-call:hover {
  background: #fff;
  color: var(--navy) !important;
  border-color: #fff;
}

.van-btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  border: 2px solid var(--red);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.van-btn-schedule:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 26, 28, 0.4);
}

/* ===== SERVICE AREAS ===== */
.areas-section {
  background: #fff;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.area-chip {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.25s;
}

.area-chip:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 18px;
  line-height: 1;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
  color: var(--red);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(171, 26, 28, 0.4);
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ===== PHONE FLOAT ===== */
.phone-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 998;
}

.phone-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(171, 26, 28, 0.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(171, 26, 28, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(171, 26, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(171, 26, 28, 0);
  }
}

/* ===== EMERGENCY SECTION 
.emergency-section {
  background: linear-gradient(135deg, #001d33 0%, var(--navy) 60%, #1a3d60 100%);
  position: relative;
  overflow: hidden;
}

.emergency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
  pointer-events: none;
} ===== */

.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.emergency-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.emrg-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 500;
}

.emrg-feat i {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: #fff;
}

.emergency-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.emergency-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.emrg-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--gray-light);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.open {
  box-shadow: 0 8px 24px rgba(0, 39, 69, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--red);
  font-size: 14px;
  transition: transform 0.35s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.cdi-icon {
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: #fff;
}

.cdi-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.cdi-value {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

a.cdi-value {
  color: #fff;
  text-decoration: none;
}

a.cdi-value:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* RIGHT SIDE IMAGE */
.contact-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.contact-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-image-wrap,
  .contact-img {
    min-height: 280px;
  }
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  background: #fff;
  padding: 70px 0 60px;
  text-align: center;
}

.community-section h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.community-section p {
  max-width: 860px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.85;
}

.community-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  padding: 8px 30px;
  border-radius: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 3px solid var(--red);
}

.community-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171, 26, 28, 0.4);
}

/* ===== WHO WE ARE ===== */
.whoweare-section {
  background: #fff;
  padding: 70px 0 80px;
}

.whoweare-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.whoweare-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whoweare-img-wrap img {
  max-width: 100%;
  width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 39, 69, 0.12));
}

.whoweare-text .who-tag {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.whoweare-text h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.whoweare-text p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.85;
  margin-bottom: 28px;
}

.who-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
}

.who-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.who-feat-item i {
  color: var(--red);
  font-size: 15px;
  flex-shrink: 0;
}

.who-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  padding: 8px 30px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 3px solid var(--red);
}

.who-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171, 26, 28, 0.4);
}

/* ===== RATINGS SLIDER ===== */
.ratings-slider-section {
  background: #f7f9fc;
  padding: 40px 0 40px;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
  overflow: hidden;
}


.ratings-track-outer {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ratings-track {
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rating-logo-card {
  flex: 0 0 calc(100% / 5);
  padding: 0 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
}

.rating-logo-card .logo-img-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-logo-card .logo-img-wrap img {
  max-height: 100px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.ratings-track-outer:hover .rating-logo-card .logo-img-wrap img {
  filter: grayscale(0%);
}

.rating-logo-card .stars {
  display: flex;
  gap: 3px;
}

.rating-logo-card .stars i {
  color: #f5a623;
  font-size: 17px;
}

.rating-logo-card .rating-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
  background: var(--gray-light);
  padding: 80px 0;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}

.hiw-step {
  text-align: center;
  padding: 30px 24px;
}

.hiw-num {
  width: 76px;
  height: 76px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: #fff;
}

.hiw-step-icon {
  font-size: 30px;
  color: var(--red);
  margin-bottom: 14px;
}

.hiw-step h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.75;
}

.hiw-arrow {
  color: var(--red);
  font-size: 28px;
  opacity: .45;
  flex-shrink: 0;
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.certs-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--gray-light);
  border: 2px solid var(--gray-border);
  border-radius: 14px;
  padding: 26px 18px;
  min-width: 145px;
  max-width: 175px;
  text-align: center;
  transition: all .3s;
  flex: 1;
}

.cert-badge:hover {
  border-color: var(--navy);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 39, 69, .1);
}

.cert-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

.cert-icon.red-bg {
  background: var(--red);
}

.cert-icon i {
  color: #fff;
  font-size: 20px;
}

.cert-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
}

.cert-sub {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ===== COMMERCIAL ===== */
.commercial-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.commercial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
  pointer-events: none;
}

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

.comm-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  transition: all .3s;
}

.comm-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.comm-icon {
  width: 62px;
  height: 62px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.comm-icon i {
  color: #fff;
  font-size: 22px;
}

.comm-card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.comm-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.comm-cta-wrap {
  text-align: center;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.comm-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all .3s;
  border: 3px solid var(--red);
}

.comm-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(171, 26, 28, .5);
}

/* ===== AREA MAP ===== */
/* ===== AREA MAP ===== */
.area-map-section {
  background: var(--gray-light);
  padding: 70px 0;
}

.area-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.area-map-text h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.area-map-text p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Coverage List */
.coverage-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.cov-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.cov-item i {
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
}

.cov-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.cov-item a:hover {
  color: var(--red);
}

/* CTA Button */
.area-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 3px solid var(--red);
}

.area-map-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171, 26, 28, 0.45);
}

/* Map Embed */
.area-map-embed {
  border-radius: 16px;
  overflow: hidden;

}

.area-map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ===== STEALTH DIVIDER ===== */
.stealth-divider-wrap {
  background: #fff;
  padding: 0;
}

.stealth-line {
  width: 100%;
  height: 2px;
  background: #002745;
  cursor: pointer;
  border: none;
  outline: none;
  display: block;
}

.stealth-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  background: #fff;
}

.stealth-content.open {
  max-height: 9999px;
  opacity: 1;
}

.stealth-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 40px 52px;
}

.stealth-article h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #002745;
  margin: 32px 0 10px;
  line-height: 1.3;
}

.stealth-article h2:first-child {
  margin-top: 0;
}

.stealth-article h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #002745;
  margin: 24px 0 8px;
  line-height: 1.4;
}

.stealth-article p {
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.9;
  margin-bottom: 16px;
}

.stealth-article p:last-child {
  margin-bottom: 0;
}

/* ===== WHY THE PLUMBERS DELIVER ===== */
.why-deliver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-deliver-img {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
}

.why-deliver-content {
  padding: 8px 0;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.why-feature-icon i {
  color: #fff;
  font-size: 18px;
}

.why-feature-item:hover .why-feature-icon {
  background: var(--red);
}

.why-deliver-content h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 5px;
  line-height: 1.3;
}

.why-deliver-content .why-feature-item p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.75;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 1100px) {
  .main-nav>li>a {
    padding: 28px 10px;
    font-size: 13px;
  }

  .header-inner {
    padding: 0 30px;
    gap: 16px;
  }
}

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

  .hero-content {
    padding: 0 20px;
  }

  .wcu-wrap {
    padding: 0 20px;
  }

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

  .top-bar {
    display: none;
  }

  /* hide top bar on mobile for compact header */

  /* Mobile header: smaller height */
  .site-header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding: 0 16px;
    gap: 10px;
    height: 58px;
    /* compact mobile height */
    min-height: unset;
    flex-wrap: nowrap;
  }

  /* Logo stays left, shrinks */
  .logo-wrap {
    padding: 4px 0;
  }

  .logo-wrap img {
    width: 100px;
  }

  /* Push call button to center, hamburger to far right */
  nav {
    order: 3;
  }

  /* nav (hidden) goes last */
  .hdr-call-btn {
    order: 2;
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 8px 14px;
    gap: 6px;
  }

  .mobile-menu-toggle {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .logo-wrap {
    order: 1;
  }

  /* Hide desktop nav, show it when mobile-open */
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    /* match header height */
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    padding: 8px 0;
    z-index: 1001;
  }

  .main-nav.mobile-open {
    display: flex;
  }

  .main-nav.mobile-open>li>a {
    padding: 13px 20px;
    font-size: 14px;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--gray-light);
    border-radius: 0;
    padding: 0 0 8px 20px;
    display: none;
  }

  .main-nav.mobile-open>li.open .dropdown-menu {
    display: block;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-offer-card {
    display: none;
  }

  .wcu-wrap {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

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

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .emergency-img-wrap {
    display: none;
  }

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

  .van-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .van-dark-box {
    padding: 32px 24px;
  }

  .whoweare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-map-grid {
    grid-template-columns: 1fr;
  }

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

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

  .rating-logo-card {
    flex: 0 0 calc(100% / 3);
  }

  .why-deliver-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-deliver-img {
    position: static;
    min-height: 260px;
  }
}

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

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-red,
  .btn-hero-outline {
    min-width: 0;
    width: 100%;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .hiw-arrow {
    display: none;
  }

  .hiw-step {
    border-bottom: 1px solid var(--gray-border);
  }

  .hiw-step:last-child {
    border-bottom: none;
  }

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

  .stealth-article {
    padding: 32px 24px 40px;
  }

  .area-map-embed iframe {
    height: 320px;
  }

  .van-card {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .svc-img-grid {
    grid-template-columns: 1fr;
  }

  .who-features-grid {
    grid-template-columns: 1fr;
  }

  .cert-badge {
    min-width: 130px;
    padding: 20px 12px;
  }

  .rating-logo-card {
    flex: 0 0 calc(100% / 2);
  }

  .rating-logo-card .logo-img-wrap img {
    max-width: 90px;
    max-height: 42px;
  }

  .rating-logo-card .stars i {
    font-size: 15px;
  }
}

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

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

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

/* ===== ACTIVE NAV STATES ===== */
.main-nav>li>a.active {
  color: var(--red) !important;
}

.main-nav>li.active-parent>a {
  color: var(--red);
}

/* =================================================================
   GLOBAL SECTION IMAGE STYLES
   Puri website ki content/section images — consistent design.
   Hero section mein background-image use hoti hai, isliye affect nahi hoti.
   ================================================================= */

/* --- Who We Are section image --- */
.whoweare-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* --- Emergency section image --- */
.emrg-img-wrap img,
.emergency-img img,
.emrg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* --- Emergency feature list items --- */
.emrg-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.emrg-feat i {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.emrg-feat span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* --- Blog article body images --- */
.blog-article img {
  width: 100%;
  border-radius: 14px;
  margin: 24px 0;
  object-fit: cover;
  display: block;
}

/* --- Blog card images (blog listing page) --- */
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 0;
}

/* --- Service pages & Area pages content images --- */
.service-content-img img,
.area-content-img img,
.page-content img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  margin: 20px 0;
}

/* --- About page images --- */
.about-img img,
.about-content img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* --- Contact page images --- */
.contact-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* --- Rating/Logo bar images --- */
.logo-img-wrap img {
  object-fit: contain;
  display: block;
}

/* --- Utility class: class="section-img" kisi bhi <img> pe lagao --- */
img.section-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* Rounded variant */
img.section-img-round {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}


/* =================================================================
   GLOBAL PAGE LAYOUT CLASSES
   Har inner page (services, areas, blog, about, contact) ye classes
   use karega. Consistent 1280px width, 50px padding har jagah.
   ================================================================= */

/* --- Inner Page Hero (same style for all pages) --- */
.page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('../assets/images/trusted-plumbers-tx.webp') no-repeat center/cover;
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero .section-tag {
  margin-bottom: 16px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 68px);
  margin: 12px 0 20px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 28px;
}

.page-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- 2-Column Content Grid (image + text) --- */
/* Use: <div class="page-content-grid"> */
.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-content-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* --- Feature/Benefit Cards Grid --- */
/* Use: <div class="page-feature-cards"> */
.page-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.page-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--red);
}

.page-feature-card i {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.page-feature-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-feature-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* --- CTA Banner (red background bottom CTA) --- */
.page-cta-banner {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}

.page-cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 44px);
}

.page-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 28px;
}

.page-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Area Page Services Sidebar Card --- */
.area-services-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 36px;
  color: #fff;
}

.area-services-card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.area-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.area-service-item:last-child {
  border-bottom: none;
}

.area-service-item i {
  color: var(--red);
  width: 20px;
  flex-shrink: 0;
}

.area-service-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

.area-service-item a:hover {
  color: #fff;
}

/* --- Responsive: stack grids on mobile --- */
@media (max-width: 768px) {
  .page-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero {
    padding: 90px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 6vw, 48px);
  }

  .page-cta-banner {
    padding: 40px 0;
  }
}

/* --- Drain Cleaning Page --- */
/* ── SIGNS SECTION ── */
.signs-section {
  background: #fff;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.section-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-title-wrap h2 {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 10px;
}

.section-title-wrap p {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sign-card {
  border: 2px solid #e8eef5;
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.sign-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(204, 31, 31, 0.08);
}

.sign-icon {
  width: 44px;
  height: 44px;
  background: #fff0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 18px;
}

.sign-text h4 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sign-text p {
  color: var(--gray-text);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.signs-cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.signs-cta-wrap p {
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 14px;
}

/*── PREVENTION TIPS SECTION ── */
.prevention-section {
  background: #fff;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.tip-card {
  background: #f8faff;
  border: 1px solid #dde8f5;
  border-radius: 8px;
  padding: 22px 20px;
  position: relative;
  transition: box-shadow 0.2s;
}

.tip-card:hover {
  box-shadow: 0 6px 20px rgba(0, 39, 69, 0.1);
}

.tip-number {
  position: absolute;
  top: -1px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(0, 39, 69, 0.05);
  line-height: 1;
  pointer-events: none;
}

.tip-card i {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  display: block;
}

.tip-card h4 {
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tip-card p {
  color: var(--gray-text);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.prevention-note {
  margin-top: 28px;
  background: #fff8e8;
  border: 1px solid #002745;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.prevention-note i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 1px;
}

.prevention-note p {
  color: #002745;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===========Locations Pages Section Styles All =============== */

/* ── PAGE HERO ── */
.svc-page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/trusted-plumbers-tx.webp') center/cover no-repeat;
  opacity: 0.13;
}

.svc-page-hero .container {
  position: relative;
  z-index: 2;
}

.svc-page-hero .section-tag {
  margin-bottom: 14px;
}

.svc-page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.0;
  margin-bottom: 18px;
}

.svc-page-hero h1 span {
  color: var(--red);
}

.svc-page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-red {
  background: var(--red);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 3px solid var(--red);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 26, 28, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-outline:hover {
  background: #fff;
  color: var(--navy);
}

/* ── PAGE INTRO ── */
.svc-page-intro {
  background: #fff;
  padding: 56px 0 16px;
  text-align: center;
}

.svc-page-intro h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}

.svc-page-intro h1 span {
  color: var(--red);
}

.svc-page-intro p {
  max-width: 740px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-text);
}

/* ── SERVICES WRAPPER ── */
.services-page-wrap {
  background: #fff;
}

/* ── INDIVIDUAL SERVICE BLOCK ── */
.svc-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-border);
}

.svc-block:last-child {
  border-bottom: none;
}

.svc-block:nth-child(odd) {
  background: #fff;
}

.svc-block:nth-child(even) {
  background: #f7f9fc;
}

.svc-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* odd = image right (text left, image right) */
.svc-block:nth-child(odd) .svc-block-inner {
  direction: ltr;
}

/* even = image left (image left, text right) */
.svc-block:nth-child(even) .svc-block-inner {
  direction: rtl;
}

.svc-block:nth-child(even) .svc-block-inner>* {
  direction: ltr;
}

/* ── IMAGE COLUMN ── */
.svc-block-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 39, 69, 0.13);
}

.svc-block-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.svc-block-img:hover img {
  transform: scale(1.03);
}

/* Floating tags on image */
.img-tags {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.img-tag {
  background: var(--navy);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.img-tag.red {
  background: var(--red);
}

/* ── TEXT COLUMN ── */
.svc-block-text {}

.svc-block-text .section-tag {
  margin-bottom: 10px;
}

.svc-block-text h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 14px;
}

.svc-block-text .svc-intro {
  font-size: 15.5px;
  color: var(--gray-text);
  line-height: 1.82;
  margin-bottom: 20px;
}

/* Key Benefits */
.svc-benefits-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 18px;
}

.svc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.5;
}

.svc-benefit-item i {
  color: var(--navy);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Best Use Box */
.best-use-box {
  background: #f0f7ff;
  border-left: 4px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.best-use-box strong {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  display: block;
  margin-bottom: 5px;
}

.best-use-box p {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* CTA Button */
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--red);
  transition: all 0.3s;
  white-space: nowrap;
}

.svc-cta-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 26, 28, 0.35);
}

/* ── EMERGENCY BLOCK SPECIAL STYLING ── */
.svc-block.emergency-block {
  background: var(--navy) !important;
}

.svc-block.emergency-block .svc-block-text h2 {
  color: #fff;
}

.svc-block.emergency-block .svc-block-text .svc-intro {
  color: rgba(255, 255, 255, 0.82);
}

.svc-block.emergency-block .svc-benefits-label {
  color: rgba(255, 255, 255, 0.7);
}

.svc-block.emergency-block .svc-benefit-item {
  color: rgba(255, 255, 255, 0.85);
}

.svc-block.emergency-block .svc-benefit-item i {
  color: var(--red);
}

.svc-block.emergency-block .best-use-box {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--red);
}

.svc-block.emergency-block .best-use-box strong {
  color: rgba(255, 255, 255, 0.7);
}

.svc-block.emergency-block .best-use-box p {
  color: rgba(255, 255, 255, 0.82);
}

.svc-block.emergency-block .section-tag {
  background: var(--red);
}

/* ── BOTTOM CTA STRIP ── */
.svc-page-cta {
  background: var(--red);
  padding: 56px 0;
  text-align: center;
}

.svc-page-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  margin-bottom: 12px;
}

.svc-page-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  margin-bottom: 28px;
}

.svc-page-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-block-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .svc-block:nth-child(even) .svc-block-inner {
    direction: ltr;
  }

  .svc-block-img img {
    height: 260px;
  }

  .svc-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .svc-block {
    padding: 50px 0;
  }

  .svc-block-img img {
    height: 220px;
  }
}

/* ============== WHY CHOOSE US WORLD 1%  ============= */

/* ── Outer wrapper ── */
.wcu2-section {
  background: var(--gray-light);
  /* matches site's light sections */
  padding: var(--pad-section) 0;
  overflow: hidden;
  position: relative;
}

/* ── HEADER ── */
.wcu2-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Reuses existing .section-tag class from style.css exactly */

.wcu2-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--navy);
  line-height: 1.0;
  margin-bottom: 0;
}

.wcu2-header h2 span {
  color: var(--red);
}

.wcu2-header p {
  max-width: 660px;
  margin: 14px auto 0;
  font-size: var(--font-body);
  line-height: var(--lh-body);
  color: var(--gray-text);
}



/* ================================================================
       MAIN LAYOUT — Image LEFT  |  Content RIGHT
       Mirrors existing .wcu-wrap two-column pattern from style.css
    ================================================================ */
.wcu2-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}

/* ── LEFT: IMAGE STACK ── */
.wcu2-img-col {
  position: relative;
}

.wcu2-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Floating credentials card — overlaps image bottom-left */
.wcu2-cred-card {
  position: absolute;
  bottom: -24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 40px rgba(0, 39, 69, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wcu2-cred-item {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 120px;
}

.wcu2-cred-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wcu2-cred-icon i {
  color: var(--red);
  font-size: 15px;
}

.wcu2-cred-text strong {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.25;
}

.wcu2-cred-text span {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.3;
}

/* ── RIGHT: REASONS ── */
.wcu2-content-col {
  padding-top: 6px;
}

.wcu2-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.wcu2-reason {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.2s;
}

.wcu2-reason:first-child {
  padding-top: 0;
}

.wcu2-reason:last-child {
  border-bottom: none;
}

/* Icon circle — mirrors existing .service-icon pattern */
.wcu2-reason-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.wcu2-reason:hover .wcu2-reason-icon {
  transform: scale(1.08);
}

.wcu2-reason-icon i {
  color: #fff;
  font-size: 20px;
}

.wcu2-reason-body {}

.wcu2-reason-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 5px;
}

.wcu2-reason-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-text);
  margin: 0;
}

/* Small proof tag inside each reason */
.wcu2-proof {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-light);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 7px;
}

.wcu2-proof i {
  color: var(--red);
  font-size: 10px;
}

/* ── CTA row under reasons ── */
.wcu2-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Reuses existing .wcu-call-btn styles from style.css */
.wcu2-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff !important;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  border: 3px solid var(--red);
  transition: all 0.3s;
}

.wcu2-btn-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 26, 28, 0.40);
}

.wcu2-btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy) !important;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  border: 3px solid var(--navy);
  transition: all 0.3s;
}

.wcu2-btn-schedule:hover {
  background: var(--navy);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ================================================================
       BOTTOM — 3-COLUMN PROMISE CARDS
       Uses same .service-card hover pattern from style.css
    ================================================================ */
.wcu2-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  margin-top: 80px;
  /* offsets the .wcu2-cred-card overhang */
}

.wcu2-promise-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px 26px;
  border: 2px solid var(--gray-border);
  border-bottom: 4px solid var(--red);
  /* same bottom-accent as .service-card::before */
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.wcu2-promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 39, 69, 0.12);
  border-color: var(--red);
}

.wcu2-promise-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--gray-light);
  user-select: none;
}

/* Reuses .service-icon circle pattern */
.wcu2-promise-icon {
  width: 58px;
  height: 58px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wcu2-promise-icon i {
  color: #fff;
  font-size: 22px;
}

.wcu2-promise-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.4px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.wcu2-promise-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 14px;
}

/* Checklist inside each promise card */
.wcu2-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wcu2-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.wcu2-check-item i {
  color: var(--red);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}


/* ================================================================
       RESPONSIVE
    ================================================================ */
@media (max-width: 1024px) {
  .wcu2-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wcu2-img-col {
    display: none;
  }

  /* hide image on tablet/mobile — text alone is sufficient */
  .wcu2-promise-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .wcu2-promise-grid {
    grid-template-columns: 1fr;
  }

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

  .wcu2-compare-header div,
  .wcu2-compare-row div {
    padding: 10px 12px;
    font-size: 12px;
  }

  .wcu2-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .wcu2-btn-call,
  .wcu2-btn-schedule {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FAQ GRID ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual FAQ Item */
.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
}

/* Question Button */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f1f1f1;
}

/* Plus/Minus Icon */
.faq-icon {
  font-size: 16px;
  color: var(--red);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Answer Box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 20px;
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}