/* On Duty Plumbing — themed from light-blue water logo */
:root {
  --blue-royal: #1B4FA3;
  --blue-dark: #0F2D5C;
  --blue-water: #4DB8E8;
  --blue-light: #A8D8F0;
  --blue-bg: #B8E4F5;
  --blue-pool: #6EC4E8;
  --orange: #F07820;
  --orange-dark: #D96510;
  --white: #FFFFFF;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --shadow: 0 8px 32px rgba(15, 45, 92, 0.18);
  --radius: 14px;
  --font: 'Montserrat', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--blue-bg);
}

.site-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(780px, 90vw);
  height: min(780px, 90vw);
  transform: translate(-50%, -50%);
  background: url('assets/ODP.png?v=2') center / contain no-repeat;
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: transparent;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-banner,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.contact-banner {
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.contact-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 0.55rem 0;
}

.contact-banner-btn {
  appearance: none;
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--white);
  border-radius: 999px;
  padding: 0.4rem 1.15rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.contact-banner-btn:hover,
.contact-banner-btn.active {
  background: var(--blue-royal);
  color: var(--white);
  border-color: var(--blue-dark);
}

.contact-banner-phone {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.contact-banner-phone:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

main {
  flex: 1;
  min-height: 0;
  position: relative;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange-dark); }
.btn-outline { background: var(--white); color: var(--blue-royal); border-color: var(--blue-royal); }
.btn-outline:hover { background: var(--blue-royal); color: var(--white); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-full { width: 100%; text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 2px 16px rgba(15, 45, 92, 0.1);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.5rem 0;
  gap: 1rem 1.5rem;
  position: relative;
}

.logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 96px;
  width: auto;
  max-width: min(420px, 62vw);
  object-fit: contain;
  display: block;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

.nav-end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-symbol-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  background: var(--blue-bg);
  border: 2px solid var(--orange);
  border-radius: 10px;
  line-height: 0;
}

.nav-symbol {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.tab-btn {
  appearance: none;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-dark);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.tab-btn:hover {
  color: var(--orange);
  background: rgba(240, 120, 32, 0.08);
}
.tab-btn.active {
  background: var(--blue-royal);
  color: var(--white);
  border-color: var(--blue-dark);
}
.tab-btn-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange-dark);
}
.tab-btn-cta:hover,
.tab-btn-cta.active {
  background: var(--orange-dark);
  color: var(--white);
  border-color: var(--orange-dark);
}
.tab-btn-featured {
  background: var(--blue-royal);
  color: var(--white);
  border-color: var(--blue-dark);
}
.tab-btn-featured:hover,
.tab-btn-featured.active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* Tab panels */
.tab-panel {
  display: none;
  min-height: calc(100vh - 220px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tab-panel.active { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--blue-royal);
  border-radius: 2px;
}

/* Hero — water background inspired by logo */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,255,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(255,255,255,0.25) 0%, transparent 55%),
    linear-gradient(175deg, rgba(110,196,232,0.55) 0%, rgba(77,184,232,0.55) 40%, rgba(168,216,240,0.55) 100%);
  padding: 3rem 0 4rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.25;
}
.hero::before {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, var(--blue-royal), transparent 70%);
}
.hero::after {
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: -40px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--white);
  color: var(--blue-royal);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--blue-royal);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 .highlight { color: var(--orange); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--blue-dark);
  max-width: 460px;
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  max-width: 460px;
}
.hero-highlights li {
  padding-left: 1.35rem;
  position: relative;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-dark);
}
.hero-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mascot {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(15, 45, 92, 0.18));
}

/* Sections */
section { padding: 4.5rem 0; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* Services */
.services {
  background: rgba(255, 255, 255, 0.82);
  border-top: 4px solid var(--blue-royal);
}

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

.service-card {
  background: linear-gradient(160deg, var(--blue-bg) 0%, var(--white) 100%);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.service-icon { display: none; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-royal);
  margin-bottom: 0.5rem;
}
.service-card p { color: var(--gray-600); font-size: 0.95rem; }

.service-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--blue-royal) 0%, var(--blue-dark) 100%);
  border-color: var(--blue-dark);
  color: var(--white);
}
.service-card-featured h3 { color: var(--white); margin-bottom: 0.35rem; }
.service-card-featured p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.service-card-featured:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

/* Video Consult */
.video-consult {
  background: rgba(184, 228, 245, 0.65);
}

.section-eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.video-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.video-screen {
  background: var(--blue-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--blue-royal);
}
.video-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.video-live {
  color: #7CFC7C;
  font-weight: 800;
}
.video-screen-body {
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
  color: var(--blue-light);
}
.video-plumber-thumb {
  width: min(340px, 100%);
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}
.video-screen-body p {
  font-size: 0.95rem;
  font-weight: 600;
}

.consult-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.consult-reason-card {
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s, border-color 0.15s;
}
.consult-reason-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}
.consult-reason-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-royal);
  margin-bottom: 0.5rem;
}
.consult-reason-card p { color: var(--gray-600); font-size: 0.92rem; }

.consult-steps {
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}
.consult-steps-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}
.steps-list {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.25rem;
  color: var(--gray-600);
}
.steps-list li { font-size: 0.98rem; }
.steps-list strong { color: var(--blue-royal); }

.consult-request {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.consult-request-info p { color: var(--gray-600); margin-bottom: 1.25rem; }
.consult-perks {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.consult-perks li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 700;
  color: var(--blue-dark);
}
.consult-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.consult-form,
.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue-light);
  box-shadow: var(--shadow);
}
.consult-form label,
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-dark);
}
.consult-form input,
.consult-form select,
.consult-form textarea,
.contact-form input,
.contact-form textarea {
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--blue-light);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--blue-bg);
}
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

/* About */
.about {
  background: rgba(184, 228, 245, 0.65);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}
.about-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-mascot {
  width: min(280px, 70%);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(15, 45, 92, 0.15));
}
.about-content {
  display: grid;
  gap: 2rem;
}
.about-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.about-list li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 700;
  color: var(--blue-dark);
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.about-text p { color: var(--gray-600); margin-bottom: 1.25rem; font-size: 1.05rem; }
.about-text p strong { color: var(--blue-royal); }

/* Helpful Videos */
.helpful-videos {
  background: rgba(184, 228, 245, 0.65);
}

.coming-soon {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border: 3px solid var(--blue-royal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.coming-soon .section-title { margin-bottom: 1rem; }
.coming-soon-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.coming-soon-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* Contact */
.contact {
  background: rgba(184, 228, 245, 0.65);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info p { color: var(--gray-600); margin-bottom: 1.25rem; }
.contact-details { list-style: none; display: grid; gap: 0.5rem; }
.contact-details a { color: var(--blue-royal); font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: var(--blue-light);
  padding: 2.5rem 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.footer-tagline { font-size: 0.95rem; font-weight: 600; }
.footer-copy { font-size: 0.85rem; opacity: 0.7; }

/* Responsive */
@media (max-width: 1024px) {
  .tab-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }

  .logo-img { height: 72px; }

  .nav-symbol { height: 38px; }
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    grid-column: auto;
    justify-self: stretch;
  }

  .nav-end {
    grid-column: auto;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    border-bottom: 4px solid var(--orange);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }

  .nav-links {
    gap: 0.5rem;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
    border-radius: var(--radius);
  }

  .logo-img { height: 60px; max-width: min(280px, 70vw); }

  .hero-inner,
  .about-inner,
  .contact-inner,
  .video-intro,
  .consult-request {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .video-intro-visual { order: -1; }

  .hero-brand { order: -1; }
  .hero-mascot { max-width: min(320px, 85%); margin-inline: auto; }

  .about-visual { order: -1; }

  .hero { padding: 2rem 0 3rem; }
  section { padding: 3rem 0; }
}
