:root {
  --navy: #082f63;
  --navy-dark: #051b3d;
  --blue: #0a84e8;
  --blue-dark: #0666bd;
  --light-blue: #eaf5ff;
  --light: #f5f8fc;
  --white: #ffffff;
  --border: #d9e3ef;
  --dark-text: #0b1220;
  --muted: #334155;
  --soft-text: #475569;
  --shadow: 0 16px 36px rgba(8, 47, 99, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 68px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 900;
  color: var(--navy-dark);
}

.main-nav a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--navy); }

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 10px;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: #fff;
}

/* HERO - SHRUNK HEIGHT */
.hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(5, 45, 90, 0.80),
      rgba(2, 32, 70, 0.88)
    ),
    url("../images/og-south-dade-plumbing.jpg") center center / cover no-repeat;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  color: #fff;
  padding: 68px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow,
.contact-box .eyebrow,
.image-break .eyebrow {
  color: rgba(255,255,255,.92);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.8vw, 70px);
  line-height: .98;
  letter-spacing: -.06em;
  color: #fff;
}

.hero-text {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 20px;
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 14px;
  font-weight: 800;
}

/* PLACEHOLDER IMAGES */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  padding: 18px;
  background: #eef5fc;
}

.photo-card,
.service-image,
.image-slide,
.service-area-image,
.image-holder {
  background:
    linear-gradient(135deg, rgba(8,47,99,.12), rgba(10,132,232,.24)),
    repeating-linear-gradient(45deg, #f8fbff, #f8fbff 12px, #e7f2fd 12px, #e7f2fd 24px);
  position: relative;
  overflow: hidden;
}

.photo-card {
  min-height: 230px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.photo-card span,
.service-image span,
.image-slide span,
.service-area-image span,
.image-holder span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5,27,61,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
}

/* GENERAL SECTIONS */
.section { padding: 88px 0; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.text-block p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

h2 {
  margin: 0;
  font-size: clamp(34px,4vw,54px);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: var(--navy-dark);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

/* SLIDERS */
.image-slider {
  min-height: 500px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: var(--light);
}

.image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.image-slide.active { opacity: 1; }

.image-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(5,27,61,.72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.image-slider-arrow.left { left: 18px; }
.image-slider-arrow.right { right: 18px; }
.image-slider-arrow:hover { background: var(--blue); }

/* QUOTE */
.quote-slide-section {
  padding: 95px 0;
  background: #fff;
  overflow: hidden;
}

.quote-slide-box {
  max-width: 1120px;
  transform: translateX(120px);
  opacity: 0;
  transition: transform .9s ease, opacity .9s ease;
}

.quote-slide-box.show {
  transform: translateX(0);
  opacity: 1;
}

.quote-line {
  width: 180px;
  height: 14px;
  border-radius: 999px;
  background: var(--light-blue);
  margin-bottom: 42px;
}

.quote-slide-box p {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(20px,2.6vw,38px);
  line-height: 1.4;
  letter-spacing: -.015em;
}

/* SERVICES */
.services-section,
.process-section,
.why-section,
.faq-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-image { min-height: 190px; }

.service-card h3 {
  margin: 24px 24px 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy-dark);
}

.service-card p {
  margin: 0 24px 28px;
  color: var(--muted);
}

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

.service-area-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 38px;
}

.service-area-text {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.service-area-text h3 {
  margin: 0 0 12px;
  color: var(--navy-dark);
  font-size: 28px;
  line-height: 1.15;
}

.service-area-text p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-area-image {
  min-height: 360px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

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

.city-grid a {
  display: block;
  padding: 18px;
  border-radius: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--navy-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(8,47,99,.06);
  transition: all .2s ease;
}

.city-grid a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* CITY TICKER */
.city-ticker-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.city-ticker-track {
  display: flex;
  width: max-content;
  animation: cityTickerMove 90s linear infinite;
}

.city-ticker-list {
  display: flex;
  align-items: center;
  gap: 90px;
  padding-right: 90px;
  white-space: nowrap;
}

.city-ticker-list span {
  color: var(--navy-dark);
  font-size: clamp(18px,2vw,28px);
  font-weight: 900;
  letter-spacing: -.02em;
}

@keyframes cityTickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.city-ticker-section:hover .city-ticker-track {
  animation-play-state: paused;
}

/* WHO / TRUST */
.who-section { background: #fff; }

.who-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.who-grid div {
  padding: 18px;
  border-radius: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--navy-dark);
}

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

.trust-card,
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.trust-card span,
.process-card span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.trust-card h3,
.process-card h3 {
  margin: 12px 0 10px;
  color: var(--navy-dark);
  font-size: 23px;
  line-height: 1.15;
}

.trust-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
}

/* DARK SECTION */
.dark-section {
  background:
    linear-gradient(rgba(5,27,61,.96), rgba(5,27,61,.96)),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}

.dark-section h2,
.dark-section p {
  color: #fff;
}

.case-grid div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-weight: 900;
  color: #fff;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

/* IMAGE BREAK */
.image-break {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,27,61,.70);
}

.image-break-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 920px;
}

.image-break-content h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  max-width: 900px;
}

/* FAQ */
.faq-container { max-width: 960px; }

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8,47,99,.08);
}

.faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 20px 24px;
  color: var(--navy-dark);
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--blue);
}

.faq-item.open button::after { content: "−"; }

.faq-item div {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open div { display: block; }

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* CONTACT */
.contact-section {
  padding: 84px 0;
  background: var(--light);
}

.contact-box {
  background:
    linear-gradient(rgba(5,27,61,.95), rgba(5,27,61,.95)),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 32px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-box h2,
.contact-box p {
  color: #fff;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a,
.contact-info span {
  display: block;
  background: rgba(255,255,255,.10);
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 900;
  color: #fff;
  word-break: break-word;
}

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-inner p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

.mobile-sticky-case-btn { display: none; }

/* TABLET */
@media (max-width: 980px) {
  .mobile-menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

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

  .main-nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin: 12px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 58px 0 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

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

  .two-column,
  .contact-box,
  .service-area-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* MOBILE */
@media (max-width: 768px) {
  body { padding-bottom: 86px; }

  .hero-actions { display: none !important; }

  .site-logo {
    height: 52px;
  }

  .header-inner {
    min-height: 78px;
  }

  .main-nav {
    top: 78px;
  }

  .hero {
    min-height: 470px;
  }

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

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-badges {
    margin-top: 26px;
  }

  .mobile-sticky-case-btn {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    display: block;
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
  }
}

/* SMALL MOBILE */
@media (max-width: 620px) {
  .container {
    width: min(100% - 26px,1180px);
  }

  .site-logo {
    height: 48px;
  }

  .hero {
    min-height: 455px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .photo-strip,
  .service-grid,
  .process-grid,
  .trust-grid,
  .case-grid,
  .who-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    min-height: 210px;
  }

  .image-slider,
  .service-area-image {
    min-height: 360px;
  }

  .contact-box {
    padding: 30px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .city-ticker-list {
    gap: 54px;
    padding-right: 54px;
  }

  .city-ticker-list span {
    font-size: 20px;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  height: 58px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy-dark);
  white-space: nowrap;
}

.logo-text strong {
  color: var(--blue);
}

.image-break {
  min-height: 260px;
}

.image-break-content h2 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .site-logo {
    height: 46px;
  }

  .logo-text {
    font-size: 19px;
  }
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-card {
  min-height: 230px;
  overflow: hidden;
}

.image-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-slide {
  background: none;
}




.service-image {
  height: 260px;
  min-height: 260px;
  width: 100%;
  overflow: hidden;
  background: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}


.service-area-image {
  min-height: 360px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: none;
}

.service-area-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-strip {
  align-items: stretch;
}

.photo-card {
  height: 230px;
  min-height: 230px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile: force all photo-strip images to same height */
@media (max-width: 620px) {
  .photo-card {
    height: 220px;
    min-height: 220px;
  }
}