/* =====================================================================
   WASH N GO – DEMO B "COASTAL"
   Clean Light Professional • Plus Jakarta Sans + Inter • Blue + Coral
   ===================================================================== */

:root {
  --b-bg:        #ffffff;
  --b-bg-1:      #f8fafc;
  --b-bg-2:      #f1f5f9;
  --b-blue:      #0ea5e9;
  --b-blue-dk:   #0284c7;
  --b-blue-lt:   #e0f2fe;
  --b-blue-bg:   #f0f9ff;
  --b-coral:     #f97316;
  --b-coral-dk:  #ea6f0e;
  --b-text:      #0f172a;
  --b-muted:     #64748b;
  --b-border:    #e2e8f0;
  --b-shadow:    0 4px 24px rgba(15,23,42,0.07);
  --b-shadow-lg: 0 20px 60px rgba(15,23,42,0.14);
  --b-r:         16px;
  --b-r-sm:      10px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--b-bg); color: var(--b-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }
.b-container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Header ── */
.b-header {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--b-border);
  box-shadow: 0 1px 0 rgba(15,23,42,0.05);
}
.b-header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 72px; display: flex; align-items: center; gap: 20px;
}
.b-logo-img { height: 42px; }
.b-header-mid { flex: 1; display: flex; justify-content: center; }
.b-area-tag {
  font-size: 0.78rem; color: var(--b-muted);
  letter-spacing: 0.03em; font-weight: 500;
}
.b-header-right { display: flex; align-items: center; gap: 16px; }
.b-header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.95rem; font-weight: 600; color: var(--b-text);
  text-decoration: none; transition: color 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.b-header-phone:hover { color: var(--b-blue); }
.b-header-phone svg { color: var(--b-blue); flex-shrink: 0; }
.b-header-phone .b-phone-text { /* text node wrapper for hide on xs */ }
.b-btn-header {
  padding: 10px 22px;
  background: var(--b-coral); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 700;
  text-decoration: none; border-radius: 50px;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.b-btn-header:hover {
  background: var(--b-coral-dk); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

/* ── Hero ── */
.b-hero {
  min-height: 88vh; padding: 80px 0;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--b-blue-bg) 0%, var(--b-bg) 60%);
  position: relative; overflow: hidden;
}
/* mobile override below */
.b-hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.b-hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.b-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--b-blue-lt); color: var(--b-blue-dk);
  font-size: 0.78rem; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 22px; letter-spacing: 0.04em;
}
.b-hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--b-coral); flex-shrink: 0;
  animation: b-pulse 2s ease-in-out infinite;
}
@keyframes b-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}
.b-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.12; font-weight: 800; color: var(--b-text);
  margin-bottom: 20px;
}
.b-hero h1 span { color: var(--b-blue); }
.b-hero-sub {
  font-size: 1.1rem; color: var(--b-muted);
  line-height: 1.75; margin-bottom: 38px; max-width: 480px;
}
.b-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.b-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 34px;
  background: var(--b-coral); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
  transition: all 0.25s;
}
.b-btn-primary:hover {
  background: var(--b-coral-dk); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}
.b-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 34px;
  background: transparent; color: var(--b-blue);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border-radius: 50px;
  border: 2px solid var(--b-blue);
  transition: all 0.25s;
}
.b-btn-outline:hover {
  background: var(--b-blue); color: #fff;
}
.b-hero-social-proof { margin-top: 4px; }
.b-google-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--b-bg); border: 1.5px solid var(--b-border);
  border-radius: 100px; padding: 8px 18px 8px 8px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.08);
}
.b-google-g {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 1rem;
  background: conic-gradient(#4285F4 0deg 90deg, #EA4335 90deg 180deg, #FBBC05 180deg 270deg, #34A853 270deg 360deg);
  color: #fff;
}
.b-google-info { display: flex; flex-direction: column; gap: 1px; }
.b-google-stars { display: flex; align-items: center; gap: 5px; }
.b-stars { color: #f59e0b; font-size: 0.88rem; letter-spacing: 1px; line-height: 1; }
.b-google-count { font-size: 0.82rem; font-weight: 700; color: var(--b-text); }
.b-google-label { font-size: 0.72rem; color: var(--b-muted); }

/* ── Hero image side ── */
.b-hero-image { position: relative; }
.b-hero-img-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--b-shadow-lg);
}
.b-hero-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.b-hero-badge-float {
  position: absolute; bottom: 28px; left: -24px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(15,23,42,0.12);
  display: flex; align-items: center; gap: 12px;
}
.b-badge-float-icon { font-size: 1.8rem; line-height: 1; }
.b-badge-float-text strong {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; color: var(--b-text);
}
.b-badge-float-text span { font-size: 0.8rem; color: var(--b-muted); }
.b-hero-badge-float2 {
  position: absolute; top: 28px; right: -24px;
  background: var(--b-coral); color: #fff;
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(249,115,22,0.3);
  text-align: center;
}
.b-hero-badge-float2 strong {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
}
.b-hero-badge-float2 span { font-size: 0.75rem; opacity: 0.9; }

/* ── Trust strip ── */
.b-trust {
  background: var(--b-bg-1); border-top: 1px solid var(--b-border);
  border-bottom: 1px solid var(--b-border); padding: 32px 0;
}
.b-trust-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-around; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.b-trust-item { display: flex; align-items: center; gap: 12px; }
.b-trust-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--b-blue-lt); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.b-trust-item strong {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--b-text);
}
.b-trust-item span { font-size: 0.8rem; color: var(--b-muted); }

/* ── Section shared ── */
.b-section { padding: 100px 0; }
.b-section-alt { background: var(--b-bg-1); }
.b-section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--b-blue); margin-bottom: 10px;
}
.b-section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800;
  color: var(--b-text); margin-bottom: 14px; line-height: 1.2;
}
.b-section-sub { color: var(--b-muted); max-width: 500px; line-height: 1.75; font-size: 1.02rem; }
.b-section-head { text-align: center; margin-bottom: 64px; }
.b-section-head .b-section-sub { margin: 0 auto; }

/* ── Services ── */
.b-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.b-service-card {
  background: var(--b-bg); border: 1px solid var(--b-border);
  border-radius: var(--b-r); padding: 36px 28px;
  box-shadow: var(--b-shadow); transition: all 0.3s;
}
.b-service-card:hover {
  border-color: var(--b-blue); transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(14,165,233,0.12);
}
.b-service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--b-blue-lt); font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.b-service-card h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--b-text);
  margin-bottom: 10px;
}
.b-service-card p { color: var(--b-muted); font-size: 0.93rem; line-height: 1.7; }
.b-service-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 0.88rem; font-weight: 600;
  color: var(--b-blue); text-decoration: none; transition: gap 0.2s;
}
.b-service-link:hover { gap: 9px; }

/* ── Slider ── */
.b-slider-wrap {
  max-width: 920px; margin: 0 auto;
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/9; box-shadow: var(--b-shadow-lg);
}
.b-slider-wrap .slider-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.b-slider-wrap .slider-after { clip-path: inset(0 0 0 50%); }
.b-slider-wrap .slider-handle {
  position: absolute; top: 0; left: 50%; height: 100%;
  width: 3px; background: #fff; transform: translateX(-50%);
  z-index: 10; pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.b-slider-wrap .slider-handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--b-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.b-slider-wrap .slider-ctrl {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 20; -webkit-appearance: none;
}
.b-slider-wrap .slider-labels {
  position: absolute; bottom: 14px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 16px;
  z-index: 15; pointer-events: none;
}
.b-slider-wrap .slider-label {
  background: rgba(15,23,42,0.7); color: #fff;
  font-size: 0.78rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 6px;
}

/* ── CTA Banner ── */
.b-cta-banner { background: var(--b-blue); padding: 70px 0; }
.b-cta-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.b-cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff; font-weight: 800;
}
.b-cta-banner p { color: rgba(255,255,255,0.8); margin-top: 6px; font-size: 1.05rem; }
.b-btn-cta-banner {
  padding: 17px 42px; background: #fff; color: var(--b-blue);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800;
  text-decoration: none; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15); transition: all 0.22s;
}
.b-btn-cta-banner:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.b-btn-cta-phone {
  padding: 17px 42px; background: var(--b-coral); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800;
  text-decoration: none; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 6px 24px rgba(249,115,22,0.35); transition: all 0.22s;
}
.b-btn-cta-phone:hover { background: var(--b-coral-dk); transform: translateY(-2px); }

/* ── Quote Form ── */
.b-quote-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--b-bg); border: 1px solid var(--b-border);
  border-radius: 24px; padding: 56px 48px;
  box-shadow: var(--b-shadow-lg);
}
.b-form-note {
  text-align: center; color: var(--b-muted); font-size: 0.9rem;
  margin-top: -32px; margin-bottom: 40px;
}
.b-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.b-form-group { margin-bottom: 16px; }
.b-form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--b-text); margin-bottom: 7px;
}
.b-form-group input,
.b-form-group select,
.b-form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--b-bg-1); border: 1.5px solid var(--b-border);
  border-radius: var(--b-r-sm); color: var(--b-text);
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.b-form-group input:focus,
.b-form-group select:focus,
.b-form-group textarea:focus {
  border-color: var(--b-blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
  background: var(--b-bg);
}
.b-form-group textarea { resize: vertical; min-height: 100px; }
.b-btn-submit {
  width: 100%; padding: 17px;
  background: var(--b-coral); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.02rem; font-weight: 800;
  border: none; border-radius: 50px; cursor: pointer;
  transition: all 0.25s; margin-top: 8px;
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
}
.b-btn-submit:hover {
  background: var(--b-coral-dk); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}

/* ── Footer ── */
.b-footer { background: var(--b-text); }
.b-footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.b-footer-top {
  padding: 64px 0 44px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px;
}
.b-footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(10); }
.b-footer-brand p { color: #94a3b8; font-size: 0.9rem; line-height: 1.75; }
.b-footer-phone {
  display: inline-block; margin-top: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--b-coral); text-decoration: none;
}
.b-footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
}
.b-footer-col ul { list-style: none; }
.b-footer-col li { color: #94a3b8; font-size: 0.9rem; padding: 3px 0; }
.b-footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.b-footer-bottom p { color: #64748b; font-size: 0.85rem; }
.b-footer-bottom a { color: var(--b-coral); text-decoration: none; }

/* ── Reviews Section ── */
.b-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 36px;
}
.b-review-card {
  background: var(--b-bg); border: 1.5px solid var(--b-border);
  border-radius: var(--b-r); padding: 28px 24px;
  box-shadow: var(--b-shadow); transition: all 0.28s;
}
.b-review-card:hover {
  border-color: var(--b-blue); transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(14,165,233,0.1);
}
.b-review-card-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.b-review-quote {
  color: var(--b-muted); font-size: 0.95rem; line-height: 1.72;
  margin-bottom: 20px; font-style: italic;
}
.b-review-meta { display: flex; align-items: center; gap: 10px; }
.b-review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--b-blue-lt);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--b-blue);
}
.b-review-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--b-text); }
.b-review-author span { font-size: 0.75rem; color: var(--b-muted); }
.b-reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.b-reviews-badge-lg {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--b-bg-1); border: 1.5px solid var(--b-border);
  border-radius: 14px; padding: 14px 20px;
}
.b-reviews-badge-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; }
.b-reviews-badge-text strong {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--b-text);
}
.b-reviews-badge-text span { font-size: 0.8rem; color: var(--b-muted); }
.b-reviews-footer { text-align: center; margin-top: 4px; }
.b-reviews-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700;
  color: var(--b-blue); text-decoration: none;
  border: 2px solid var(--b-blue); padding: 12px 30px; border-radius: 50px;
  transition: all 0.22s;
}
.b-reviews-cta:hover { background: var(--b-blue); color: #fff; }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
/* NOTE: no translateX variants — they cause horizontal overflow on mobile */
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .b-hero-inner { grid-template-columns: 1fr; }
  .b-hero-image { display: none; }
  .b-hero { min-height: auto; padding: 60px 0 52px; }
}
@media (max-width: 768px) {
  /* Header: hide center tag so logo + phone + CTA fit */
  .b-area-tag { display: none; }
  .b-header-inner { gap: 12px; padding: 0 18px; }

  /* Hero: flex column so we can reorder social proof to top */
  .b-hero { padding: 52px 0 44px; }
  .b-hero-copy {
    display: flex;
    flex-direction: column;
  }
  .b-hero-social-proof {
    order: -1;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .b-hero-badge  { order: 0; }
  .b-hero h1     { order: 1; }
  .b-hero-sub    { order: 2; }
  .b-hero-ctas   { order: 3; }
  .b-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .b-hero-ctas { flex-direction: column; align-items: flex-start; }
  .b-hero-badge-float, .b-hero-badge-float2 { display: none; }

  /* Trust strip: wrap into 2-col grid */
  .b-trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  /* Sections */
  .b-section { padding: 72px 0; }

  /* Form */
  .b-form-row { grid-template-columns: 1fr; }
  .b-quote-wrap { padding: 36px 22px; }

  /* CTA banner */
  .b-cta-inner { flex-direction: column; text-align: center; }

  /* Footer */
  .b-footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  /* Header: drop phone number text, keep icon + CTA only */
  .b-header-phone { font-size: 0; gap: 0; }
  .b-header-phone svg { width: 20px; height: 20px; color: var(--b-blue); }
  .b-btn-header { padding: 9px 16px; font-size: 0.82rem; }
  .b-logo-img { height: 36px; }

  /* Hero */
  .b-hero { padding: 44px 0 36px; }
  .b-hero h1 { font-size: 1.95rem; }
  .b-hero-sub { font-size: 1rem; }
  .b-hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .b-btn-primary, .b-btn-outline { width: 100%; justify-content: center; text-align: center; }

  /* Trust: single column on very small screens */
  .b-trust-inner { grid-template-columns: 1fr; gap: 16px; }
  .b-trust-inner .b-trust-item:last-child { display: none; } /* trim 5th item */

  /* Services */
  .b-services-grid { grid-template-columns: 1fr; }

  /* CTA banner buttons */
  .b-cta-inner div[style] { flex-direction: column; }

  /* Form */
  .b-quote-wrap { padding: 28px 18px; }

  /* Section spacing */
  .b-section { padding: 56px 0; }
}
