/* ═══════════════════════════════════════════════════════════════
   POW WASH — GLOBAL SITE THEME
   Dark base: #111318 / #0c0e16 / #15181f
   Purple:    #7c3aed / #a78bfa
   Pink:      #ec4899 / #f9a8d4
   ═══════════════════════════════════════════════════════════════ */

/* ── Body ─────────────────────────────────────────────────────── */
body { background: #111318 !important; color: #94a3b8; }

/* ── Navbar ───────────────────────────────────────────────────── */
.custom-navbar {
  background: rgba(8, 8, 16, 0.88) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  z-index: 1030 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 52px;
  overflow: visible !important;
}

/* Logo — sits slightly below the bar for a clean overlap */
.custom-navbar .navbar-brand {
  overflow: visible !important;
  position: relative;
  z-index: 1060;
  align-self: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1;
}

.nav-logo {
  height: clamp(52px, 9vw, 68px) !important;
  width: auto !important;
  display: block;
  transform: translateY(10px) !important;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7)) !important;
  transition: filter 0.2s !important;
  position: relative;
  z-index: 1060;
}

.nav-logo:hover {
  filter: drop-shadow(0 6px 20px rgba(124, 58, 237, 0.6)) !important;
}

/* Contact links in navbar */
.nav-contact-link {
  color: rgba(203, 213, 225, 0.75) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: color 0.2s;
}
.nav-contact-link:hover { color: #f9a8d4 !important; }
.nav-contact-link .fas { font-size: 0.72rem; opacity: 0.7; }
.nav-contact-text { line-height: 1; }

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 6px 2px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.hb-line {
  display: block;
  height: 2px;
  width: 22px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: background 0.2s, transform 0.25s, opacity 0.2s;
}
.hb-line--short { width: 14px; }
.nav-hamburger:hover .hb-line { background: #a78bfa; }
.nav-hamburger:hover .hb-line--short { width: 22px; }

/* ── Nav drawer (offcanvas-end) ───────────────────────────────── */
.nav-drawer {
  background: #0d0f1a !important;
  border-left: 1px solid rgba(255, 255, 255, 0.07) !important;
  width: min(320px, 88vw) !important;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6) !important;
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-drawer__close {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #f1f5f9 !important;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.nav-drawer__close:hover {
  background: rgba(236, 72, 153, 0.2) !important;
  color: #f9a8d4 !important;
  border-color: rgba(236, 72, 153, 0.35) !important;
}

.nav-drawer__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  overflow-y: auto;
}

/* Nav link list */
.nav-drawer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.78rem 0.9rem;
  border-radius: 0.6rem;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 0.94rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nav-drawer__link:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.22);
  color: #f1f5f9 !important;
}

.nav-drawer__icon {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.45rem;
  display: flex; align-items: center; justify-content: center;
  color: #a78bfa;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.nav-drawer__link:hover .nav-drawer__icon {
  background: rgba(124, 58, 237, 0.22);
  color: #c4b5fd;
}

/* Custom PNG icons — tinted to match the purple icon colour */
.nav-custom-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  /* Bold purple tint — contrast(2) sharpens strokes for weight */
  filter: invert(75%) sepia(52%) saturate(700%) hue-rotate(208deg) brightness(103%) contrast(200%);
  transition: filter 0.18s;
}
.nav-drawer__link:hover .nav-custom-icon {
  filter: invert(85%) sepia(55%) saturate(650%) hue-rotate(200deg) brightness(112%) contrast(200%);
}

.nav-drawer__label { flex: 1; }

.nav-drawer__arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.18s, transform 0.18s;
}
.nav-drawer__link:hover .nav-drawer__arrow {
  color: #a78bfa;
  transform: translateX(3px);
}

/* CTA in drawer */
.nav-drawer__cta-wrap { display: flex; }
.nav-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 0.65rem;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.nav-drawer__cta:hover {
  opacity: 0.9;
  box-shadow: 0 6px 24px rgba(236, 72, 153, 0.45);
  color: #fff !important;
}

/* Contact rows in drawer */
.nav-drawer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-drawer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.nav-drawer__contact-row:hover { color: #a78bfa !important; }
.nav-drawer__contact-icon {
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.4rem;
  display: flex; align-items: center; justify-content: center;
  color: #7c3aed;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ── Service hero overlay ─────────────────────────────────────── */
section.min-vh-60 { position: relative; }
section.min-vh-60::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,6,18,0.80) 0%, rgba(6,6,18,0.45) 60%, rgba(6,6,18,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}
section.min-vh-60 .container.position-relative { z-index: 2; }

/* ── Service hero heading & text ──────────────────────────────── */
.s-main-heading, .hero-title-fs { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.lead.responsive-txt { color: rgba(255,255,255,0.88) !important; }

/* ── Service hero CTA button ──────────────────────────────────── */
.btn-hero.btn-danger,
a.btn-hero {
  background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 0.6rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.btn-hero.btn-danger:hover,
a.btn-hero:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(236, 72, 153, 0.5) !important;
  color: #fff !important;
}

/* ── Google badge (trust bars) ────────────────────────────────── */
.pw-google-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none !important;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.pw-google-badge:hover { opacity: 1; }

.pw-google-img {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
}

.pw-google-stars {
  color: #fbbf24;
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* Service page bar logo sizing */
.review-bar-logo {
  max-height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.2s;
}
.review-bar-logo:hover { opacity: 1; }

/* Fully Insured badge */
.pw-insured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border: 1.5px solid rgba(111,66,193,0.6);
  border-radius: 999px;
  color: #c9b8f0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pw-insured-badge .fas { color: #6f42c1; font-size: 0.85em; }

/* ── Service page trust / review bar ─────────────────────────── */
.review-section {
  background: #0c0e16 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.review-section .h5 { color: #94a3b8 !important; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.review-section .badge.bg-secondary {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #cbd5e1 !important;
  font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s;
}
.review-section .badge.bg-secondary:hover { background: rgba(236,72,153,0.18) !important; color: #f9a8d4 !important; }
.review-section img.img-fluid {
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.2s;
  max-height: 52px; width: auto;
}
.review-section img.img-fluid:hover { opacity: 1; }

/* ── Global section headings & text ───────────────────────────── */
.s-heading, .section-heading, h2.s-heading, h2.section-heading { color: #f1f5f9 !important; }
.s-copy { color: #94a3b8 !important; line-height: 1.75; }
.s-copy a { color: #a78bfa !important; }
.s-copy a:hover { color: #f9a8d4 !important; }
h1, h2, h3 { color: #f1f5f9; }

/* ── Buttons (global) ─────────────────────────────────────────── */
.btn-danger {
  background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
  border: none !important;
  color: #fff !important;
}
.btn-danger:hover { opacity: 0.9; color: #fff !important; }
.btn-outline-light {
  border-color: rgba(255,255,255,0.25) !important;
  color: #cbd5e1 !important;
}
.btn-outline-light:hover {
  background: rgba(124,58,237,0.2) !important;
  border-color: rgba(167,139,250,0.5) !important;
  color: #fff !important;
}
.btn-secondary {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #cbd5e1 !important;
}
.btn-secondary:hover { background: rgba(124,58,237,0.2) !important; color: #fff !important; }

/* ── Service info cards (#our-work) ──────────────────────────── */
#our-work { background: #0c0e16 !important; }
#our-work .card {
  background: #15181f !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-top: 3px solid #7c3aed !important;
}
#our-work .card:nth-child(even) { border-top-color: #ec4899 !important; }
#our-work .card-title { color: #f1f5f9 !important; }
#our-work .card-text { color: #94a3b8 !important; }
#our-work .card .full-text { color: #94a3b8 !important; }
#our-work .toggle-link { color: #a78bfa !important; list-style: none; }
#our-work .toggle-link::-webkit-details-marker { display: none; }
#our-work h2.text-white { color: #f1f5f9 !important; }

/* ── Why Us ───────────────────────────────────────────────────── */
#why-us { background: #15181f !important; }
#why-us .fa-check-circle { color: #7c3aed !important; }
#why-us h2, #why-us h3 { color: #f1f5f9 !important; }
#why-us .s-copy { color: #94a3b8 !important; }
#why-us .gutter-scroll { scrollbar-color: rgba(124,58,237,0.35) transparent !important; }

/* ── Reviews (shared reviews.html) ───────────────────────────── */
#reviews-alt-gradient { background: #111318 !important; border-top: 1px solid rgba(255,255,255,0.05); }
#reviews-alt-gradient .card.bg-dark {
  background: #15181f !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
}
#reviews-alt-gradient .card.bg-light {
  background: #1a1d27 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
#reviews-alt-gradient .card.bg-light .card-text { color: #94a3b8 !important; }
#reviews-alt-gradient .card.bg-light small { color: #64748b !important; }
#reviews-alt-gradient .card.bg-light h3 { color: #f1f5f9 !important; }
#reviews-alt-gradient .card.bg-dark small { color: #64748b !important; }
#reviews-alt-gradient .text-warning { color: #fbbf24 !important; }
#reviews-alt-gradient h2 { color: #f1f5f9 !important; }

/* ── Step-by-step ─────────────────────────────────────────────── */
#gutter-steps { background: #0c0e16 !important; }
.gs-summary {
  background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
  color: #fff !important;
  box-shadow: 0 3px 14px rgba(124,58,237,0.35);
}
.gs-summary:hover { opacity: 0.92 !important; }
.gs-content { border-color: rgba(124,58,237,0.3) !important; background: rgba(124,58,237,0.05) !important; }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq { background: #0c0e16 !important; }
#faq h2 { color: #f1f5f9 !important; }
.accordion-item { background: transparent !important; }
.accordion-button {
  background: #15181f !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  font-size: 0.93rem;
}
.accordion-button:not(.collapsed) {
  background: #1e1530 !important;
  color: #a78bfa !important;
  box-shadow: none !important;
}
.accordion-button::after { filter: invert(1) brightness(0.7); }
.accordion-button:not(.collapsed)::after { filter: invert(0.6) sepia(1) saturate(3) hue-rotate(230deg); }
.accordion-collapse .accordion-body {
  background: #111318 !important;
  color: #94a3b8 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.accordion-body a { color: #a78bfa !important; }
.accordion-body a:hover { color: #f9a8d4 !important; }

/* ── Fun Facts ────────────────────────────────────────────────── */
#fun-facts { background: #15181f !important; border-top: 1px solid rgba(255,255,255,0.05); }
#fun-facts h2.section-heading { color: #f1f5f9 !important; }
#fun-facts .s-copy { color: #94a3b8 !important; }
#fun-facts h3 { color: #f1f5f9 !important; }
#fun-facts .fact-icon { color: #a78bfa !important; }
#fun-facts .scroll-btn { background: rgba(124,58,237,0.25) !important; color: #a78bfa !important; }
#fun-facts .scroll-btn:hover { background: rgba(236,72,153,0.3) !important; color: #f9a8d4 !important; }
#fun-facts .card.card-body { background: #1a1d27 !important; border: 1px solid rgba(255,255,255,0.07) !important; color: #94a3b8 !important; }

/* ── Video sections ───────────────────────────────────────────── */
[id$="-video"],
#video-text { background: #111318 !important; }
[id$="-video"] h2,
#video-text h2 { color: #f1f5f9 !important; }
[id$="-video"] .s-copy,
#video-text .s-copy { color: #94a3b8 !important; }
[id$="-video"] hr,
#video-text hr { border-color: rgba(255,255,255,0.07) !important; }
[id$="-video"] .s-copy a,
#video-text .s-copy a { color: #a78bfa !important; text-underline-offset: 3px; }
[id$="-video"] .s-copy a:hover,
#video-text .s-copy a:hover { color: #f9a8d4 !important; }

/* ── Map section ──────────────────────────────────────────────── */
#map { border-top: 1px solid rgba(255,255,255,0.05); }

/* ── Contact form (global) ────────────────────────────────────── */
#contact { background: #0c0e16 !important; border-top: 1px solid rgba(255,255,255,0.06); }
#contact h2, #contact .section-heading { color: #f1f5f9 !important; }
#contact .form-control {
  background: #15181f !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #f1f5f9 !important;
  border-radius: 0.5rem;
}
#contact .form-control:focus {
  background: #1a1d27 !important;
  border-color: #ec4899 !important;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15) !important;
  color: #f1f5f9 !important;
}
#contact .form-control::placeholder { color: #475569 !important; }
#contact label { color: #94a3b8 !important; }
#contact .btn-primary, #contact button[type=submit] {
  background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
  border: none !important; font-weight: 700; padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
#contact .btn-primary:hover, #contact button[type=submit]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(236, 72, 153, 0.45) !important;
}
#contact .btn-secondary { background: rgba(255,255,255,0.06) !important; }
#contact .errors { color: #f9a8d4 !important; list-style: none; padding: 0; font-size: 0.82rem; }

/* ── Blog ─────────────────────────────────────────────────────── */
.blog-grid { background: transparent; }
.category-card {
  background: #15181f !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-top: 3px solid #7c3aed !important;
  border-radius: 0.875rem !important;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.category-card:hover { transform: translateY(-4px) !important; box-shadow: 0 14px 36px rgba(0,0,0,0.5) !important; border-top-color: #ec4899 !important; }
.category-card__title { color: #f1f5f9 !important; }
.category-card__body { color: #94a3b8 !important; padding: 1.25rem; }
.category-card__media img { transition: transform 0.3s; }
.category-card:hover .category-card__media img { transform: scale(1.04); }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: #0a0a10 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: #94a3b8 !important;
}
footer h5 { color: #f1f5f9 !important; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
footer a { color: #94a3b8 !important; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #a78bfa !important; }
footer p { color: #475569 !important; font-size: 0.85rem; }
footer .fas { color: #7c3aed !important; }

/* ── Inline-bg overrides (sections using style="" attributes) ─── */
/* Sections that hard-code #343a40 or similar in style attributes */
[style*="343a40"] { background: #15181f !important; }
[style*="6c757d"] { background: #0c0e16 !important; }

/* ── General card overrides ───────────────────────────────────── */
.card.bg-dark { background: #15181f !important; }
.card.bg-dark .card-title, .card.bg-dark h3 { color: #f1f5f9 !important; }
.card.bg-dark .card-text, .card.bg-dark p { color: #94a3b8 !important; }

/* ── Bootstrap bg overrides ───────────────────────────────────── */
.bg-dark { background: #111318 !important; }
.bg-secondary { background: rgba(255,255,255,0.06) !important; }
.bg-light { background: #15181f !important; }

/* ── Text utilities ───────────────────────────────────────────── */
.text-muted { color: #475569 !important; }
.text-white { color: #f1f5f9 !important; }
.text-light { color: #cbd5e1 !important; }

/* ── Form success panel ───────────────────────────────────────── */
.pw-form-success {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 3rem 2rem;
}
.pw-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 12px rgba(22,163,74,0.15);
}
.pw-success-icon .fas {
  font-size: 2.2rem;
  color: #fff;
}
.pw-form-success h3 {
  font-size: 1.75rem;
  color: #f1f5f9;
}
.pw-form-success p {
  color: #94a3b8;
}
