
    :root {
      --primary: #143735;        /* Deep Plumco Navy / Dark Slate */
      --primary-dark: #0d2423;
      --primary-light: #204c49;
      --accent: #EF7A3A;         /* Signature Plumco Royal Blue */
      --accent-hover: #d9692c;
      --accent-light: #F9E6D7;
      --bg-light: #FBF7F2;       /* Crisp Plumco Light Background */
      --bg-card: #ffffff;
      --border-color: #e2e7f0;
      --text-main: #143735;      /* Deep Slate */
      --text-muted: #636893;
      --danger: #dc3545;
      --danger-bg: #fef2f2;
      --success: #198754;
      --success-bg: #f0fdf4;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      padding-top: 104px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      color: var(--primary);
      font-weight: 700;
      line-height: 1.25;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Fixed Wrapper */
    .header-sticky-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
    }

    /* Tier 1: Top Critical Alert Bar */
    .top-bar {
  background-color: #EF7A3A;
  color: #ffffff;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
    .top-bar-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .top-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #ffffff;
      font-weight: 700;
      font-size: 13px;
    }
    .pulse-dot {
      width: 9px;
      height: 9px;
      background-color: #facc15;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.35);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.85; }
      50% { transform: scale(1.18); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.85; }
    }

    /* Primary Navigation Header */
    .site-header {
      background-color: #ffffff;
      border-bottom: 1px solid #e2e8f0;
      position: relative;
    }
    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .brand-logo-img {
      height: 54px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }
    .brand-logo:hover .brand-logo-img {
      transform: scale(1.04);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-divider {
      color: #cbd5e1;
      font-weight: 300;
      font-size: 13px;
      user-select: none;
    }
    .nav-item { position: relative; }
    .nav-link {
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text-main);
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      padding: 8px 0;
      letter-spacing: 0.3px;
    }
    .nav-link:hover, .nav-item:hover .nav-link { color: var(--accent); }
    .nav-arrow { font-size: 9px; transition: transform 0.2s; }
    .nav-item:hover .nav-arrow { transform: rotate(180deg); }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      border: none;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      min-width: 270px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.2s ease;
      z-index: 200;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-item {
      display: block;
      padding: 9px 20px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-main);
      transition: background 0.15s, color 0.15s;
    }
    .dropdown-item:hover {
      background-color: var(--accent-light);
      color: #143735;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .btn-header-call {
  background: linear-gradient(135deg, #EF7A3A 0%, #d9692c 100%);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(239, 122, 58, 0.35);
}
    .btn-header-call:hover {
  background: linear-gradient(135deg, #d9692c 0%, #bd551d 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(239, 122, 58, 0.45);
}
    .mobile-call-text {
      display: none;
    }
    .mobile-menu-toggle {
      display: none;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 8px 10px;
      cursor: pointer;
      color: var(--primary);
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .mobile-menu-toggle:hover {
      background: #f1f5f9;
    }
    .mobile-menu-toggle svg {
      width: 22px;
      height: 22px;
    }



        /* Fixnow Vibrant Royal Blue Hero Section */
    .hero-section {
  background: linear-gradient(135deg, #143735 0%, #102e2c 50%, #0d2423 100%);
  padding: 80px 0 90px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
    .hero-bg-accent {
      position: absolute;
      right: -80px;
      bottom: -100px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }
    .hero-bottom-curve {
      display: none;
    }
    .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
    .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

    .hero-eyebrow-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }
    .hero-accent-line {
      width: 44px;
      height: 3px;
      background-color: #EF7A3A;
      border-radius: 2px;
      display: inline-block;
    }
    .hero-eyebrow-text {
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0.95;
    }

    .hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: 46px;
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.5px;
      color: #ffffff;
      margin-bottom: 18px;
    }
    .hero-title span {
      color: #ffffff;
    }
    .hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
    
    .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
    .btn-hero-primary {
  background-color: #EF7A3A;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(239, 122, 58, 0.35);
}
    .btn-hero-primary:hover {
  background-color: #d9692c;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(239, 122, 58, 0.45);
}

.btn-hero-secondary {
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero-secondary:hover {
  background-color: #ffffff;
  color: #143735 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


    /* Right Column: Hero Restoration Specialist Image */
    .hero-image-col {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: relative;
      width: 100%;
    }
    .hero-technician-img {
      width: auto;
      max-width: 100%;
      max-height: 520px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
      transition: transform 0.35s ease;
    }
    .hero-technician-img:hover {
      transform: translateY(-4px) scale(1.02);
    }

    /* Trust Seals Strip */
    .trust-strip {
      background-color: var(--primary);
      color: #ffffff;
      padding: 24px 0;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }
    .trust-item h4 {
      color: var(--accent);
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .trust-item p {
      font-size: 13px;
      color: #d1dedd;
    }

    /* Section Styling */
    .section-padding {
      padding: 75px 0;
    }
    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
    }
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .section-accent-line {
      width: 30px;
      height: 2.5px;
      background-color: var(--accent);
      display: inline-block;
    }
    .section-tag {
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .section-header h2 {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }
    .section-header p {
      font-size: 16px;
      color: var(--text-muted);
    }

        /* Fixnow Fluid Section One (Exact Template CSS, Background #143735 & Typography) */
    .about-split-section {
      position: relative;
      background-color: #143735;
      border-bottom: 1px solid var(--border-color);
      overflow: hidden;
    }
    .about-split-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      min-height: 560px;
    }
    .about-left-col {
      background-color: #ffffff;
      display: flex;
      justify-content: flex-end;
      padding: 85px 60px 65px 20px;
    }
    .about-left-inner {
      max-width: 600px;
      width: 100%;
    }
    .about-main-title {
      position: relative;
      font-family: 'Poppins', sans-serif;
      font-size: 35px;
      font-weight: 600;
      color: #242424;
      line-height: 1.3em;
      margin-bottom: 18px;
      display: inline-block;
    }
    .about-main-title:after {
      content: '';
      display: inline-block;
      width: 40px;
      height: 2.5px;
      background-color: #EF7A3A;
      margin-left: 12px;
      vertical-align: middle;
    }
    .about-lead-text {
      font-family: 'Lora', serif;
      font-size: 20px;
      font-style: italic;
      color: #242424;
      line-height: 1.45em;
      margin-bottom: 20px;
    }
    .about-body-text-wrap {
      padding-bottom: 25px;
      margin-bottom: 20px;
      border-bottom: 1px solid #dddddd;
    }
    .about-body-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #797979;
      line-height: 1.7em;
      margin-bottom: 18px;
    }
    .about-body-text:last-child {
      margin-bottom: 0;
    }
    .about-emergency-callout {
      position: relative;
      font-family: 'Poppins', sans-serif;
      color: #143735;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.5em;
    }
    .about-callout-phone {
      display: block;
      color: #f64e49;
      font-size: 36px;
      font-weight: 400;
      font-family: 'Poppins', sans-serif;
      margin-top: 4px;
      transition: opacity 0.2s;
    }
    .about-callout-phone:hover {
      opacity: 0.85;
      color: #f64e49;
    }

    /* Right Side: Exact Fixnow Background #143735 & Feature Blocks */
    .about-right-col {
      background-color: #143735;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 85px 20px 65px 70px;
      border-radius: 0;
    }
    .about-right-inner {
      max-width: 600px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }
    .about-feature-box {
      position: relative;
      padding-left: 80px;
    }
    .about-feature-icon {
      position: absolute;
      left: 0;
      top: 0;
      width: 56px;
      height: 56px;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-feature-icon svg {
      width: 48px;
      height: 48px;
      stroke: #ffffff;
    }
    .about-feature-info h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.25em;
      margin-bottom: 8px;
    }
    .about-feature-info p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.7em;
      margin: 0;
    }

    /* Fixnow-Style Urgency Section (Full Blue Section with Template Typography & Checklist) */
    .fixnox-urgency-section {
      background: linear-gradient(135deg, #1d52ba 0%, #143e98 100%);
      padding: 95px 0 100px 0;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .fixnox-urgency-section::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      width: 420px;
      height: 100%;
      background-image: url('/images/water-splash-bg.png');
      background-repeat: no-repeat;
      background-position: right bottom;
      background-size: contain;
      opacity: 0.15;
      pointer-events: none;
    }
    .fixnox-urgency-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 55px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .fixnox-urgency-left {
      display: flex;
      flex-direction: column;
    }
    .fixnox-urgency-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #EF7A3A;
      text-transform: uppercase;
    }
    .fixnox-urgency-eyebrow-dash {
      width: 20px;
      height: 2px;
      background-color: #EF7A3A;
      display: inline-block;
    }
    .fixnox-urgency-title {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.22;
      margin-bottom: 18px;
    }
    .fixnox-urgency-lead {
      font-family: 'Lora', serif;
      font-size: 19px;
      font-style: italic;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 16px;
      opacity: 0.95;
    }
    .fixnox-urgency-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 15.5px;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .fixnox-urgency-checklist {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .fixnox-check-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .fixnox-check-icon {
      width: 22px;
      height: 22px;
      color: #ffffff;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .fixnox-check-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .fixnox-check-text strong {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.35;
    }
    .fixnox-check-text p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
      margin: 0;
    }

    /* Fixnow Welcome Section Style for Common Water Problems */
    .fixnox-welcome-section {
      position: relative;
      background-color: #ffffff;
      background-image: url('/images/water-splash-bg.png');
      background-repeat: no-repeat;
      background-position: left bottom;
      background-size: 340px auto;
      padding: 95px 0 90px 0;
      border-bottom: 1px solid var(--border-color);
    }
    .fixnox-welcome-grid {
      display: grid;
      grid-template-columns: 1.22fr 0.78fr;
      gap: 55px;
      align-items: center;
    }
    .fixnox-welcome-content {
      position: relative;
      z-index: 3;
    }
    .fixnox-welcome-title {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #242424;
      line-height: 1.28em;
      margin-bottom: 22px;
      position: relative;
      display: inline-block;
    }
    .fixnox-welcome-title:after {
      content: '';
      display: inline-block;
      width: 44px;
      height: 3px;
      background-color: #EF7A3A;
      margin-left: 14px;
      vertical-align: middle;
    }
    .fixnox-styled-lead {
      font-family: 'Lora', serif;
      font-size: 20px;
      font-style: italic;
      color: #242424;
      line-height: 1.5em;
      margin-bottom: 22px;
    }
    .fixnox-problems-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 28px;
    }
    .fixnox-problem-item h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 17.5px;
      font-weight: 700;
      color: #102a43;
      margin-bottom: 5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .fixnox-problem-item h3 svg {
      width: 17px;
      height: 17px;
      color: #EF7A3A;
      flex-shrink: 0;
    }
    .fixnox-problem-item p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: #636893;
      line-height: 1.65;
      padding-left: 25px;
      margin: 0;
    }
    .fixnox-body-text {
      margin-bottom: 30px;
    }
    .fixnox-body-text p {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #797979;
      line-height: 1.8em;
      margin-bottom: 18px;
    }
    .fixnox-body-text p:last-child {
      margin-bottom: 0;
    }
    .fixnox-welcome-cta {
      margin-top: 10px;
    }
    
    /* Right Image Box with Blue Offset Backdrop */
    .fixnox-welcome-image-col {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: relative;
    }
    .fixnox-image-box {
      position: relative;
      max-width: 420px;
      width: 100%;
      margin: 20px 20px 0 0;
    }
    .fixnox-image-backdrop {
      position: absolute;
      top: -24px;
      right: -24px;
      width: 100%;
      height: 100%;
      background-color: #EF7A3A;
      z-index: 1;
    }
    .fixnox-welcome-img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: auto;
      display: block;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

    /* Common Scenarios Grid */
    .scenarios-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }
    .scenario-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-left: 4px solid var(--accent);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(18, 50, 48, 0.04);
    }
    .scenario-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
    .scenario-tag-badge { font-size: 11px; font-weight: 800; text-transform: uppercase; color: #143735; background: var(--accent-light); padding: 3px 9px; border-radius: 20px; }
    .scenario-item h3 { font-size: 17px; margin-bottom: 6px; }
    .scenario-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

    /* Plumbox-Inspired 'Why Miami is Different' Section (Content Left, Image Right, Non-Box List Format) */
    .plumbox-diff-section {
      background-color: #ffffff;
      padding: 95px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .plumbox-diff-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      align-items: center;
    }
    .plumbox-diff-content {
      text-align: left;
    }
    .plumbox-diff-title {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: #102a43;
      line-height: 1.22;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
    .plumbox-diff-intro {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #636893;
      line-height: 1.7;
      margin-bottom: 30px;
    }
    .plumbox-diff-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-bottom: 35px;
    }
    .plumbox-diff-item h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #102a43;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .plumbox-diff-item h3 svg {
      width: 18px;
      height: 18px;
      color: #EF7A3A;
      flex-shrink: 0;
    }
    .plumbox-diff-item p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: #636893;
      line-height: 1.65;
      padding-left: 28px;
      margin: 0;
    }
    .plumbox-diff-img-col {
      display: flex;
      justify-content: center;
      align-items: stretch;
      height: 100%;
    }
    .plumbox-diff-img-wrap {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 480px;
      display: flex;
    }
    .plumbox-diff-img {
      width: 100%;
      height: 100%;
      min-height: 480px;
      border-radius: 14px;
      display: block;
      box-shadow: 0 20px 45px rgba(16, 42, 67, 0.12);
      object-fit: cover;
    }

    /* Why Miami is Different Grid */
    .miami-diff-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .diff-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px 20px;
      box-shadow: 0 4px 12px rgba(18, 50, 48, 0.04);
      border-top: 3px solid var(--accent);
    }
    .diff-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
    .diff-card p { font-size: 13px; color: var(--text-muted); line-height: 1.45; }

    /* Fixnow-Style Open Center-Aligned Reasons Section (No Boxes/Cards) */
    .fixnox-reasons-section {
      background-color: #F5F8FE;
      padding: 95px 0 100px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .fixnox-reasons-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 55px auto;
    }
    .fixnox-reasons-title {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #242424;
      line-height: 1.25;
      margin-bottom: 16px;
      position: relative;
      display: inline-block;
    }
    .fixnox-reasons-title:after {
      content: '';
      display: inline-block;
      width: 40px;
      height: 2.5px;
      background-color: #EF7A3A;
      margin-left: 12px;
      vertical-align: middle;
    }
    .fixnox-reasons-lead {
      font-family: 'Lora', serif;
      font-size: 19px;
      font-style: italic;
      color: #242424;
      line-height: 1.55;
      margin-top: 6px;
    }
    .fixnox-reasons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 45px;
      row-gap: 50px;
      text-align: center;
    }
    .fixnox-reason-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 10px;
    }
    .fixnox-reason-num {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      background: #EF7A3A;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      box-shadow: 0 6px 16px rgba(255, 85, 56, 0.35);
    }
    .fixnox-reason-item h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 18.5px;
      font-weight: 700;
      color: #16202c;
      line-height: 1.35;
      margin-bottom: 10px;
      text-align: center;
    }
    .fixnox-reason-item p {
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      color: #242424;
      line-height: 1.7;
      margin: 0;
      text-align: center;
    }

    /* Signs You Might Have Hidden Water Damage (2-Column Left Image / Right Content, No Boxes) */
    .signs-layout-section {
      background-color: #ffffff;
      padding: 95px 0 100px 0;
      border-top: 1px solid var(--border-color);
    }
    .signs-layout-grid {
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      gap: 55px;
      align-items: center;
    }
    .signs-img-col {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .signs-img-wrap {
      position: relative;
      width: 100%;
      max-width: 540px;
    }
    .signs-img {
      width: 100%;
      height: auto;
      border-radius: 0;
      display: block;
      box-shadow: 0 16px 40px rgba(16, 42, 67, 0.12);
      object-fit: cover;
    }
    .signs-content-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .signs-main-title {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #242424;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .signs-intro-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 15.5px;
      color: #242424;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .signs-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 32px;
    }
    .signs-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      border-bottom: 1px solid #f0f2f5;
      padding-bottom: 18px;
    }
    .signs-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .signs-item h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 18.5px;
      font-weight: 700;
      color: #102a43;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .signs-item h3 svg {
      width: 18px;
      height: 18px;
      color: #EF7A3A;
      flex-shrink: 0;
    }
    .signs-item p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: #242424;
      line-height: 1.65;
      padding-left: 28px;
      margin: 0;
    }

    /* Safety Tips Section (Left-Aligned Open Layout, No Cards/Boxes, Distinct Custom Icons) */
    .safety-tips-section {
      background-color: #fbfcfe;
      padding: 95px 0 100px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .safety-tips-header {
      text-align: left;
      max-width: 860px;
      margin-bottom: 50px;
    }
    .safety-tips-title {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #242424;
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .safety-tips-lead {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #242424;
      line-height: 1.7;
      margin: 0;
    }
    .safety-tips-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 40px;
      row-gap: 45px;
      text-align: left;
    }
    .safety-tip-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    .safety-tip-icon {
      width: 52px;
      height: 52px;
      background: #fff0ed;
      color: #EF7A3A;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border: 1px solid rgba(255, 85, 56, 0.15);
    }
    .safety-tip-icon svg {
      width: 24px;
      height: 24px;
    }
    .safety-tip-item h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #102a43;
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .safety-tip-item p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: #242424;
      line-height: 1.65;
      margin: 0;
    }

    /* Case Studies Section (CARooters Before/After Style) */
    .case-studies-section {
      background-color: #F8FAFE;
      padding: 90px 0 95px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .case-studies-header {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 50px auto;
    }
    .case-studies-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: #EF7A3A;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .case-studies-eyebrow-dash {
      width: 28px;
      height: 3px;
      background-color: #EF7A3A;
      border-radius: 2px;
    }
    .case-studies-title {
      font-family: 'Poppins', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #102a43;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .case-studies-lead {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #636893;
      line-height: 1.65;
    }
    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .case-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(16, 42, 67, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex;
      flex-direction: column;
    }
    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 32px rgba(16, 42, 67, 0.12);
    }
    .case-img-split {
      position: relative;
      height: 230px;
      width: 100%;
      overflow: hidden;
      background: #0f172a;
    }
    .case-img-single {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .case-badge-before {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(185, 28, 28, 0.95);
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      padding: 4px 10px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
      z-index: 2;
    }
    .case-badge-after {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(13, 148, 86, 0.95);
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      padding: 4px 10px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
      z-index: 2;
    }
    .case-body {
      padding: 22px 20px 24px 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .case-location {
      font-family: 'Poppins', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      color: #EF7A3A;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .case-location svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }
    .case-title {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #102a43;
      line-height: 1.35;
      margin-bottom: 14px;
    }
    .case-desc-block {
      font-family: 'Open Sans', sans-serif;
      font-size: 13.5px;
      color: #486581;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .case-desc-block strong {
      color: #102a43;
      font-weight: 700;
    }
    .case-desc-block.solution-block strong {
      color: #143735;
    }

    /* Tools We Use Section */
    .tools-section {
      background-color: #ffffff;
      padding: 90px 0 95px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .tools-header {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 50px auto;
    }
    .tools-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: #EF7A3A;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .tools-eyebrow-dash {
      width: 28px;
      height: 3px;
      background-color: #EF7A3A;
      border-radius: 2px;
    }
    .tools-title {
      font-family: 'Poppins', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #102a43;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .tools-lead {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #636893;
      line-height: 1.65;
    }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .tool-card {
      background: #F8FAFE;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 30px 24px 28px;
      box-shadow: 0 4px 18px rgba(16, 42, 67, 0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: flex;
      flex-direction: column;
    }
    .tool-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 32px rgba(16, 42, 67, 0.1);
      border-color: #cbd5e1;
    }
    .tool-icon-box {
      width: 54px;
      height: 54px;
      border-radius: 12px;
      background: linear-gradient(135deg, #143735 0%, #0d2423 100%);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 6px 16px rgba(0, 82, 218, 0.22);
    }
    .tool-icon-box svg {
      width: 28px;
      height: 28px;
    }
    .tool-badge {
      display: inline-block;
      align-self: flex-start;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #EF7A3A;
      background: rgba(255, 85, 56, 0.1);
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .tool-card-title {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #102a43;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .tool-card-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      color: #486581;
      line-height: 1.6;
      margin-bottom: 18px;
      flex-grow: 1;
    }
    .tool-specs {
      border-top: 1px solid #e2e8f0;
      padding-top: 14px;
      margin-top: auto;
    }
    .tool-spec-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      color: #243b53;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .tool-spec-item:last-child {
      margin-bottom: 0;
    }
    .tool-spec-item svg {
      width: 15px;
      height: 15px;
      color: #143735;
      flex-shrink: 0;
    }

    /* Plumbox-Style Process Section (What to Expect When You Call Us) */
    .plumbox-process-section {
      background: linear-gradient(135deg, #132b55 0%, #0d2042 100%);
      padding: 95px 0 100px 0;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .plumbox-process-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 60px auto;
    }
    .plumbox-process-title {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .plumbox-process-lead {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
    }
    .plumbox-process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      position: relative;
    }
    .plumbox-process-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      position: relative;
    }
    .plumbox-process-badge-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 2px;
    }
    .plumbox-pentagon-badge {
      width: 52px;
      height: 56px;
      background-color: #EF7A3A;
      clip-path: polygon(50% 0%, 100% 32%, 82% 100%, 18% 100%, 0% 32%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 800;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(255, 85, 56, 0.3);
    }
    .plumbox-process-item h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.3;
      margin: 0;
    }
    .plumbox-process-item p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.65;
      margin: 0;
    }

    /* Services Grid (Plumco Style: Image Container + Bold Title + Body + Read More ») */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 20px;
      border: 1px solid var(--border-color);
      box-shadow: 0 10px 30px rgba(0, 82, 218, 0.04);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0, 82, 218, 0.10);
      border-color: rgba(0, 82, 218, 0.3);
    }
    .service-img-wrap {
      width: 100%;
      height: 190px;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 18px;
      background: var(--bg-light);
    }
    .service-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .service-card:hover .service-img {
      transform: scale(1.05);
    }
    .service-card h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 18px;
      line-height: 1.6;
    }
    .service-read-more {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      margin-top: auto;
    }
    .service-arrow {
      color: var(--accent);
      font-size: 17px;
      font-weight: 800;
      transition: transform 0.2s;
    }
    .service-card:hover .service-read-more {
      color: var(--accent);
    }
    .service-card:hover .service-arrow {
      transform: translateX(4px);
    }

    /* Find a Company Near You Section Styles (Carooters 3-Column Area Grid with Blue Brand Palette) */
    .near-you-section {
      background-color: #F5F8FE;
      padding: 95px 0 100px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .near-you-header {
      text-align: center;
      max-width: 840px;
      margin: 0 auto 50px auto;
    }
    .near-you-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #143735;
      text-transform: uppercase;
    }
    .near-you-eyebrow-dash {
      width: 20px;
      height: 2px;
      background-color: #143735;
      display: inline-block;
    }
    .near-you-title {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 800;
      color: #16202c;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .near-you-lead {
      font-family: 'Open Sans', sans-serif;
      font-size: 15.5px;
      color: #242424;
      line-height: 1.7;
      margin: 0;
    }
    .near-you-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .near-you-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.22s ease;
      text-decoration: none;
    }
    .near-you-card:hover {
      border-color: #143735;
      box-shadow: 0 8px 24px rgba(0, 82, 218, 0.08);
      transform: translateY(-2px);
    }
    .near-you-pin-icon {
      width: 40px;
      height: 40px;
      background: #f0f5ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #143735;
      transition: all 0.2s ease;
    }
    .near-you-card:hover .near-you-pin-icon {
      background: #143735;
      color: #ffffff;
    }
    .near-you-pin-icon svg {
      width: 20px;
      height: 20px;
    }
    .near-you-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-align: left;
    }
    .near-you-name {
      font-family: 'Poppins', sans-serif;
      font-size: 16.5px;
      font-weight: 700;
      color: #16202c;
      line-height: 1.3;
      margin: 0;
    }
    .near-you-zip {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      color: #636893;
      line-height: 1.4;
      margin: 0;
    }

    /* FAQ Section (Carooters 2-Column Split Layout with Color Palette) */
    .faq-carooters-section {
      background-color: #ffffff;
      padding: 100px 0 105px 0;
      border-top: 1px solid var(--border-color);
    }
    .faq-carooters-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.35fr;
      gap: 65px;
      align-items: start;
    }
    .faq-carooters-left {
      position: sticky;
      top: 110px;
    }
    .faq-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #143735;
      text-transform: uppercase;
    }
    .faq-eyebrow-dash {
      width: 20px;
      height: 2px;
      background-color: #143735;
      display: inline-block;
    }
    .faq-carooters-title {
      font-family: 'Poppins', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: #16202c;
      line-height: 1.18;
      margin-bottom: 18px;
    }
    .faq-carooters-lead {
      font-family: 'Open Sans', sans-serif;
      font-size: 15.5px;
      color: #242424;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .faq-phone-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #143735;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .faq-phone-cta:hover {
      color: #102e2c;
      transform: translateX(4px);
    }
    .faq-carooters-right {
      display: flex;
      flex-direction: column;
    }
    .faq-carooters-item {
      border-bottom: 1px solid #e8ecf2;
      padding: 24px 0;
      transition: all 0.2s ease;
    }
    .faq-carooters-item:first-child {
      padding-top: 0;
    }
    .faq-carooters-item:last-child {
      border-bottom: none;
    }
    .faq-carooters-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
      gap: 16px;
    }
    .faq-carooters-num {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 19px;
      font-weight: 700;
      color: #143735;
      width: 32px;
      flex-shrink: 0;
      padding-top: 1px;
    }
    .faq-carooters-question {
      font-family: 'Poppins', sans-serif;
      font-size: 18.5px;
      font-weight: 700;
      color: #16202c;
      line-height: 1.35;
      flex: 1;
      margin: 0;
      transition: color 0.2s ease;
    }
    .faq-carooters-header:hover .faq-carooters-question {
      color: #143735;
    }
    .faq-carooters-icon {
      font-size: 24px;
      font-weight: 400;
      color: #143735;
      line-height: 1;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: -2px;
      transition: transform 0.2s ease;
    }
    .faq-carooters-answer {
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      color: #242424;
      line-height: 1.7;
      padding: 14px 0 0 32px;
      display: none;
    }
    .faq-carooters-item.active .faq-carooters-answer {
      display: block;
    }
    .faq-carooters-item.active .faq-carooters-icon {
      font-size: 26px;
    }

    /* Plumbox Bottom CTA Floating Card Section */
    .plumbox-cta-section {
      background-color: #ffffff;
      padding: 60px 0 80px 0;
    }
    .plumbox-cta-card {
      background: linear-gradient(135deg, #1d40a6 0%, #153285 100%);
      border-radius: 16px;
      padding: 60px 65px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 45px rgba(16, 42, 67, 0.14);
    }
    .plumbox-cta-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .plumbox-cta-card::after {
      content: '';
      position: absolute;
      right: -100px;
      bottom: -120px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .plumbox-cta-left {
      position: relative;
      z-index: 2;
      max-width: 620px;
    }
    .plumbox-cta-title {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.22;
      margin-bottom: 14px;
    }
    .plumbox-cta-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.65;
      margin: 0;
    }
    .plumbox-cta-right {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
    }
    .plumbox-cta-btn {
      background-color: #EF7A3A;
      color: #ffffff;
      padding: 16px 36px;
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 700;
      border-radius: 0;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(255, 85, 56, 0.45);
      transition: all 0.25s ease;
    }
    .plumbox-cta-btn:hover {
      background-color: #e04429;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(255, 85, 56, 0.55);
      color: #ffffff;
    }
    .plumbox-cta-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }
    .plumbox-cta-subtext {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.85);
      margin-top: 12px;
      font-weight: 500;
      text-align: right;
    }

    /* Footer */
    .site-footer {
      background: linear-gradient(135deg, #143735 0%, #102e2c 50%, #0d2423 100%);
      color: #ffffff;
      padding: 55px 0 32px 0;
      font-size: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 16.5px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .footer-col p {
      color: #ffffff;
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-col strong {
      color: #ffffff;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links li {
      color: #ffffff;
    }
    .footer-links a {
      color: #ffffff;
      text-decoration: none;
      transition: all 0.2s;
      opacity: 0.95;
    }
    .footer-links a:hover {
      color: #ffffff;
      opacity: 1;
      text-decoration: underline;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      color: #ffffff;
      font-size: 13.5px;
    }

    /* Responsive */
    /* Global Mobile & Overflow Safety */
    html, body {
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }
    img {
      max-width: 100%;
      height: auto;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1200px) {
      .container {
        padding: 0 24px;
      }
      .fixnox-welcome-grid {
        column-gap: 35px;
      }
      .signs-layout-grid {
        gap: 40px;
      }
      .faq-carooters-grid {
        gap: 45px;
      }
    }

    @media (max-width: 991px) {
      /* Header & Mobile Navigation */
      .top-bar-inner {
        justify-content: center;
        text-align: center;
      }
      .desktop-call-text {
        display: none;
      }
      .mobile-call-text {
        display: inline;
      }
      .nav-divider {
        display: none;
      }
      .nav-inner {
        height: 64px;
      }
      .mobile-menu-toggle {
        display: inline-flex;
      }
      .btn-header-call {
        font-size: 13px;
        padding: 8px 12px;
        gap: 6px;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 20px 24px 20px;
        box-shadow: 0 14px 28px rgba(0,0,0,0.15);
        border-top: 1px solid #e2e8f0;
        z-index: 1001;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li, .nav-links .nav-item {
        width: 100%;
      }
      .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        cursor: pointer;
      }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none !important;
        padding: 4px 0 6px 12px;
        margin-top: 2px;
        min-width: 100%;
        display: none;
      }
      .dropdown-menu.active,
      .nav-item.open .dropdown-menu {
        display: block !important;
      }
      .nav-item.open .nav-arrow {
        transform: rotate(180deg) !important;
      }

      /* Hero Section */
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
      }
      .hero-content {
        text-align: center;
      }
      .hero-eyebrow-wrap {
        justify-content: center;
      }
      .hero-cta-group {
        justify-content: center;
      }
      .hero-title {
        font-size: 34px;
        line-height: 1.22;
      }
      .hero-subtitle {
        font-size: 16px;
        margin: 0 auto 26px auto;
      }
      .hero-image-col {
        justify-content: center;
      }
      .hero-technician-img {
        transform: none;
        max-height: 420px;
        max-width: 320px;
        width: auto;
        margin: 0 auto;
      }
      .hero-technician-img:hover {
        transform: none;
      }

      /* Trust Seals Strip */
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      /* About Section (Fixnow Fluid Section) */
      .about-split-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .about-left-col {
        padding: 55px 24px 45px 24px;
        justify-content: center;
      }
      .about-left-inner {
        max-width: 100%;
      }
      .about-right-col {
        padding: 50px 24px 55px 24px;
        justify-content: center;
      }
      .about-right-inner {
        max-width: 100%;
      }
      .about-main-title {
        font-size: 28px;
      }
      .about-lead-text {
        font-size: 18px;
      }

      /* Services Grid */
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
      }

      /* Urgency Section */
      .fixnox-urgency-section {
        padding: 65px 0 70px 0;
      }
      .fixnox-urgency-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .fixnox-urgency-title {
        font-size: 30px;
      }

      /* Common Water Problems Section */
      .fixnox-welcome-section {
        padding: 65px 0 70px 0;
      }
      .fixnox-welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .fixnox-welcome-image-col {
        justify-content: center;
      }
      .fixnox-image-box {
        margin: 20px auto 0 auto;
        max-width: 100%;
      }
      .fixnox-welcome-title {
        font-size: 30px;
      }

      /* Why Miami Emergency is Different */
      .plumbox-diff-section {
        padding: 65px 0 70px 0;
      }
      .plumbox-diff-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .plumbox-diff-title {
        font-size: 30px;
      }
      .plumbox-diff-img-wrap {
        max-width: 100%;
      }

      /* Common Reasons Section */
      .fixnox-reasons-section {
        padding: 65px 0 70px 0;
      }
      .fixnox-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
        row-gap: 32px;
      }
      .fixnox-reasons-title {
        font-size: 30px;
      }

      /* Signs You Might Have Hidden Leaks */
      .signs-layout-section {
        padding: 65px 0 70px 0;
      }
      .signs-layout-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .signs-main-title {
        font-size: 30px;
      }
      .signs-img-wrap {
        max-width: 100%;
      }

      /* Safety Tips Section */
      .safety-tips-section {
        padding: 65px 0 70px 0;
      }
      .safety-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
        row-gap: 32px;
      }
      .safety-tips-title {
        font-size: 30px;
      }

      /* Case Studies Section */
      .case-studies-section {
        padding: 65px 0 70px 0;
      }
      .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }
      .case-studies-title {
        font-size: 28px;
      }

      /* Tools Section */
      .tools-section {
        padding: 65px 0 70px 0;
      }
      .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
      }
      .tools-title {
        font-size: 28px;
      }

      /* Process Section */
      .plumbox-process-section {
        padding: 65px 0 70px 0;
      }
      .plumbox-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
      .plumbox-process-title {
        font-size: 30px;
      }

      /* Location / Service Areas Section */
      .near-you-section {
        padding: 65px 0 70px 0;
      }
      .near-you-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .near-you-title {
        font-size: 30px;
      }

      /* FAQ Section */
      .faq-carooters-section {
        padding: 65px 0 70px 0;
      }
      .faq-carooters-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .faq-carooters-left {
        position: static;
      }
      .faq-carooters-title {
        font-size: 30px;
      }

      /* Bottom Plumbox CTA */
      .plumbox-cta-section {
        padding: 45px 0 55px 0;
      }
      .plumbox-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 32px;
        gap: 26px;
      }
      .plumbox-cta-title {
        font-size: 30px;
      }
      .plumbox-cta-right {
        align-items: flex-start;
        width: 100%;
      }
      .plumbox-cta-subtext {
        text-align: left;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-top: 98px;
      }
      .brand-logo-img {
        height: 40px;
      }
      .top-bar-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 4px;
        font-size: 13px;
      }
      .top-badge {
        justify-content: center;
      }
      .nav-inner {
        height: 65px;
      }
      .brand-text h1 {
        font-size: 17px;
      }
      .btn-header-call {
        font-size: 14px;
        padding: 8px 14px;
      }
      .hero-title {
        font-size: 29px;
      }
      .hero-subtitle {
        font-size: 15px;
      }
      .section-padding {
        padding: 50px 0;
      }
      .btn-hero-primary {
        font-size: 15.5px;
        padding: 14px 22px;
        white-space: normal;
        text-align: center;
        justify-content: center;
      }
      .tools-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .container {
        padding: 0 16px;
      }
      .hero-title {
        font-size: 25px;
        line-height: 1.22;
        letter-spacing: -0.3px;
      }
      .hero-subtitle {
        font-size: 14px;
        line-height: 1.55;
      }
      .hero-cta-group {
        width: 100%;
      }
      .btn-hero-primary {
        width: 100%;
        max-width: 100%;
        font-size: 14.5px;
        padding: 13px 16px;
      }
      .hero-badge-pill {
        font-size: 12px;
        padding: 5px 10px;
      }
      .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      /* About Section */
      .about-left-col {
        padding: 45px 16px 35px 16px;
      }
      .about-right-col {
        padding: 40px 16px 45px 16px;
      }
      .about-main-title {
        font-size: 23px;
      }
      .about-main-title:after {
        width: 25px;
      }
      .about-lead-text {
        font-size: 16px;
      }
      .about-body-text {
        font-size: 14px;
      }
      .about-callout-phone {
        font-size: 24px;
      }
      .about-block-title {
        font-size: 16px;
      }
      .about-block-text {
        font-size: 13px;
      }

      /* Services Section */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .service-card {
        padding: 20px 16px;
      }
      .service-card h3 {
        font-size: 17px;
      }
      .service-card p {
        font-size: 13.5px;
      }

      /* Urgency Section */
      .fixnox-urgency-section {
        padding: 50px 0 55px 0;
      }
      .fixnox-urgency-title {
        font-size: 23px;
      }
      .fixnox-urgency-lead {
        font-size: 15.5px;
      }
      .fixnox-urgency-desc {
        font-size: 13.5px;
      }
      .fixnox-check-item {
        gap: 10px;
      }
      .fixnox-check-text strong {
        font-size: 15px;
      }
      .fixnox-check-text p {
        font-size: 13px;
      }

      /* Common Problems */
      .fixnox-welcome-section {
        padding: 50px 0 55px 0;
      }
      .fixnox-welcome-title {
        font-size: 23px;
      }
      .fixnox-welcome-title:after {
        width: 25px;
      }
      .fixnox-styled-lead {
        font-size: 15.5px;
      }
      .fixnox-problem-item h3 {
        font-size: 16.5px;
      }
      .fixnox-problem-item p {
        font-size: 13.5px;
        padding-left: 20px;
      }

      /* Why Miami Different */
      .plumbox-diff-section {
        padding: 50px 0 55px 0;
      }
      .plumbox-diff-title {
        font-size: 23px;
      }
      .plumbox-diff-lead {
        font-size: 14px;
      }
      .plumbox-diff-item h3 {
        font-size: 16.5px;
      }
      .plumbox-diff-item p {
        font-size: 13.5px;
        padding-left: 20px;
      }

      /* Common Reasons */
      .fixnox-reasons-section {
        padding: 50px 0 55px 0;
      }
      .fixnox-reasons-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
      }
      .fixnox-reasons-title {
        font-size: 23px;
      }
      .fixnox-reasons-title:after {
        width: 25px;
      }
      .fixnox-reasons-lead {
        font-size: 15px;
      }
      .fixnox-reason-item h3 {
        font-size: 17px;
      }
      .fixnox-reason-item p {
        font-size: 13.5px;
      }

      /* Warning Signs */
      .signs-layout-section {
        padding: 50px 0 55px 0;
      }
      .signs-main-title {
        font-size: 23px;
      }
      .signs-intro-text {
        font-size: 14px;
      }
      .signs-item h3 {
        font-size: 16.5px;
      }
      .signs-item p {
        font-size: 13.5px;
        padding-left: 20px;
      }

      /* Safety Tips */
      .safety-tips-section {
        padding: 50px 0 55px 0;
      }
      .safety-tips-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
      }
      .safety-tips-title {
        font-size: 23px;
      }
      .safety-tips-lead {
        font-size: 14px;
      }
      .safety-tip-item h3 {
        font-size: 17px;
      }
      .safety-tip-item p {
        font-size: 13.5px;
      }

      /* Process */
      .plumbox-process-section {
        padding: 50px 0 55px 0;
      }
      .plumbox-process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .plumbox-process-title {
        font-size: 23px;
      }
      .plumbox-process-lead {
        font-size: 14px;
      }
      .plumbox-process-badge-wrap h3 {
        font-size: 17px;
      }
      .plumbox-process-item p {
        font-size: 13.5px;
      }

      /* Locations */
      .near-you-section {
        padding: 50px 0 55px 0;
      }
      .near-you-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .near-you-title {
        font-size: 23px;
      }
      .near-you-lead {
        font-size: 14px;
      }
      .near-you-card {
        padding: 13px 15px;
        gap: 12px;
      }
      .near-you-name {
        font-size: 15px;
      }
      .near-you-zip {
        font-size: 11.5px;
      }

      /* FAQ */
      .faq-carooters-section {
        padding: 50px 0 55px 0;
      }
      .faq-carooters-title {
        font-size: 23px;
      }
      .faq-carooters-lead {
        font-size: 14px;
      }
      .faq-carooters-header {
        gap: 10px;
      }
      .faq-carooters-num {
        font-size: 15px;
        width: 24px;
      }
      .faq-carooters-question {
        font-size: 15.5px;
      }
      .faq-carooters-answer {
        padding-left: 24px;
        font-size: 13.5px;
      }

      /* Bottom Plumbox CTA */
      .plumbox-cta-section {
        padding: 35px 0 45px 0;
      }
      .plumbox-cta-card {
        padding: 32px 18px;
        gap: 20px;
        border-radius: 12px;
      }
      .plumbox-cta-title {
        font-size: 23px;
      }
      .plumbox-cta-desc {
        font-size: 14px;
      }
      .plumbox-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 13px 18px;
      }

      /* Footer */
      .site-footer {
        padding: 40px 0 25px 0;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }
    }

    @media (max-width: 400px) {
      .brand-text h1 {
        font-size: 14.5px;
      }
      .btn-header-call {
        font-size: 12.5px;
        padding: 6px 10px;
      }
      .hero-title {
        font-size: 22px;
      }
    }
  
    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    /* Universal 3-Column / Blog / Contextual Grid */
    .home-blog-grid,
    .contextual-links-grid,
    .services-3col-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (min-width: 992px) {
      .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
      }
    }

    @media (max-width: 991px) {
      .home-blog-grid,
      .contextual-links-grid,
      .services-3col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none !important;
        padding: 4px 0 6px 12px;
        margin-top: 2px;
        min-width: 100%;
        display: none;
      }
      .nav-item.open .dropdown-menu {
        display: block !important;
      }
      .nav-item.open .nav-arrow {
        transform: rotate(180deg) !important;
      }
    }

    @media (max-width: 767px) {
      .home-blog-grid,
      .contextual-links-grid,
      .services-3col-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    }

  
/* ==========================================================================
   BREADCRUMBS BAR
   ========================================================================== */
.breadcrumb-bar {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  font-size: 14px;
}
.breadcrumb-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.breadcrumb-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.breadcrumb-item {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.breadcrumb-item a {
  color: #475569 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
}
.breadcrumb-item a:hover {
  color: #EF7A3A !important;
}
.breadcrumb-separator {
  color: #94a3b8 !important;
  font-size: 13px !important;
  user-select: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 2px !important;
}
.breadcrumb-item.active {
  color: #0f172a !important;
  font-weight: 600 !important;
}

/* Force pure white for process section headers and step descriptions */
.plumbox-process-section .section-header p,
.plumbox-process-section .section-header span,
.plumbox-process-section .process-lead,
.plumbox-process-section .group p,
.plumbox-process-section .text-slate-200,
.plumbox-process-section .text-slate-300 {
  color: #ffffff !important;
}
.plumbox-process-section .section-eyebrow span.section-tag {
  color: #EF7A3A !important;
}
/* Ensure cards with light background retain dark text */
.plumbox-process-section .bg-\[\#FBF7F2\] p,
.plumbox-process-section .bg-white p,
.plumbox-process-section div[class*="bg-[#FBF7F2]"] p,
.plumbox-process-section div[class*="bg-white"] p {
  color: #536463 !important;
}
.plumbox-process-section .bg-\[\#FBF7F2\] h3,
.plumbox-process-section .bg-white h3,
.plumbox-process-section div[class*="bg-[#FBF7F2]"] h3,
.plumbox-process-section div[class*="bg-white"] h3 {
  color: #143735 !important;
}
