:root {
  --red: #E31E24;
  --red-dark: #c4191f;
  --black: #0B0B0B;
  --dark: #0B0B0B;
  --dark2: #141414;
  --gray: #F5F5F5;
  --white: #FFFFFF;
  --surface: #F5F5F5;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --nav-height: 88px;
  --logo-icon-size: 72px;
  --logo-footer-size: 130px;
  --section-py: 80px;
  --section-py-sm: 48px;
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-brand: 'Oswald', sans-serif;
  --font-hi: 'Noto Sans Devanagari', var(--font-sans);
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-md: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --leading-tight: 1.15;
  --leading-normal: 1.65;
  --leading-relaxed: 1.75;
  --tracking-tight: -0.025em;
  --tracking-label: 0.1em;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
  overflow-x: clip;
}
html { overflow-x: clip; }
@media(max-width:991.98px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

#pickup, #services, #how-it-works, #about, #trust, #team, #founder-legacy, #recognition, #gallery,
#pricing, #reviews, #faq, #contact, #brands, #get-quote {
  scroll-margin-top: var(--nav-height);
}

.text-red { color: var(--red); }

/* ── TOP BAR ── */
.topbar {
  background:var(--black);
  color:#ccc;
  font-size:12px;
  padding:6px 0;
}
.topbar a { color:#ccc; text-decoration:none; }
.topbar .social-icons a { color:#ccc; margin-left:10px; font-size:14px; transition:.2s; }
.topbar .social-icons a:hover { color:var(--red); }

/* ── NAVBAR ── */
.main-nav {
  background:#fff;
  box-shadow:0 2px 16px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:1000;
  padding-top:10px;
  padding-bottom:10px;
  border-bottom:3px solid var(--red);
}
.main-nav > .container { align-items:center; }
.brand-logo-link {
  padding:0;
  margin-right:8px;
  text-decoration:none;
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:12px;
  transition:opacity .2s;
}
.brand-logo-link:hover { opacity:.9; }
.brand-logo-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:0;
  width:var(--logo-icon-size);
  height:var(--logo-icon-size);
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(227,30,36,.35);
  box-shadow:0 3px 14px rgba(0,0,0,.2);
}
.brand-logo {
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#000;
}
.brand-text {
  display:flex;
  flex-direction:column;
  line-height:1.15;
  min-width:0;
}
.brand-name {
  font-family:'Oswald',sans-serif;
  font-size:26px;
  font-weight:700;
  font-style:italic;
  letter-spacing:.5px;
  line-height:1;
}
.main-nav .brand-mach { color:#111; }
.main-nav .brand-wale { color:var(--red); }
.brand-tagline {
  font-size:9.5px;
  font-weight:600;
  color:#666;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-top:4px;
  line-height:1.35;
  max-width:200px;
}
.footer-brand-block {
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
}
.footer-brand-block:hover { opacity:.92; }
.footer-logo-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:0;
  width:var(--logo-footer-size);
  height:var(--logo-footer-size);
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:3px solid rgba(227,30,36,.55);
  box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 4px 20px rgba(0,0,0,.5);
  background:#000;
}
.footer-logo {
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}
.footer-brand-text {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.footer-brand-name {
  font-family:'Oswald',sans-serif;
  font-size:32px;
  font-weight:700;
  font-style:italic;
  line-height:1;
  letter-spacing:.5px;
}
.footer-brand-block .brand-mach { color:#fff; }
.footer-brand-block .brand-wale { color:var(--red); }
.footer-brand-tagline {
  font-size:11px;
  color:#ccc;
  letter-spacing:.8px;
  text-transform:uppercase;
  max-width:240px;
  line-height:1.45;
}
.footer-desc {
  font-size:13px;
  line-height:1.8;
  color:#999;
}
@media (max-width: 991.98px) {
  .brand-name { font-size:22px; }
  .brand-tagline { max-width:180px; }
}
@media (max-width: 575.98px) {
  :root {
    --logo-icon-size: 58px;
    --logo-footer-size: 100px;
    --nav-height: 80px;
  }
  .brand-logo-link { gap:8px; }
  .brand-name { font-size:20px; }
  .brand-tagline { display:none; }
  .footer-brand-block { flex-direction:column; align-items:flex-start; gap:12px; }
  .footer-brand-name { font-size:26px; }
}
.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  color: #333 !important;
  font-size: var(--text-sm);
  letter-spacing: 0;
  text-transform: none;
  padding: 0 14px !important;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content:'';
  position:absolute;
  bottom:-2px;
  left:14px;
  right:14px;
  height:2px;
  background:var(--red);
  transform:scaleX(0);
  transition:transform .25s;
}
.nav-link:hover, .nav-link.active { color:var(--red) !important; }
.nav-link.active::after, .nav-link:hover::after { transform:scaleX(1); }
.btn-book {
  background:var(--red); color:#fff !important; border-radius:4px;
  padding:8px 18px !important; font-weight:600; font-size:13px;
  border:none; transition:.2s;
}
.btn-book:hover { background:#c0151c; }

/* ── HERO ── */
.hero {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center right;
  min-height:560px;
  position:relative;
  overflow:hidden;
  display:flex; align-items:center;
}
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.75) 45%, rgba(0,0,0,.35) 100%);
  z-index:1;
}
.hero .container { z-index:2; position:relative; }
.hero-content > * {
  animation:heroFadeUp .7s ease both;
}
.hero-content > *:nth-child(2) { animation-delay:.1s; }
.hero-content > *:nth-child(3) { animation-delay:.2s; }
.hero-content > *:nth-child(4) { animation-delay:.3s; }
.hero-content > *:nth-child(5) { animation-delay:.4s; }
@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(18px); }
  to { opacity:1; transform:translateY(0); }
}
.hero-label { font-size:13px; letter-spacing:2px; }
.hero-title {
  font-family:'Oswald',sans-serif;
  font-size:clamp(38px, 6vw, 68px);
  font-weight:700;
  color:#fff;
  line-height:1.1;
  text-transform:uppercase;
}
.hero-title span { color:var(--red); }
.hero-sub { color:#bbb; font-size:15px; margin:14px 0 24px; max-width:400px; }
.badge-pill {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:30px;
  padding:8px 16px;
  color:#ddd;
  font-size:12px;
  display:inline-flex; align-items:center; gap:6px;
}
.badge-pill i { color:var(--red); }
.satisfaction-badge {
  background:rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:12px 20px;
  color:#fff;
  display:inline-flex; align-items:center; gap:10px;
  backdrop-filter:blur(10px);
}
.hero-badge-float { margin-top:20px; }
.satisfaction-icon {
  width:42px; height:42px; border-radius:50%;
  background:var(--red);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.satisfaction-badge .percent { font-family:'Oswald',sans-serif; font-size:28px; color:var(--red); line-height:1; }
.satisfaction-label { font-size:11px; color:#aaa; }
.btn-whatsapp {
  background:#25D366; color:#fff; border:none; border-radius:4px;
  padding:10px 20px; font-weight:600; font-size:14px;
  display:inline-flex; align-items:center; gap:8px;
  transition:.2s; text-decoration:none;
}
.btn-whatsapp:hover { background:#1da851; color:#fff; }
.btn-red {
  background:var(--red); color:#fff; border:none; border-radius:4px;
  padding:10px 22px; font-weight:600; font-size:14px;
  display:inline-flex; align-items:center; gap:8px;
  transition:.2s; text-decoration:none;
}
.btn-red:hover { background:#c0151c; color:#fff; }

/* ── INFO BAR ── */
.info-bar { background:#fff; box-shadow:0 4px 20px rgba(0,0,0,.08); margin-top:-1px; }
.info-item {
  display:flex; align-items:center; gap:14px;
  padding:20px 0;
  border-right:1px solid #eee;
}
.info-item:last-child { border-right:none; }
.info-icon {
  width:46px; height:46px; border-radius:50%;
  border:2px solid var(--red);
  display:flex; align-items:center; justify-content:center;
  color:var(--red); font-size:18px; flex-shrink:0;
}
.info-icon-whatsapp { border-color:#25D366; color:#25D366; }
.info-label { font-size:11px; color:#999; text-transform:uppercase; letter-spacing:.5px; }
.info-value { font-size:15px; font-weight:700; color:#111; }
.info-link { color:inherit; text-decoration:none; }
.info-link:hover { color:var(--red); }
.google-review-link { color:#666; font-size:12px; text-decoration:none; }
.google-review-link:hover { color:var(--red); }
.map-embed-wrap {
  border-radius:12px;
  overflow:hidden;
  border:1px solid #333;
  box-shadow:0 8px 28px rgba(0,0,0,.35);
}

/* ── SECTIONS ── */
.section-label {
  font-family: var(--font-sans);
  color: var(--red);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: #111;
}

/* ── SERVICES ── */
.service-card {
  border:1px solid #eee;
  border-radius:10px;
  padding:28px 20px;
  text-align:center;
  transition:.3s;
  height:100%;
  background:#fff;
}
.service-card:hover {
  box-shadow:0 10px 30px rgba(228,30,38,.12);
  border-color:var(--red);
  transform:translateY(-4px);
}
.service-icon { font-size:42px; color:var(--red); margin-bottom:14px; }
.service-card h5 { font-family:'Oswald',sans-serif; font-size:18px; font-weight:600; margin-bottom:8px; }
.service-card p { font-size:13px; color:#666; line-height:1.6; }
.learn-more { color:var(--red); font-size:13px; font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:4px; margin-top:10px; }
.learn-more:hover { gap:8px; color:#c0151c; }

/* ── WHY CHOOSE ── */
.why-section {
  background: linear-gradient(180deg, #0d0d0d 0%, #111 50%, #0a0a0a 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.why-section::before {
  content:'';
  position:absolute;
  top:-120px; right:-80px;
  width:320px; height:320px;
  background:radial-gradient(circle, rgba(228,30,38,.12) 0%, transparent 70%);
  pointer-events:none;
}
.why-section .section-title { color:#fff; }
.why-text { color:#aaa; font-size:15px; line-height:1.7; max-width:540px; }

.about-collage { display:flex; flex-direction:column; gap:12px; }
.about-frame {
  position:relative;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  transition:transform .35s, box-shadow .35s;
}
.about-frame:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(0,0,0,.45);
}
.about-frame-main { height:240px; }
.about-frame-small { flex:1; height:150px; }
.about-frame-row { display:flex; gap:12px; }
.about-frame .about-img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .5s;
}
.about-frame:hover .about-img { transform:scale(1.04); }
.about-frame-accent {
  position:absolute; bottom:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--red), transparent);
}

.why-content {
  padding-left:0;
}
@media (min-width: 992px) {
  .why-content { padding-left:20px; }
}

.feature-grid {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px 32px;
}
.feature-item {
  display:flex; align-items:center; gap:14px;
  font-size:14px;
  color:#e8e8e8;
  padding:0;
  transition:transform .2s;
}
.feature-item:hover {
  transform:translateX(4px);
}
.feature-icon-img {
  width:32px; height:32px;
  flex-shrink:0;
  display:block;
  filter:drop-shadow(0 2px 6px rgba(228,30,38,.35));
}
.feature-text {
  line-height:1.4;
  font-weight:400;
}

.stats-row { margin-top:8px; }
.stat-box {
  text-align:center;
  padding:22px 16px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:rgba(255,255,255,.02);
  transition:border-color .3s, transform .3s, box-shadow .3s;
  height:100%;
}
.stat-box:hover {
  border-color:rgba(228,30,38,.35);
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.3);
}
.stat-num {
  font-family:'Oswald',sans-serif;
  font-size:clamp(28px, 4vw, 36px);
  font-weight:700;
  color:var(--red);
  line-height:1.1;
  display:flex; align-items:center; justify-content:center; gap:4px;
}
.stat-num.counter-done { animation:counterPop .4s ease; }
@keyframes counterPop {
  0% { transform:scale(1); }
  50% { transform:scale(1.08); }
  100% { transform:scale(1); }
}
.counter-suffix { color:var(--red); }
.stat-star-img { margin-left:4px; vertical-align:middle; }
.stat-label {
  font-size:12px; color:#888;
  margin-top:8px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

/* ── GALLERY ── */
.gallery-item {
  border-radius:10px;
  overflow:hidden;
  height:200px;
  background:#222;
  position:relative;
  cursor:pointer;
}
.gallery-item:focus-visible {
  outline:2px solid var(--red);
  outline-offset:3px;
}
.gallery-img {
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s;
}
.gallery-item:hover .gallery-img { transform:scale(1.05); }
.gallery-item .overlay {
  position:absolute; inset:0;
  background:rgba(228,30,38,.7);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:.3s;
  color:#fff; font-size:24px;
}
.gallery-item:hover .overlay { opacity:1; }

@media (min-width: 992px) {
  .gallery-grid .gallery-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* ── PRICING ── */
.pricing-card {
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:28px 24px;
  text-align:center;
  height:100%;
  transition:.3s;
}
.pricing-card:hover {
  border-color:var(--red);
  box-shadow:0 8px 24px rgba(228,30,38,.1);
  transform:translateY(-3px);
}
.pricing-service {
  font-family:'Oswald',sans-serif;
  font-size:18px;
  font-weight:600;
  color:#111;
  margin-bottom:8px;
}
.pricing-price {
  font-family:'Oswald',sans-serif;
  font-size:32px;
  font-weight:700;
  color:var(--red);
  margin-bottom:6px;
}
.pricing-note { font-size:13px; color:#888; }

/* ── REVIEWS ── */
.review-card {
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:22px;
  height:100%;
}
.review-avatar-img {
  width:46px; height:46px; border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.review-text { font-size:13px; color:#555; margin:0; }
.stars { color:#f5a623; font-size:13px; }
.google-rating {
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:20px 24px;
  display:inline-flex; align-items:center; gap:14px;
}
.google-rating .g-num { font-family:'Oswald',sans-serif; font-size:36px; font-weight:700; }
.google-star { color:#f5a623; font-size:20px; }
.google-meta { font-size:12px; color:#666; }
.google-sub { font-size:12px; color:#888; }

/* ── CTA ── */
.cta-section {
  background:var(--red);
  padding:40px 0;
}
.cta-title {
  font-family:'Oswald',sans-serif;
  font-size:28px;
}

/* ── FOOTER ── */
footer { background:#0d0d0d; color:#aaa; font-size:13px; }
footer .footer-title { font-family:'Oswald',sans-serif; color:#fff; font-size:18px; margin-bottom:16px; }
footer a { color:#aaa; text-decoration:none; display:block; margin-bottom:8px; transition:.2s; }
footer a:hover { color:var(--red); }
.footer-social a {
  display:inline-block !important;
  color:#aaa !important;
  font-size:18px;
  margin-bottom:0 !important;
}
.footer-bottom { background:#060606; border-top:1px solid #222; }

/* ── BOOKING MODAL ── */
.booking-modal { border-radius:12px; border:none; }
.booking-modal .modal-title { font-size:20px; }

/* ── GALLERY LIGHTBOX ── */
.gallery-lightbox-content {
  background:#111;
  border:none;
  border-radius:12px;
  overflow:hidden;
  position:relative;
}
.gallery-lightbox-close {
  position:absolute;
  top:14px; right:14px;
  z-index:10;
  filter:invert(1);
  opacity:.85;
  background:rgba(0,0,0,.4);
  border-radius:50%;
  padding:10px;
}
.gallery-lightbox-img {
  width:100%;
  max-height:85vh;
  object-fit:contain;
  display:block;
  background:#111;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:1050;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:14px 18px;
  border-radius:50px;
  box-shadow:0 6px 24px rgba(37,211,102,.45);
  font-weight:600;
  font-size:14px;
  transition:transform .25s, box-shadow .25s;
}
.whatsapp-float i { font-size:24px; }
.whatsapp-float:hover {
  color:#fff;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 32px rgba(37,211,102,.55);
}
@media(max-width:991.98px) {
  .whatsapp-float {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    min-width: 56px;
    justify-content: center;
    z-index: 1055;
  }
  .whatsapp-float-label { display: none; }
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .info-item { border-right:none; border-bottom:1px solid #eee; }
  .info-item:last-child { border-bottom:none; }
  .hero { background-position: center; min-height:480px; }
  .gallery-item { height:160px; }
  .feature-grid { grid-template-columns:1fr; gap:16px; }
  .why-content { padding-left:0; }
  .about-frame-main { height:200px; }
  .about-frame-small { height:120px; }
  .stat-box { padding:18px 12px; }
}

/* ══════════════════════════════════════════
   MACHWALE PREMIUM DESIGN SYSTEM
   ══════════════════════════════════════════ */
.py-section { padding: var(--section-py) 0; }
.py-section-sm { padding: var(--section-py-sm) 0; }
.bg-surface { background: var(--surface); }
.section-desc {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: var(--text-md);
  font-weight: 500;
  max-width: 560px;
  line-height: var(--leading-relaxed);
}
.section-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 8px; }
.btn-outline-brand {
  border: 2px solid var(--red); color: var(--red); background: transparent;
  padding: 8px 20px; border-radius: 8px; font-weight: 600; font-size: 13px;
  text-decoration: none; transition: .2s;
}
.btn-outline-brand:hover { background: var(--red); color: #fff; }

/* Hero Premium */
.hero-premium {
  background-color: #0a0a0a; background-size: cover; background-position: center right;
  position: relative; overflow: hidden;
}
.hero-premium-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.82) 50%, rgba(0,0,0,.5) 100%);
}
.min-vh-hero { min-height: 88vh; padding: 48px 0; }
.hero-trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #eee; font-size: 12px; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; display: inline-flex; align-items: center; gap: 6px;
}
.hero-pill-accent { background: rgba(227,30,36,.25); border-color: rgba(227,30,36,.5); color: #fff; }
.hero-pill i { color: var(--red); font-size: 11px; }
.hero-pill-accent i { color: #fff; }
.hero-premium-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-premium-title span { color: var(--red); font-weight: 800; }
.hero-premium-sub {
  font-family: var(--font-sans);
  color: #d1d5db;
  font-size: var(--text-base);
  font-weight: 500;
  line-height: var(--leading-relaxed);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.btn-hero-primary {
  background: var(--red); color: #fff; border: none; border-radius: 10px;
  padding: 14px 28px; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: .2s;
  box-shadow: 0 4px 20px rgba(227,30,36,.4);
}
.btn-hero-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-hero-whatsapp {
  background: #25D366; color: #fff; border: none; border-radius: 10px;
  padding: 14px 28px; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: .2s;
}
.btn-hero-whatsapp:hover { background: #1da851; color: #fff; }
.hero-warranty-row { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-warranty-badge {
  font-size: 11px; color: #aaa; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 6px;
  padding: 5px 10px; display: inline-flex; align-items: center; gap: 5px;
}
.hero-warranty-badge i { color: var(--red); font-size: 10px; }
.hero-trust-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(12px);
}
.htc-rating { display: flex; align-items: center; gap: 16px; }
.htc-num { font-family: 'Oswald', sans-serif; font-size: 48px; font-weight: 700; color: var(--red); line-height: 1; }
.htc-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.htc-label { color: #aaa; font-size: 13px; margin-top: 2px; }
.htc-divider { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0; }
.htc-stats { display: flex; gap: 20px; margin-bottom: 16px; }
.htc-stat strong { display: block; font-family: 'Oswald', sans-serif; font-size: 22px; color: #fff; }
.htc-stat span { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.htc-link { color: var(--red); font-size: 13px; font-weight: 600; text-decoration: none; }
.htc-link:hover { color: #fff; }

/* Trust Strip */
.trust-strip { background: #fff; border-bottom: 1px solid #eee; padding: 20px 0; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-strip-item { display: flex; align-items: center; gap: 12px; }
.trust-strip-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(227,30,36,.08);
  display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 18px; flex-shrink: 0;
}
.trust-strip-value { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: #111; line-height: 1; }
.trust-strip-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Pickup Banner */
.pickup-banner {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 60%, #2a1010 100%);
  border-radius: var(--radius); padding: 48px 40px; position: relative; overflow: hidden;
}
.pickup-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; background: radial-gradient(circle, rgba(227,30,36,.2), transparent 70%);
}
.pickup-sub { color: #aaa; font-size: 15px; line-height: 1.7; }
.pickup-steps { display: flex; flex-direction: column; gap: 12px; }
.pickup-step-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px;
}
.pickup-step-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--red);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.pickup-step-card h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pickup-step-card p { color: #999; font-size: 13px; margin: 0; line-height: 1.5; }

/* Brands */
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.brand-chip {
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 50px;
  padding: 10px 22px; font-weight: 600; font-size: 14px; color: #374151;
  transition: .2s; cursor: default;
}
.brand-chip:hover { border-color: var(--red); color: var(--red); background: rgba(227,30,36,.04); }

/* Service Cards Premium */
.service-card-premium {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid #eee; height: 100%; transition: .3s; position: relative;
}
.service-card-premium:hover { box-shadow: var(--shadow-lg); border-color: var(--red); transform: translateY(-4px); }
.scp-icon { font-size: 32px; color: var(--red); margin-bottom: 16px; }
.service-card-premium h5 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.service-card-premium p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.scp-warranty {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600;
  color: var(--red); background: rgba(227,30,36,.08); padding: 4px 10px; border-radius: 50px; margin-bottom: 16px;
}
.scp-cta {
  color: var(--red); font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: var(--touch-min, 48px); padding: 10px 0;
  -webkit-tap-highlight-color: transparent;
}
.scp-cta:hover { gap: 8px; color: var(--red-dark); }

/* How It Works */
.step-card {
  background: #fff; border: 1px solid #eee; border-radius: var(--radius);
  padding: 28px 20px; text-align: center; height: 100%; position: relative; transition: .3s;
}
.step-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-3px); }
.step-num {
  position: absolute; top: 16px; right: 16px; font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700; color: #ddd;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(227,30,36,.1);
  display: flex; align-items: center; justify-content: center; color: var(--red);
  font-size: 22px; margin: 0 auto 16px;
}
.step-card h5 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Founder */
.founder-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 36px; margin-top: 8px;
}
.founder-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); }
.founder-name { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: #fff; }
.founder-role { color: var(--red); font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.founder-quote { color: #ddd; font-size: 16px; font-style: italic; border-left: 3px solid var(--red); padding-left: 16px; margin-bottom: 12px; line-height: 1.6; }
.founder-story { color: #999; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-tag {
  background: rgba(227,30,36,.15); border: 1px solid rgba(227,30,36,.3);
  color: #eee; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 50px;
}

/* Before / After */
.ba-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; transition: .3s; height: 100%; }
.ba-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-side { position: relative; height: 160px; overflow: hidden; }
.ba-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label {
  position: absolute; bottom: 8px; left: 8px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; padding: 3px 8px; border-radius: 4px;
}
.ba-label-before { background: rgba(0,0,0,.7); color: #fff; }
.ba-label-after { background: var(--red); color: #fff; }
.ba-info { padding: 16px 20px; }
.ba-info h5 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.ba-info p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Gallery Premium */
.gallery-item-premium {
  border-radius: var(--radius-sm); overflow: hidden; height: 220px;
  background: #222; position: relative; cursor: pointer;
}
.gallery-item-premium .gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item-premium:hover .gallery-img { transform: scale(1.06); }
.gallery-item-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 32px 14px 12px;
}
.gallery-tag { font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; display: block; }
.gallery-label { font-size: 13px; font-weight: 600; color: #fff; display: block; }
.gallery-item-premium .overlay {
  position: absolute; inset: 0; background: rgba(227,30,36,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: .3s; color: #fff; font-size: 24px;
}
.gallery-item-premium:hover .overlay { opacity: 1; }

/* Pricing Premium */
.pricing-card-premium {
  background: #fff; border: 2px solid #eee; border-radius: var(--radius);
  padding: 32px 24px; text-align: center; height: 100%; position: relative; transition: .3s;
}
.pricing-card-premium:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-popular { border-color: var(--red); box-shadow: 0 8px 32px rgba(227,30,36,.15); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.pricing-time { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.pricing-warranty { font-size: 12px; color: var(--red); font-weight: 600; margin: 12px 0 16px; }
.btn-pricing {
  display: block; background: var(--red); color: #fff; border-radius: 8px;
  padding: 12px; font-weight: 700; font-size: 14px; text-decoration: none; transition: .2s;
}
.btn-pricing:hover { background: var(--red-dark); color: #fff; }
.pricing-popular .btn-pricing { background: #111; }
.pricing-popular .btn-pricing:hover { background: var(--red); }

/* Reviews — header & slider */
.reviews-header-row { align-items: stretch !important; }
.reviews-section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0;
}
.reviews-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #111;
  margin: 0;
}
.reviews-heading .text-red { font-weight: 800; }
.review-source-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #6b7280;
  max-width: 520px;
}
.google-rating-premium {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.grp-google {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 50%;
  border: 2px solid #eef0f2;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 26px; font-weight: 700;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grp-content { min-width: 0; }
.grp-rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.grp-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: #111;
}
.grp-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
.grp-meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
#reviews .google-review-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  min-height: auto;
}
#reviews .google-review-link i { font-size: 12px; transition: transform .2s; }
#reviews .google-review-link:hover { color: var(--red-dark); }
#reviews .google-review-link:hover i { transform: translateX(3px); }
.grp-listing-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1.5;
  margin-top: 8px;
}
.review-slider-wrap { overflow: hidden; }
.review-slider { display: flex; transition: transform .45s ease; }
.review-slide { flex: 0 0 100%; padding: 0 8px; }
@media(min-width:768px) { .review-slide { flex: 0 0 50%; } }
@media(min-width:1200px) { .review-slide { flex: 0 0 33.333%; } }
.review-card-premium {
  background: #fff; border: 1px solid #e8e8e8; border-radius: var(--radius);
  padding: 26px 24px; height: 100%; display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.rcp-stars {
  color: #f5a623; font-size: 16px; letter-spacing: 2px;
  margin-bottom: 14px; line-height: 1;
}
.rcp-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; font-weight: 500; color: #2d2d2d;
  line-height: 1.75; flex: 1; margin-bottom: 20px;
  font-style: normal; letter-spacing: .01em;
}
.rcp-text[lang="hi"] {
  font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
  font-size: 17px; font-weight: 500; line-height: 1.85;
  color: #1f1f1f;
}
.rcp-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px; border-top: 1px solid #f0f0f0; margin-top: auto;
}
.review-avatar-img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid #f0f0f0;
}
.rcp-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 15px; color: #111;
  line-height: 1.3;
}
.rcp-badge {
  font-size: 12px; font-weight: 600; color: #4285f4;
  margin-bottom: 3px; line-height: 1.3;
}
.rcp-badge i { font-size: 10px; margin-right: 4px; }
.rcp-date {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.rcp-date i { color: #4285f4; font-size: 11px; }
.review-slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.rsn-btn {
  width: 48px; height: 48px; min-width: 48px; min-height: 48px;
  border-radius: 50%; border: 2px solid #eee;
  background: #fff; color: #333; cursor: pointer; transition: .2s;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.rsn-btn:hover { border-color: var(--red); color: var(--red); }
.rsn-dots { display: flex; gap: 6px; }
.rsn-dot {
  width: 10px; height: 10px; min-width: 44px; min-height: 44px;
  border-radius: 50%; border: none; background: transparent;
  cursor: pointer; padding: 17px; transition: .2s; position: relative; box-sizing: border-box;
}
.rsn-dot::after {
  content: ''; position: absolute; inset: 17px; border-radius: 50%;
  background: #ddd; transition: .2s;
}
.rsn-dot.active::after { background: var(--red); inset: 15px 10px; border-radius: 4px; }

/* FAQ */
.faq-accordion .accordion-item { border: 1px solid #eee; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.faq-accordion .accordion-button {
  font-weight: 600; font-size: 15px; padding: 18px 20px;
  background: #fff; color: #111; box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(227,30,36,.05); color: var(--red); }
.faq-accordion .accordion-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding: 0 20px 18px; }

/* Mobile Action Bar */
.mobile-action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1060;
  background: #fff; border-top: 1px solid #eee;
  display: flex; box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mob-action {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; padding: 10px 4px;
  text-decoration: none; font-size: 11px; font-weight: 700; transition: .2s;
}
.mob-action i { font-size: 18px; }
.mob-action-call { color: var(--red); }
.mob-action-wa { color: #25D366; }
.mob-action-directions { color: var(--black); background: var(--gray); }

/* Nav polish */
.btn-book { border-radius: 8px !important; }
.main-nav { border-bottom: none; box-shadow: 0 1px 0 #eee, 0 4px 20px rgba(0,0,0,.06); }

@media(max-width:991.98px) {
  .py-section { padding: var(--section-py-sm) 0; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .pickup-banner { padding: 32px 24px; }
  .min-vh-hero { min-height: auto; padding: 40px 0 48px; }
}
@media(max-width:575.98px) {
  .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-warranty-row { display: none; }
  .ba-side { height: 120px; }
  .gallery-item-premium { height: 180px; }
}

/* ── CLARITY & TRUST UX ── */
.hero-premium-proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
  font-size: 13px; color: #9ca3af; margin: -12px 0 24px; max-width: 560px;
}
.hero-premium-proof i { color: #fbbc04; }
.hero-premium-proof strong { color: #e5e7eb; font-weight: 600; }
.hero-proof-sep { opacity: .45; }

.brand-identity-bar {
  background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
  border-bottom: 1px solid #2a2a2a; padding: 14px 0;
}
.brand-identity-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px;
}
.brand-identity-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(227,30,36,.15); color: #fca5a5; border: 1px solid rgba(227,30,36,.35);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.brand-identity-text { color: #d1d5db; font-size: 14px; line-height: 1.5; flex: 1; min-width: 220px; }
.brand-identity-link {
  color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.brand-identity-link:hover { color: var(--red); }

.identity-grid { display: grid; gap: 16px; }
.identity-card {
  display: flex; gap: 16px; background: #fff; border: 1px solid #eee;
  border-radius: 14px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.identity-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fef2f2; color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.identity-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: #111; }
.identity-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

.google-proof-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 20px; box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.gpc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gpc-google {
  width: 40px; height: 40px; border-radius: 10px; background: #f3f4f6;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #4285f4;
}
.gpc-verified { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #059669; letter-spacing: .03em; }
.gpc-name { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: #111; }
.gpc-rating strong { display: block; font-size: 22px; color: #111; line-height: 1; }
.gpc-rating span { font-size: 12px; color: var(--text-muted); }
.gpc-details { list-style: none; padding: 0; margin: 0 0 16px; }
.gpc-details li {
  font-size: 13px; color: #4b5563; padding: 8px 0; border-top: 1px solid #f3f4f6;
  display: flex; gap: 10px; align-items: flex-start;
}
.gpc-details i { color: var(--red); margin-top: 2px; width: 14px; }
.gpc-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-gpc-primary, .btn-gpc-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: .2s;
}
.btn-gpc-primary { background: var(--red); color: #fff; }
.btn-gpc-primary:hover { background: #c4191f; color: #fff; }
.btn-gpc-outline { border: 1px solid #d1d5db; color: #111; background: #fff; }
.btn-gpc-outline:hover { border-color: #111; color: #111; }

.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  background: #111; border-radius: 14px; padding: 16px;
}
.proof-strip-item {
  display: flex; gap: 10px; align-items: flex-start; color: #fff;
}
.proof-strip-icon {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(227,30,36,.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.proof-strip-icon i { color: var(--red); font-size: 14px; line-height: 1; }
.proof-strip-label { display: block; font-size: 10px; text-transform: uppercase; color: #9ca3af; letter-spacing: .04em; }
.proof-strip-item strong { font-size: 13px; font-weight: 700; line-height: 1.3; }

.before-book-card {
  background: linear-gradient(135deg, #111 0%, #1f1f1f 100%);
  border-radius: 20px; padding: 40px 36px; color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.before-book-sub { color: #d1d5db; font-size: 15px; line-height: 1.6; }
.before-book-meta { display: grid; gap: 10px; }
.before-book-meta div {
  font-size: 13px; color: #e5e7eb; display: flex; gap: 10px; align-items: flex-start;
}
.before-book-meta i { color: var(--red); margin-top: 2px; }

.byb-panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 20px; height: 100%;
}
.byb-panel h5 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: #fff; }
.byb-list { list-style: none; padding: 0; margin: 0; }
.byb-list li {
  font-size: 13px; color: #d1d5db; padding: 6px 0; display: flex; gap: 8px; align-items: flex-start;
}
.byb-list i { color: #22c55e; font-size: 11px; margin-top: 4px; }
.byb-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.byb-area-chip {
  font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #f3f4f6; border: 1px solid rgba(255,255,255,.12);
}
.byb-note { font-size: 12px; color: #9ca3af; }
.byb-note i { color: var(--red); margin-right: 6px; }

.booking-modal-sub { font-size: 12px; color: #6b7280; }
.booking-reassurance {
  display: grid; gap: 8px; background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 10px; padding: 12px 14px;
}
.booking-reassurance span { font-size: 12px; color: #374151; display: flex; gap: 8px; align-items: flex-start; }
.booking-reassurance i { color: var(--red); margin-top: 2px; }
.booking-fine-print { font-size: 11px; color: #6b7280; line-height: 1.5; margin: 0; }

.grp-listing-note { margin-top: 8px; }
.footer-legal-note { font-size: 12px; color: #999; margin-bottom: 12px; line-height: 1.5; }
.footer-legal-note strong { color: #ccc; }

/* ── FOUNDER LEGACY & RECOGNITION ── */
.hero-brand-motto {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #fca5a5;
  margin-bottom: 12px;
}

.lead-about { font-size: 17px !important; color: #e5e7eb !important; font-weight: 500; }
.about-promise {
  font-size: 14px; font-weight: 600; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(227,30,36,.15); border: 1px solid rgba(227,30,36,.35);
  padding: 10px 16px; border-radius: 8px;
}
.about-promise i { color: var(--red); }

.achievement-badges-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.achievement-badge {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 16px;
}
.achievement-badge-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(227,30,36,.2);
  color: #fca5a5; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.achievement-badge strong { display: block; font-size: 13px; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.achievement-badge span { font-size: 12px; color: #9ca3af; line-height: 1.4; }

.founder-legacy-section { background: #0d0d0d; }
.founder-legacy-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 1px solid #2a2a2a; border-radius: 20px; padding: 40px 36px;
}
.founder-portrait-wrap { position: relative; display: inline-block; }
.founder-portrait {
  width: 220px; height: 220px; border-radius: 20px; object-fit: cover;
  border: 3px solid var(--red); box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.founder-portrait-badge {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(227,30,36,.4);
}
.founder-credentials { color: #9ca3af; font-size: 14px; font-weight: 500; }
.founder-name-lg {
  font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.founder-role-lg { color: var(--red); font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.founder-quote-lg {
  color: #e5e7eb; font-size: 18px; font-style: italic; line-height: 1.7;
  border-left: 4px solid var(--red); padding-left: 20px; margin-bottom: 20px;
}
.founder-story-lg { color: #9ca3af; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }

.legacy-timeline-title {
  font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: #fff;
}
.timeline-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.timeline-track::before {
  content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, #333, var(--red), #333); z-index: 0;
}
.timeline-item { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.timeline-marker { margin-bottom: 16px; }
.timeline-year {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 72px; height: 56px; padding: 0 12px;
  background: #1a1a1a; border: 2px solid #333; border-radius: 12px;
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: #fff;
}
.timeline-item-active .timeline-year {
  background: var(--red); border-color: var(--red); box-shadow: 0 4px 20px rgba(227,30,36,.35);
}
.timeline-content h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.timeline-content p { font-size: 12px; color: #9ca3af; line-height: 1.5; margin: 0; }

.recognition-card {
  background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 24px;
  height: 100%; transition: .25s; box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.recognition-card:hover {
  border-color: rgba(227,30,36,.3); box-shadow: 0 8px 28px rgba(227,30,36,.08); transform: translateY(-2px);
}
.recognition-card-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.recognition-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fef2f2;
  color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.recognition-year {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--red); background: #fef2f2; padding: 4px 10px; border-radius: 6px;
}
.recognition-card h5 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 8px; }
.recognition-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

@media(max-width:991.98px) {
  .achievement-badges-row { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: 1fr 1fr; gap: 24px; }
  .timeline-track::before { display: none; }
  .founder-legacy-hero { padding: 28px 22px; }
  .founder-portrait { width: 180px; height: 180px; }
}
@media(max-width:575.98px) {
  .achievement-badges-row { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; }
}

@media(max-width:991.98px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .before-book-card { padding: 28px 22px; }
}
@media(max-width:575.98px) {
  .brand-identity-inner { flex-direction: column; align-items: flex-start; }
  .proof-strip { grid-template-columns: 1fr; }
  .gpc-actions { flex-direction: column; }
  .btn-gpc-primary, .btn-gpc-outline { justify-content: center; width: 100%; }
}

/* ── BRAND REPOSITIONING & CRO ── */
.hero-motto-accent { color: #fca5a5; }

.trust-pillars-section { background: var(--white); border-bottom: 1px solid #eee; }
.trust-pillars-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media(min-width:768px) { .trust-pillars-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1200px) { .trust-pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-pillar-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--gray); border: 1px solid #eee; border-radius: 12px; padding: 14px 16px;
  font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4;
}
.trust-pillar-check {
  width: 28px; height: 28px; border-radius: 8px; background: #fef2f2; color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px;
}

.about-pillars-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media(min-width:992px) { .about-pillars-row { grid-template-columns: repeat(4, 1fr); } }
.about-pillar-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 20px; height: 100%;
}
.about-pillar-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(227,30,36,.2);
  color: #fca5a5; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.about-pillar-card h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.about-pillar-card p { font-size: 13px; color: #9ca3af; margin: 0; line-height: 1.5; }

.about-img-placeholder {
  width: 100%; height: 100%; min-height: 120px;
  background: var(--dark2); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; color: #666;
}
.about-img-placeholder i { font-size: 28px; color: var(--red); opacity: .6; }
.about-img-placeholder span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.team-card {
  background: var(--white); border: 1px solid #eee; border-radius: 16px; padding: 24px;
  height: 100%; transition: .25s; box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.team-card:hover { border-color: rgba(227,30,36,.25); transform: translateY(-2px); }
.team-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fef2f2; color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px;
}
.team-card h5 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.team-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
.team-credibility-note { font-size: 13px; color: var(--text-muted); max-width: 640px; margin-inline: auto; }
.team-credibility-note i { color: var(--red); margin-right: 6px; }

.founder-legacy-compact { background: var(--gray); }
.founder-compact-card {
  background: var(--white); border: 1px solid #eee; border-radius: 16px; padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.founder-compact-photo { width: 120px; height: 120px; border-radius: 16px; object-fit: cover; border: 3px solid var(--red); }
.founder-compact-photo-placeholder {
  width: 120px; height: 120px; border-radius: 16px; background: var(--gray);
  display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--red); margin: 0 auto;
}
.founder-compact-title { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.founder-compact-story { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.founder-compact-cred { font-size: 13px; font-weight: 600; color: var(--black); }
.founder-compact-cred i { color: var(--red); margin-right: 6px; }
.founder-legacy-compact .timeline-year { background: var(--white); color: var(--black); border-color: #ddd; }
.founder-legacy-compact .timeline-content h5 { color: var(--black); }
.founder-legacy-compact .timeline-track::before { background: linear-gradient(90deg, #ddd, var(--red), #ddd); }

.gallery-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-filter-btn {
  border: 1px solid #ddd; background: var(--white); color: var(--black);
  font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 999px; transition: .2s;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.gallery-placeholder-inner {
  height: 100%; min-height: 200px; background: var(--gray);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 20px; text-align: center;
}
.gallery-placeholder-inner i { font-size: 28px; color: var(--red); opacity: .5; }
.gallery-placeholder-inner span { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--black); }
.gallery-placeholder-inner small { font-size: 11px; color: var(--text-muted); }

.lead-capture-card {
  background: var(--black); border-radius: 20px; padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.lead-capture-sub { color: #d1d5db; font-size: 15px; line-height: 1.6; }
.lead-offer-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px; height: 100%; text-align: center;
}
.lead-offer-card i { font-size: 22px; color: var(--red); margin-bottom: 8px; display: block; }
.lead-offer-card strong { display: block; color: var(--white); font-size: 13px; margin-bottom: 4px; }
.lead-offer-card span { font-size: 11px; color: #9ca3af; }
.lead-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-lead-call {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
  border-radius: 10px; background: var(--white); color: var(--black);
  font-weight: 700; font-size: 14px; text-decoration: none; transition: .2s;
}
.btn-lead-call:hover { background: var(--gray); color: var(--black); }

@media(max-width:575.98px) {
  .trust-pillars-grid { grid-template-columns: 1fr; }
  .about-pillars-row { grid-template-columns: 1fr; }
  .lead-capture-card { padding: 28px 20px; }
  .lead-cta-row { flex-direction: column; }
  .lead-cta-row a { justify-content: center; width: 100%; }
}

/* ══════════════════════════════════════════
   MOBILE APP EXPERIENCE — MACHWALE
   ══════════════════════════════════════════ */
:root {
  --mob-bar-h: 72px;
  --touch-min: 48px;
  --app-radius: 16px;
}

/* Sticky bottom nav */
.mobile-action-bar {
  min-height: var(--mob-bar-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mob-action {
  min-height: var(--touch-min);
  padding: 12px 6px;
  font-size: 12px;
  gap: 4px;
  -webkit-tap-highlight-color: transparent;
}
.mob-action i { font-size: 20px; }
.mob-action:active { opacity: .75; transform: scale(.97); }

/* Urgency strip */
.urgency-bar {
  background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
  border-bottom: 1px solid #2a2a2a;
  padding: 10px 0;
}
.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.urgency-bar-inner span {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.urgency-bar-inner i { color: #fbbc04; margin-right: 6px; }
.urgency-bar-link {
  color: #25D366;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: var(--touch-min);
  padding: 0 4px;
}
.urgency-bar-link:hover { color: #1da851; }

/* Hero mobile trust card */
.hero-mobile-trust {
  background: var(--gray);
  padding: 0 0 20px;
  margin-top: -8px;
}
.hero-mobile-trust-card {
  background: #fff;
  border-radius: var(--app-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 12px;
}
.hmt-rating strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--red);
  line-height: 1;
}
.hmt-rating span { font-size: 12px; color: var(--text-muted); }
.hmt-divider { width: 1px; height: 36px; background: #e5e7eb; flex-shrink: 0; }
.hmt-stat { text-align: center; }
.hmt-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #111;
  line-height: 1.1;
}
.hmt-stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .03em; }

/* Pickup areas */
.pickup-areas-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--app-radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.pickup-areas-label {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}
.pickup-areas-label i { color: #22c55e; margin-right: 8px; }
.pickup-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pickup-area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: var(--gray);
  color: #374151;
  line-height: 1.3;
}
.pickup-area-chip-active {
  border-color: rgba(227,30,36,.25);
  background: rgba(227,30,36,.06);
  color: #111;
}
.pickup-area-chip-active i { color: var(--red); font-size: 12px; }
.pickup-areas-other h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #111; }
.pickup-areas-other p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.pickup-walk-in {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pickup-walk-in i { color: var(--red); margin-top: 3px; }

/* Local SEO */
.local-seo-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--app-radius);
  padding: 28px 24px;
}
.local-seo-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.local-seo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.local-seo-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 50px;
  background: var(--gray);
  border: 1px solid #e5e7eb;
  color: #374151;
}

/* App-style forms */
.form-label-app {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.form-control-app {
  min-height: var(--touch-min);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  -webkit-appearance: none;
  appearance: none;
}
.form-control-app:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,30,36,.12);
}
textarea.form-control-app { min-height: 96px; }
.btn-submit-app {
  min-height: 52px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .2s;
}
.btn-submit-app:hover { background: #1da851; color: #fff; }
.btn-submit-app:active { transform: scale(.98); }

/* Booking modal — app sheet on mobile */
@media(max-width:575.98px) {
  #bookingModal .modal-dialog {
    margin: 0;
    max-width: 100%;
    min-height: 100%;
    align-items: flex-end;
  }
  #bookingModal .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    border: none;
  }
  #bookingModal .btn-close {
    width: 44px;
    height: 44px;
    padding: 0;
  }
}

/* Touch-friendly CTAs */
.btn-hero-primary,
.btn-hero-whatsapp,
.btn-book,
.btn-gpc-primary,
.btn-gpc-outline,
.btn-lead-call {
  min-height: var(--touch-min);
}

/* Navbar toggler */
.navbar-toggler {
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 10px;
}

/* FAQ larger touch */
.faq-accordion .accordion-button { min-height: var(--touch-min); font-size: 15px; }

/* CTA section mobile */
@media(max-width:575.98px) {
  .cta-section .btn { width: 100%; margin: 0 0 10px !important; min-height: var(--touch-min); }
}

/* ── Mobile breakpoints: 320–768px ── */
@media(max-width:767.98px) {
  :root { --section-py-sm: 40px; --nav-height: 76px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .py-section { padding: 56px 0; }

  .hero-premium-title { font-size: clamp(30px, 9vw, 42px); }
  .hero-premium-sub { font-size: 15px; margin-bottom: 20px; }
  .hero-premium-proof { font-size: 12px; margin-bottom: 20px; }
  .hero-trust-pills { gap: 6px; }
  .hero-pill { font-size: 11px; padding: 7px 12px; }
  .hero-cta-group { flex-direction: column; gap: 10px; }
  .hero-cta-group a { width: 100%; justify-content: center; font-size: 16px; padding: 16px 20px; }

  .section-desc { font-size: 14px; }
  .section-title { font-size: clamp(24px, 6.5vw, 32px); }

  .trust-strip-grid { gap: 10px; }
  .trust-strip-value { font-size: 17px; }
  .trust-strip-label { font-size: 11px; }
  .trust-strip-icon { width: 40px; height: 40px; font-size: 16px; }

  .pickup-banner { padding: 28px 20px; border-radius: 14px; }
  .pickup-step-card { padding: 14px 16px; }
  .pickup-step-card h5 { font-size: 14px; }
  .pickup-step-card p { font-size: 13px; }

  .service-card-premium { padding: 22px 18px; }
  .brand-chip { font-size: 13px; padding: 10px 16px; }

  .proof-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 14px; }
  .proof-strip-item strong { font-size: 12px; }

  .identity-card { flex-direction: column; padding: 18px; }
  .google-proof-card { padding: 18px; }
  .gpc-actions { flex-direction: column; }
  .gpc-actions a { justify-content: center; width: 100%; min-height: var(--touch-min); }

  .before-book-card { padding: 28px 20px; border-radius: 16px; }
  .lead-capture-card { border-radius: 16px; }

  .pickup-areas-card,
  .local-seo-card { padding: 22px 18px; }

  .review-slide { padding: 20px 18px; }
  .gallery-filter-btn { min-height: 40px; font-size: 13px; padding: 8px 14px; }

  .main-nav .nav-link { padding: 12px 16px; font-size: 15px; }
  .btn-book { width: 100%; text-align: center; justify-content: center; margin-top: 8px; }
}

@media(max-width:389.98px) {
  .pickup-areas-grid { grid-template-columns: 1fr; }
  .hero-mobile-trust-card { padding: 14px 16px; gap: 8px; }
  .hmt-rating strong { font-size: 24px; }
  .hmt-stat strong { font-size: 16px; }
  .urgency-bar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .urgency-bar-link { align-self: flex-end; }
}

@media(max-width:359.98px) {
  .hero-pill { font-size: 11px; padding: 7px 10px; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .mob-action span { font-size: 11px; }
}

/* ══════════════════════════════════════════
   MOBILE-FIRST AUDIT FIXES (320–768px)
   iPhone · Android · Small screens
   ══════════════════════════════════════════ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.nav-open { overflow: hidden; }

/* Navbar — mobile call + scrollable menu */
.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  border-radius: 50%;
  background: rgba(227,30,36,.08);
  color: var(--red);
  text-decoration: none;
  font-size: 18px;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-call:active { transform: scale(.95); }

@media(max-width:991.98px) {
  .main-nav { padding-top: 8px; padding-bottom: 8px; }
  .main-nav > .container { flex-wrap: nowrap; gap: 8px; }
  .navbar-brand { margin-right: 0; max-width: calc(100% - 108px); }
  .nav-menu-panel {
    max-height: calc(100dvh - var(--nav-height) - var(--mob-bar-h) - 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 12px;
    margin-top: 8px;
    border-top: 1px solid #eee;
  }
  .main-nav .navbar-nav { padding-top: 8px; }
  .main-nav .nav-link {
    padding: 14px 16px !important;
    font-size: 15px !important;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
  }
  .main-nav .nav-link::after { display: none; }
  .btn-book {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 15px !important;
    border-radius: 10px !important;
    margin: 8px 16px 4px !important;
    padding: 14px 20px !important;
  }
}

@media(max-width:575.98px) {
  :root { --logo-icon-size: 52px; --nav-height: 72px; }
  .brand-name { font-size: 18px; }
}

/* Touch targets — links & text CTAs */
.scp-cta,
.learn-more,
.brand-identity-link,
.google-review-link {
  min-height: var(--touch-min);
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
}
.brand-identity-link { padding: 10px 0; font-size: 14px; }
.google-review-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  margin-top: 4px;
}

.btn-outline-brand {
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
}
.btn-pricing {
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
}

/* Gallery filters — horizontal scroll on narrow screens */
@media(max-width:767.98px) {
  .gallery-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 4px;
    padding-right: 4px;
    scrollbar-width: none;
  }
  .gallery-filter-tabs::-webkit-scrollbar { display: none; }
  .gallery-filter-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: var(--touch-min);
    padding: 10px 16px;
    font-size: 14px;
  }
  .section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .section-header .btn-outline-brand { width: 100%; }
}

/* Google proof card — stack on mobile */
@media(max-width:575.98px) {
  .gpc-header { flex-wrap: wrap; gap: 10px; }
  .gpc-rating { margin-left: 0 !important; width: 100%; text-align: left !important; }
  .gpc-name { font-size: 16px; }
  .brand-identity-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .brand-identity-text { font-size: 13px; min-width: 0; }
  .brand-identity-link { align-self: flex-start; }
}

/* Footer — touch-friendly */
.footer-domain { font-size: 13px; color: #777; }
.footer-domain-link {
  color: #aaa;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

@media(max-width:767.98px) {
  footer a:not(.footer-brand-block):not(.btn):not(.footer-domain-link) {
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 6px 0;
  }
  footer .btn-sm {
    min-height: var(--touch-min);
    padding: 10px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
  }
  .footer-social a {
    width: var(--touch-min) !important;
    height: var(--touch-min) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
  }
  .map-embed-wrap iframe { height: 220px !important; }
  .cta-title { font-size: clamp(22px, 6vw, 28px); }
  .cta-section { padding: 32px 0 calc(32px + env(safe-area-inset-bottom, 0px)); }
}

/* Typography — minimum readable sizes */
@media(max-width:767.98px) {
  .hero-brand-motto { font-size: 11px; letter-spacing: .08em; line-height: 1.5; }
  .hero-pill { font-size: 12px; line-height: 1.3; }
  .section-label { font-size: 11px; }
  .trust-strip-label { font-size: 12px; }
  .faq-accordion .accordion-body { font-size: 15px; padding: 0 16px 16px; }
  .faq-accordion .accordion-button { padding: 16px; line-height: 1.45; }
  .rcp-text { font-size: 16px; line-height: 1.8; }
  .rcp-text[lang="hi"] { font-size: 17px; line-height: 1.9; }
  .rcp-name { font-size: 15px; }
  .rcp-stars { font-size: 15px; }
  .pricing-service { font-size: 16px; }
  .pricing-price { font-size: clamp(28px, 8vw, 36px); }
  .pickup-area-chip { font-size: 14px; word-break: break-word; }
  .local-seo-chip { font-size: 14px; line-height: 1.35; }
  .booking-modal-sub { font-size: 13px; }
  .booking-reassurance span { font-size: 13px; }
}

/* Spacing — reduce excess vertical padding */
@media(max-width:767.98px) {
  .row.g-5 { --bs-gutter-y: 2rem; }
  .mb-5 { margin-bottom: 2rem !important; }
  .hero-mobile-trust { padding-bottom: 16px; }
  .trust-strip { padding: 16px 0; }
  .step-card { padding: 22px 18px; }
  .team-card { padding: 18px; }
  .pricing-card-premium { padding: 24px 18px; }
  .review-card-premium { padding: 20px 16px; }
  .google-rating-premium { padding: 18px 20px; }
  .reviews-heading { font-size: clamp(26px, 7vw, 34px); }
  .review-source-note { font-size: 14px; }
  .grp-num { font-size: 30px; }
  .reviews-header-text { text-align: left; }
}

/* iOS / Android safe areas */
@supports (padding: max(0px)) {
  .main-nav {
    padding-top: max(8px, env(safe-area-inset-top));
  }
  .mobile-action-bar {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  .container {
    padding-left: max(16px, env(safe-area-inset-left, 16px));
    padding-right: max(16px, env(safe-area-inset-right, 16px));
  }
}

/* Disable hover transforms on touch — prevents sticky hover states */
@media (hover: none) and (pointer: coarse) {
  .service-card-premium:hover,
  .step-card:hover,
  .pricing-card-premium:hover,
  .team-card:hover,
  .brand-chip:hover,
  .gallery-item-premium:hover .gallery-img {
    transform: none;
    box-shadow: var(--shadow);
  }
  .btn-hero-primary:hover,
  .btn-hero-whatsapp:hover {
    transform: none;
  }
}

/* ══════════════════════════════════════════
   SITE-WIDE TYPOGRAPHY SYSTEM
   Inter body · Oswald brand wordmark only
   ══════════════════════════════════════════ */

/* Brand wordmark — keep Oswald */
.brand-name,
.footer-brand-name {
  font-family: var(--font-brand) !important;
}

/* Headings — unified Inter */
h1, h2, h3, h4, h5, h6,
.hero-premium-title,
.section-title,
.cta-title,
.reviews-heading,
.founder-name-lg,
.founder-legacy-compact h3,
.pricing-service,
.service-card-premium h5,
.step-card h5,
.team-card h5,
.identity-card h5,
.pickup-step-card h5,
.about-pillar-card h5,
.trust-pillar-card h5 {
  font-family: var(--font-sans);
  letter-spacing: var(--tracking-tight);
}

/* Hero & trust strip */
.hero-brand-motto {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-premium-proof {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
}
.hero-pill {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
}
.hero-pill i { font-size: 11px; }
.hero-warranty-badge {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
}
.htc-num,
.htc-stat strong,
.hmt-rating strong,
.hmt-stat strong {
  font-family: var(--font-sans);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.htc-label,
.htc-stat span,
.hmt-rating span,
.hmt-stat span {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* Stats & numbers */
.trust-strip-value,
.stat-num,
.pricing-price,
.grp-num {
  font-family: var(--font-sans) !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--tracking-tight);
}

/* Cards & content */
.service-card-premium h5,
.step-card h5,
.team-card h5,
.identity-card h5,
.about-pillar-card h5,
.trust-pillar-card h5 {
  font-size: var(--text-lg);
  font-weight: 700;
}
.service-card-premium p,
.step-card p,
.team-card p,
.identity-card p,
.about-pillar-card p,
.trust-pillar-card p,
.pickup-step-card p,
.pickup-sub,
.why-text,
.lead-about,
.founder-story-lg,
.local-seo-text,
.brand-identity-text {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: var(--leading-relaxed);
}
.trust-strip-label,
.brand-tagline,
.footer-brand-tagline {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.brand-chip,
.local-seo-chip,
.pickup-area-chip {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Buttons & CTAs */
.btn-hero-primary,
.btn-hero-whatsapp,
.btn-book,
.btn-outline-brand,
.btn-pricing,
.btn-submit-app,
.btn-lead-call,
.btn-gpc-primary,
.btn-gpc-outline,
.cta-section .btn,
.mob-action,
.urgency-bar-link {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0;
}
.btn-book { font-size: var(--text-sm); }

/* CTA & booking */
.cta-title {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}
.cta-motto {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}
.booking-modal-title {
  font-family: var(--font-sans) !important;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}
.booking-modal-sub,
.booking-fine-print,
.booking-reassurance span {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-normal);
}
.form-label-app {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* FAQ */
.faq-accordion .accordion-button {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 600;
  line-height: var(--leading-normal);
}
.faq-accordion .accordion-body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: var(--leading-relaxed);
}

/* Footer */
footer,
.footer-desc,
.footer-legal-note {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-relaxed);
}
footer .footer-title {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}
.footer-copyright {
  font-size: var(--text-xs);
  color: #555;
  font-weight: 500;
}
.byb-title-accent { color: #fff; font-weight: 800; }

/* Dark sections */
.why-section .section-title,
.before-book-card .section-title,
.lead-capture-card .section-title,
.pickup-banner .section-title {
  font-weight: 800;
}
.pickup-step-card h5 { font-size: var(--text-md); font-weight: 700; }
.pickup-step-card p { font-size: var(--text-sm); }

/* Pricing */
.pricing-service { font-size: var(--text-lg); font-weight: 700; }
.pricing-time,
.pricing-warranty,
.pricing-note {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* Founder / legacy */
.founder-name-lg { font-weight: 800; }
.founder-quote-lg {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: var(--leading-relaxed);
}
.founder-credentials,
.founder-role-lg,
.timeline-content p {
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Topbar */
.topbar {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
}

/* Urgency bar */
.urgency-bar-inner span {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* WhatsApp float */
.whatsapp-float {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* Hindi content sitewide */
[lang="hi"],
.rcp-text[lang="hi"] {
  font-family: var(--font-hi);
}

@media(max-width:767.98px) {
  body { font-size: var(--text-base); }
  .section-desc,
  .service-card-premium p,
  .step-card p,
  .why-text { font-size: var(--text-base); }
  .section-title { font-size: clamp(1.625rem, 6vw, 2rem); }
  .hero-premium-title { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .nav-link { font-size: var(--text-md); }
}
