/* ═══════════════════════════════════════════════
   PLUMBING TEMPLATE — Beehive Plumbing DNA
   Trust-heavy, structured, professional, no-nonsense
   Navy + Yellow, heavy type, cards & badges
   ═══════════════════════════════════════════════ */

:root {
  --primary: #0E3E7B;
  --primary-dark: #092d5a;
  --accent: #F5DC57;
  --accent-hover: #e6cd42;
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6577;
  --text-light: #ffffff;
  --border: #dfe3ec;
  --shadow: 0 2px 12px rgba(14, 62, 123, 0.08);
  --shadow-lg: 0 8px 32px rgba(14, 62, 123, 0.12);
  --radius: 8px;
  --transition: 0.25s ease;
  --font-heading: 'Archivo Black', Impact, sans-serif;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

h1, h2, h3, h4,
.section-title,
.hero-headline,
.brand-text,
.step-title,
.why-title,
.service-card--visual .service-name {
  font-family: var(--font-heading);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 220, 87, 0.4);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ── Section Titles ── */
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════ */
.topbar {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-phone {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}
.topbar-phone:hover { text-decoration: underline; }

.topbar-divider {
  opacity: 0.3;
}

.topbar-hours {
  opacity: 0.85;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-location {
  opacity: 0.85;
}

.topbar-social {
  display: flex;
  gap: 10px;
}
.topbar-social a {
  color: var(--text-light);
  opacity: 0.7;
  transition: opacity var(--transition);
  text-decoration: none;
}
.topbar-social a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity var(--transition);
  padding: 8px 0;
}
.navbar-links a:hover { opacity: 1; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.navbar-phone:hover { text-decoration: underline; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .mobile-phone {
  color: var(--accent);
  font-weight: 700;
  border-bottom: none;
  padding-top: 16px;
}
.mobile-menu .mobile-cta {
  margin-top: 8px;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 62, 123, 0.82);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 220, 87, 0.15);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(245, 220, 87, 0.3);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 640px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   TRUST BAR — yellow accent strip
   ═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--accent);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-text {
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════
   SERVICES — card grid
   ═══════════════════════════════════════════════ */
.services-section {
  background: var(--bg);
}

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

/* ── Visual Service Cards ── */
.service-card--visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform var(--transition);
}

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

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 62, 123, 0.9) 0%,
    rgba(14, 62, 123, 0.3) 50%,
    transparent 100%
  );
}

.service-card__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}

.service-card--visual .service-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.service-card--visual .service-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 8px;
}

.service-card--visual .service-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════════════ */
.booking-section {
  background: var(--surface);
}

.booking-widget {
  max-width: 800px;
  margin: 0 auto;
  min-height: 400px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════════════ */
.area-section {
  background: var(--bg);
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 48px;
  margin-bottom: 64px;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.area-map {
  border-radius: var(--radius);
  overflow: hidden;
}

.area-map iframe {
  display: block;
}

.area-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.area-check {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.area-cta {
  text-align: center;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.area-cta-text {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════ */
.process-section {
  background: var(--surface);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step-connector {
  width: 60px;
  height: 3px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--border);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════ */
.why-section {
  background: var(--bg);
}

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

.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   ABOUT — split layout
   ═══════════════════════════════════════════════ */
.about-section {
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.about-badge {
  background: var(--bg);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
.reviews-section {
  background: var(--bg);
}

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

.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section {
  background: var(--surface);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-light);
}

.footer-license {
  font-size: 0.82rem;
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity var(--transition);
  text-decoration: none;
}
.footer-social a:hover { opacity: 1; }

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.8;
  text-decoration: none;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.emergency-note {
  color: var(--accent);
  font-weight: 700;
  opacity: 1 !important;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 900px
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    width: 3px;
    height: 40px;
    margin: 0 auto;
  }
  .step-connector::after {
    right: auto;
    left: -4px;
    top: auto;
    bottom: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--border);
  }

  .hero-headline {
    font-size: 2.4rem;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar-links,
  .navbar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-headline {
    font-size: 2rem;
  }

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

  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .about-text .section-title {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .area-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .area-map {
    min-height: 300px;
  }

  .area-grid {
    gap: 4px 24px;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .topbar-right {
    gap: 12px;
  }

  .hero-headline {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .trust-badge {
    justify-content: center;
  }

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

  .service-card--visual {
    aspect-ratio: 16 / 9;
  }

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

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

  .section-title {
    font-size: 1.55rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
