/* =============================================
   WashPro Theme — Single Clean Stylesheet
   Colors: Navy #1B2F5E | Teal #4A9898 | Orange #E85B25
   ============================================= */

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

:root {
  --navy: #1B2F5E;
  --teal: #4A9898;
  --teal-dark: #3a7878;
  --orange: #E85B25;
  --orange-dark: #c94d1e;
  --white: #ffffff;
  --light: #f4f6f8;
  --text: #2d3748;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --max: 1140px;
}

body { font-family: 'Segoe UI', -apple-system, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; width: 24px; height: 24px; display: inline-block; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 6px; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; border: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 14px; }

/* ── HEADER ── */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.header-inner { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; height: 68px; gap: 16px; }

/* Logo */
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-img { height: 56px; width: auto; max-width: 220px; }
.logo-fallback { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 26px; color: var(--teal); }
.logo-fallback strong { font-size: 16px; color: var(--navy); line-height: 1.1; }
.logo-fallback strong span { color: var(--teal); }
.logo-fallback small { display: block; font-size: 8px; letter-spacing: .08em; color: var(--text-muted); font-weight: 400; }

/* Desktop nav */
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0; }
.main-nav a { white-space: nowrap; padding: 8px 9px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text); border-radius: 4px; transition: color .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--teal); }

/* Right side: phone + hamburger + CTA */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.header-phone { font-weight: 700; font-size: 13px; color: var(--navy); white-space: nowrap; }
.header-phone:hover { color: var(--teal); }
.menu-toggle { display: none; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); border-radius: 6px; width: 38px; height: 38px; font-size: 18px; cursor: pointer; color: var(--navy); flex-shrink: 0; }

/* ── HERO — ALWAYS SHOW IMAGE, STACK ON SMALL SCREENS ── */
.hero-home { background: var(--light); padding: 52px 24px; }
.hero-home .hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.hero-inner { background: var(--light); padding: 44px 24px; }
.hero-inner-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.hero-copy h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.hero-inner-wrap .hero-copy h1 { font-size: clamp(24px, 4vw, 44px); }
.hero-copy p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image — square, right side of text, NEVER stacks on tablet */
.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  align-self: center;
  flex-shrink: 0;
  background: var(--light);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: var(--light);
}

/* ── TRUST STRIP ── */
.trust-strip { background: var(--teal); padding: 20px 24px; }
.strip-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 0; }
.strip-item { display: flex; align-items: center; gap: 14px; color: #fff; padding: 12px 20px; flex: 1; }
.strip-item svg { width: 32px; height: 32px; color: #fff; flex-shrink: 0; }
.strip-item strong { display: block; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.strip-item span { font-size: 11px; opacity: .85; }

/* ── HOW IT WORKS ── */
.how-section { background: #fff; }
.section-title { font-size: 26px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 48px; letter-spacing: .04em; }
.steps-flex { display: flex; align-items: flex-start; justify-content: center; }
.step-box { flex: 1; text-align: center; padding: 0 10px; }
.step-arrow-sep { flex-shrink: 0; font-size: 20px; color: var(--teal); opacity: .5; padding-top: 24px; align-self: flex-start; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; position: relative; color: var(--teal); }
.step-circle svg { width: 28px; height: 28px; }
.step-num { position: absolute; top: -8px; left: -8px; width: 22px; height: 22px; background: var(--teal); color: #fff; border-radius: 50%; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-box h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.step-box p { font-size: 12px; color: var(--text-muted); }

/* ── SPLIT SECTION (homepage We Wash You Relax) ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-copy { background: #d6e8e8; padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.split-copy h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 14px; }
.split-copy p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; display: block; }
.split-img { overflow: hidden; background: var(--light); }

/* ── SERVICES LIST ── */
.services-list .section-inner { display: flex; flex-direction: column; gap: 20px; }
.service-row { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: var(--shadow); }
.service-row-info { display: flex; align-items: center; gap: 16px; flex: 1; }
.service-icon-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon-circle svg { color: #fff; width: 24px; height: 24px; }
.service-row-info h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.service-row-info p { font-size: 13px; color: var(--text-muted); }
.service-row-img {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light);
}
.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── PRICING ── */
.pricing-header { background: var(--light); padding: 60px 24px 0; text-align: center; }
.pricing-header h1 { font-size: clamp(26px, 5vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.pricing-header p { font-size: 15px; color: var(--text-muted); padding-bottom: 40px; }
.pricing-section { background: var(--light); padding-top: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; position: relative; box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--teal); box-shadow: 0 4px 24px rgba(74,152,152,.2); transform: translateY(-8px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.price-icon.teal-bg { background: var(--teal); }
.price-icon.outline-icon { background: transparent; border: 2px solid var(--teal); }
.price-icon svg { color: #fff; width: 28px; height: 28px; }
.outline-icon svg { color: var(--teal); }
.price-card h3 { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: .06em; margin-bottom: 10px; }
.price-amount { font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-unit, .price-min { font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: .08em; margin-top: 4px; }
.price-starting { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: .06em; margin-top: 10px; }
.price-features { list-style: none; margin-top: 16px; text-align: left; }
.price-features li { font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: '•'; color: var(--teal); font-weight: 700; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 20px; }
.cta-band-xl { padding: 72px 24px; }
.cta-icon-xl { width: 80px; height: 80px; }
.cta-icon-xl svg { width: 36px; height: 36px; }
.cta-title-xl { font-size: clamp(26px, 4vw, 38px) !important; font-weight: 900; }
.cta-sub-xl { font-size: 17px !important; }
.btn-xl { padding: 18px 40px; font-size: 15px; }

/* ── CONTACT ── */
.contact-section { background: #fff; }
.contact-top-grid { display: grid; grid-template-columns: 320px 1fr; gap: 24px; margin-bottom: 24px; }
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: #fff; width: 18px; height: 18px; }
.contact-info-item h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 13px; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--teal); }
.contact-socials { display: flex; gap: 8px; margin-top: 14px; }
.contact-socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; color: #fff; }
.contact-socials a:hover { background: var(--navy); }
.contact-socials svg { width: 14px; height: 14px; }
.map-placeholder { border-radius: var(--radius); overflow: hidden; min-height: 300px; border: 1px solid var(--border); }
.map-placeholder iframe { width: 100%; height: 300px; border: none; display: block; }
.laundromat-banner { height: 280px; overflow: hidden; }
.laundromat-banner img { width: 100%; height: 280px; object-fit: cover; display: block; object-position: center center; }

/* ── BOOKING ── */
.booking-section { background: var(--light); }
.booking-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.booking-aside { display: flex; flex-direction: column; gap: 18px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; }
.feature-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { color: #fff; width: 16px; height: 16px; }
.feature-item strong { font-size: 13px; color: var(--navy); display: block; }
.feature-item p { font-size: 12px; color: var(--text-muted); margin: 0; }
.pricing-mini h2 { font-size: 17px; color: var(--navy); font-weight: 700; margin-bottom: 14px; text-align: center; }
.mini-prices { display: flex; flex-direction: column; gap: 8px; }
.mini-price-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--light); border-radius: 8px; }
.mini-price-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.mini-price-item span { font-size: 11px; color: var(--text-muted); display: block; }
.mini-price-item strong { font-size: 13px; color: var(--navy); font-weight: 700; }
.fine-print { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.phone-btn svg { width: 14px; height: 14px; }

/* ── CARDS & FORMS ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
label input, label select, label textarea { display: block; width: 100%; margin-top: 5px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--text); background: #fff; transition: border-color .15s; }
label input:focus, label select:focus, label textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74,152,152,.12); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; cursor: pointer; margin-bottom: 18px; }
.checkbox-label input { width: auto; margin-top: 2px; }
.form-notice.success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 14px; }

/* ── CTA BAND ── */
.cta-band { background: var(--teal); padding: 40px 24px; }
.cta-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.cta-inner.stacked { flex-direction: column; text-align: center; }
.cta-icon-wrap { width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-icon-wrap svg { color: #fff; width: 26px; height: 26px; }
.cta-inner h2 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-inner p { font-size: 14px; color: rgba(255,255,255,.85); }
.cta-inner .btn { margin-left: auto; flex-shrink: 0; }
.cta-inner.stacked .btn { margin: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 52px 24px 28px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.7; }
.footer-logo { height: 52px; width: auto; max-width: 200px; margin-bottom: 8px; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 18px; color: #fff; letter-spacing: .08em; }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.social-links a:hover { background: var(--teal); }
.social-links svg { color: #fff; width: 14px; height: 14px; stroke: #fff; fill: none; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-col p a { display: inline; margin: 0; }
.footer-icon { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,.5); }

/* ── SECTIONS ── */
.section { padding: 56px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.centered { text-align: center; }
.soft-bg { background: var(--light); }

/* ── COMMERCIAL ── */
.who-we-serve { background: #fff; }
.who-title { font-size: clamp(22px, 4vw, 32px); font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 8px; }
.who-underline { width: 44px; height: 4px; background: var(--orange); border-radius: 2px; margin: 0 auto 40px; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.who-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; transition: box-shadow .2s, transform .2s; }
.who-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.who-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.who-icon svg { color: #fff; width: 32px; height: 32px; }
.who-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.who-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.learn-more { font-size: 12px; font-weight: 700; color: var(--teal); }
.learn-more:hover { color: var(--navy); }
.commercial-cta-band { background: #d6e8e8; overflow: hidden; }
.commercial-cta-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 260px; }
.commercial-cta-content { padding: 44px 36px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.commercial-cta-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.commercial-cta-icon svg { color: #fff; width: 26px; height: 26px; }
.commercial-cta-content h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 800; color: var(--navy); line-height: 1.2; }
.commercial-cta-content p { font-size: 13px; color: var(--text-muted); }
.commercial-cta-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── VIDEO SECTION ── */
.video-section { background: #fff; }
.video-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); text-align: center; margin-bottom: 8px; }
.video-wrapper { max-width: 780px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; position: relative; }
.video-wrapper iframe, .video-wrapper video { width: 100%; height: 100%; border: none; display: block; }
.video-placeholder { width: 100%; height: 100%; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #fff; min-height: 300px; }
.video-play-btn { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; }
.video-play-btn svg { color: #fff; width: 24px; height: 24px; margin-left: 3px; }
.video-placeholder p { font-size: 16px; font-weight: 700; margin: 0; }
.video-placeholder span { font-size: 12px; color: rgba(255,255,255,.6); }

/* Mid trust strip (booking page) */
.mid-strip { border-top: 1px solid var(--border); background: #fff; }
.mid-strip .strip-item { color: var(--text); }
.mid-strip .strip-item svg { color: var(--teal); }
.mid-strip .strip-item strong { color: var(--navy); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* Hide phone at 1080px, tighten nav */
@media (max-width: 1080px) {
  .header-phone { display: none; }
  .main-nav a { padding: 8px 7px; font-size: 11px; }
}

/* Tablet (860px) — collapse nav, show hamburger */
@media (max-width: 860px) {
  /* Show hamburger */
  .menu-toggle { display: flex; }

  /* Order: [hamburger] [Schedule Pickup] on RIGHT */
  .header-right { gap: 8px; }
  .menu-toggle { order: 1; }
  .header-cta { order: 2; font-size: 11px; padding: 10px 14px; letter-spacing: .04em; white-space: nowrap; }
  .header-call { order: 3; font-size: 11px; padding: 9px 12px; white-space: nowrap; }

  /* Nav dropdown */
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 12px 20px 16px; border-bottom: 2px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,.1); z-index: 200; }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 4px; font-size: 14px; border-bottom: 1px solid var(--border); border-radius: 0; text-align: left; }
  .main-nav a:last-child { border-bottom: none; }

  /* Hero — stack vertically, image below text */
  /* Hero stays 2-column on tablet — reduced font/padding only */
  .hero-home .hero-inner,
  .hero-inner-wrap { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 16px; }
  .hero-copy h1 { font-size: clamp(17px, 3.5vw, 30px); }
  .hero-copy p { font-size: 13px; margin-bottom: 16px; }
  .hero-btns { gap: 8px; }
  .hero-btns .btn { padding: 10px 14px; font-size: 11px; }


  /* Trust strip — keep 3 columns on tablet, wrap if needed */
  .strip-inner { flex-wrap: wrap; }
  .strip-item { min-width: 200px; }

  /* Steps — tighter */
  .step-box { padding: 0 4px; }
  .step-circle { width: 60px; height: 60px; }
  .step-circle svg { width: 22px; height: 22px; }
  .step-box h3 { font-size: 12px; }
  .step-box p { font-size: 11px; }
  .step-arrow-sep { font-size: 14px; padding-top: 20px; }

  /* Split section */
  .split-section { grid-template-columns: 1fr; }
  .split-img { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }

  /* Contact */
  .contact-top-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; }

  /* Service rows — keep as row, image stays on right */
  .service-row { flex-direction: row; align-items: center; }
  .service-row-img { width: 180px; height: 180px; flex-shrink: 0; border-radius: 8px; }

  /* Commercial */
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .commercial-cta-inner { grid-template-columns: 1fr; }
  .commercial-cta-img { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* CTA */
  .cta-inner { flex-wrap: wrap; gap: 16px; }
  .cta-inner .btn { margin-left: 0; }
}

/* Mobile hero stacking — only on very small phones */
@media (max-width: 500px) {
  .hero-home .hero-inner,
  .hero-inner-wrap { grid-template-columns: 1fr; gap: 16px; }
  .hero-img { max-width: 100%; }
}

/* Mobile (540px) — full stack */
@media (max-width: 540px) {
  .strip-inner { flex-direction: column; }
  .strip-item { min-width: unset; }
  .steps-flex { flex-direction: column; align-items: center; gap: 8px; }
  .step-arrow-sep { transform: rotate(90deg); padding-top: 0; }
  .step-box { width: 100%; max-width: 260px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-grid { gap: 16px; }
  /* Service images — keep big on mobile */
  .service-row-img { width: 160px; height: 160px; }
}


/* ── HEADER RESPONSIVE — fully contained ── */

/* Desktop: show both buttons normally */
.header-phone { display: none; }
.header-call { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }

/* Tablet/Mobile breakpoint */
@media (max-width: 860px) {
  /* Header must never overflow */
  .site-header { overflow: hidden; }
  .header-inner {
    padding: 0 12px;
    gap: 6px;
    height: 60px;
    flex-wrap: nowrap;
  }

  /* Logo smaller on mobile */
  .logo-img { height: 38px; }

  /* Hide desktop nav phone */
  .header-phone { display: none; }

  /* header-right: hamburger + schedule + call now */
  .header-right {
    gap: 6px;
    flex-shrink: 0;
    max-width: calc(100vw - 130px);
    overflow: hidden;
  }

  /* Schedule Pickup button */
  .header-cta {
    order: 2;
    font-size: 10px;
    padding: 8px 10px;
    letter-spacing: .03em;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  /* Call Now — show only phone icon on very small screens */
  .header-call {
    order: 3;
    font-size: 10px;
    padding: 8px 10px;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .header-call svg { width: 14px; height: 14px; }
}

/* Small phones — hide "Call Now" text, show icon only */
@media (max-width: 480px) {
  .header-call .call-text { display: none; }
  .header-call {
    padding: 8px 10px;
    min-width: 36px;
    justify-content: center;
  }
  .header-cta {
    font-size: 10px;
    padding: 8px 10px;
  }
}
