/* ---------- Reset & base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0b;
  --black-soft: #0a0a0b;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-border: rgba(255, 255, 255, 0.1);
  --panel-border-hover: rgba(255, 255, 255, 0.22);
  --chrome-100: #f5f6f8;
  --chrome-300: #d7dbe1;
  --chrome-500: #aab1bd;
  --chrome-700: #7a808c;
  --white: #ffffff;
  --text-muted: #9aa2ad;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.65);
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 25px 55px rgba(0, 0, 0, 0.6);
  --chrome-gradient: linear-gradient(135deg, #ffffff 0%, #cfd4db 45%, #ffffff 100%);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a:focus,
button:focus,
.btn:focus,
.nav-link:focus,
.logo:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.btn:focus {
  border-radius: 999px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  font-weight: 800;
  color: var(--white);
}

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

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 12px auto 40px;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--chrome-gradient);
  color: #0a0a0b;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--chrome-300);
  border-color: rgba(255, 255, 255, 0.25);
  width: 100%;
}

.btn-outline:hover {
  background: var(--chrome-gradient);
  color: #0a0a0b;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-call {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 72px;
}

.logo {
  font-weight: 800;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  color: var(--white);
  line-height: 1.15;
  max-width: 220px;
}

.logo span {
  color: var(--white);
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 1;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--chrome-300);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 130vh;
  display: flex;
  align-items: stretch;
  padding-top: 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0b;
}

@keyframes floatSunset {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}

.hero-sunset-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
  animation: floatSunset 14s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.38) 0%,
    rgba(10, 10, 11, 0.15) 45%,
    rgba(10, 10, 11, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 70px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 100%;
  width: 100%;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-badge-logo {
  width: clamp(120px, 16vw, 190px);
  height: clamp(120px, 16vw, 190px);
  object-fit: cover;
  border-radius: 50%;
  animation: floatLogo 5s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 0 6px rgba(255, 255, 255, 0.06),
    0 0 45px rgba(255, 180, 100, 0.35);
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  max-width: 780px;
  line-height: 1.15;
  color: var(--white);
}

.hero-sub {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  margin-top: 44px;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.hero-badges li.hero-badge-notice {
  flex: 1 1 100%;
  max-width: 620px;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}

.badge-icon {
  font-size: 1.2rem;
}

/* ---------- Social proof ---------- */
.social-proof {
  background: var(--black-soft);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.stars {
  color: #f5c518;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.35);
}

.social-proof-inner p {
  color: var(--white);
  font-weight: 600;
}

/* ---------- Services / Pricing ---------- */
.services {
  padding: 90px 0;
  background: var(--black);
}

.wash-section {
  position: relative;
  overflow: hidden;
}

.wash-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

@keyframes floatWashCar {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 18px)); }
}

.wash-bg-car {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1050px, 110vw);
  max-width: none;
  opacity: 0.26;
  animation: floatWashCar 9s ease-in-out infinite;
  pointer-events: none;
}

.wash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.28) 0%,
    rgba(10, 10, 11, 0.12) 50%,
    rgba(10, 10, 11, 0.38) 100%
  );
}

.wash-content {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.pricing-notice {
  margin: 0 auto 28px;
  max-width: 820px;
}

.pricing-notice p {
  margin-bottom: 8px;
}

.pricing-notice p:last-child {
  margin-bottom: 0;
}

.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  min-height: 0;
}

.price-card .btn {
  margin-top: auto;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: var(--panel-border-hover);
}

.price-card.featured {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--glow);
}

.price-card.featured .price {
  color: var(--chrome-300);
}

.ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--chrome-gradient);
  color: #0a0a0b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.price-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome-300);
  vertical-align: middle;
  margin-left: 4px;
}

.price-card ul,
.price-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin-bottom: 14px;
}

.price-features-single {
  grid-template-columns: 1fr;
}

.price-card li,
.price-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  opacity: 1;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.price-card li::before,
.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
}

.package-time {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--chrome-100);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.package-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--chrome-300);
  margin-bottom: 10px;
  line-height: 1.35;
}

.pricing-combo-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-soon {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  opacity: 0.72;
}

.wash-card {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.combo-bubble {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 108px;
  max-width: 124px;
  padding: 16px 14px;
  border-radius: 999px;
  background: var(--chrome-gradient);
  color: #0a0a0b;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}

.combo-bubble:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.24);
}

.combo-bubble-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}

.combo-bubble-text {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.price-card.featured .btn-primary {
  background: var(--chrome-gradient);
}

.fee-notice {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 22px 28px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.fee-tabs {
  max-width: 760px;
  margin: 44px auto 0;
}

.pricing-fee-tabs {
  margin: 0 auto 28px;
}

.fee-tab-list {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.fee-tab {
  flex: 1;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fee-tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.fee-tab.is-active {
  color: #0a0a0b;
  background: var(--chrome-gradient);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.fee-tab-panels .fee-notice {
  margin-top: 0;
}

.fee-tab-panel[hidden] {
  display: none;
}

.fee-notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.fee-notice p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fee-notice strong {
  color: var(--chrome-300);
}

.fee-list {
  margin: 10px 0;
  padding-left: 4px;
}

.fee-list li {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.7;
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.fee-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--chrome-500);
}

.price-card.coming-soon {
  opacity: 0.55;
  filter: grayscale(0.4);
}

.price-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: var(--panel-border);
}

.ribbon-soon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-disabled {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  cursor: default;
}

/* ---------- How it works ---------- */
.has-photo-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.78) 0%, rgba(10, 10, 11, 0.62) 50%, rgba(10, 10, 11, 0.86) 100%);
}

.has-photo-bg > .container {
  position: relative;
  z-index: 1;
}

.how-it-works {
  padding: 90px 0;
  background: var(--black-soft);
}

.has-photo-bg.how-it-works .step {
  background: rgba(10, 10, 11, 0.72);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--chrome-gradient);
  color: #0a0a0b;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.12);
}

.step h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Our Work / VIMD Effect ---------- */
.our-work {
  padding: 90px 0;
  background: var(--black-soft);
}

.work-video-wrap {
  max-width: 920px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.work-video {
  display: block;
  width: 100%;
  max-height: min(72vh, 640px);
  object-fit: contain;
  background: #000;
}

.work-before-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.work-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 36px;
}

.work-group-title {
  max-width: 920px;
  margin: 36px auto 16px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
}

.work-group-title:first-of-type {
  margin-top: 0;
}

.work-interior-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 36px;
  align-items: stretch;
}

.work-before-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-after-panel {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.work-after-panel .work-video-wrap-inline {
  flex: 1;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 100%;
  position: relative;
}

.work-video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--chrome-100);
  pointer-events: none;
}

.work-after-panel .work-video {
  min-height: 100%;
  max-height: none;
  height: 100%;
}

.work-after-panel figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--chrome-100);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--panel-border);
}

.work-after-card figcaption {
  color: var(--chrome-100);
}

.work-gallery-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.ba-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 36px rgba(0, 0, 0, 0.55);
}

.ba-card figcaption {
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--panel-border);
}

.ba-slider {
  --ba-pos: 50%;
  --ba-full: 100%;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(1.06) contrast(1.06);
}

.ba-before-pane {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--ba-pos);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.ba-before-pane .ba-img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--ba-full);
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.18) brightness(1.08);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-tag {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-tag-before {
  left: 10px;
  color: #0a0a0b;
  background: rgba(255, 255, 255, 0.9);
}

.ba-tag-after {
  right: 10px;
  color: #fff;
  background: rgba(10, 10, 11, 0.72);
}

.work-collage-note {
  max-width: 720px;
  margin: -4px auto 22px;
}

.work-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.work-collage .work-photo-btn {
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.work-collage .work-photo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-collage .collage-big {
  grid-column: span 2;
  grid-row: span 2;
}

.work-collage .collage-tall {
  grid-row: span 2;
}

.work-collage .collage-wide {
  grid-column: span 2;
}

.work-feature-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 36px rgba(0, 0, 0, 0.55);
}

.work-feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.work-feature-card-large img {
  min-height: 280px;
}

.work-feature-card figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--panel-border);
}

.work-before-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 36px rgba(0, 0, 0, 0.55);
}

.work-before-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.work-photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.work-photo-btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.work-photo-btn img,
.work-feature-card img,
.work-before-card img {
  filter: saturate(1.06) contrast(1.05);
}

.work-photo-btn:hover img,
.work-photo-btn:focus img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.08) brightness(1.08);
}

.work-photo-view-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.78);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.work-photo-btn:hover .work-photo-view-hint,
.work-photo-btn:focus .work-photo-view-hint {
  opacity: 1;
}

.work-feature-card .work-photo-btn,
.work-feature-card .work-photo-btn img {
  min-height: 220px;
  height: 100%;
}

.work-feature-card-large .work-photo-btn img {
  min-height: 280px;
}

.work-before-card figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--panel-border);
}

/* ---------- Photo lightbox ---------- */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(10, 10, 11, 0.92);
  cursor: pointer;
}

.photo-lightbox-inner {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-lightbox-media {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.photo-lightbox-inner img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.photo-lightbox-inner figcaption {
  margin-top: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease;
}

.photo-lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

.photo-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.photo-lightbox-prev {
  left: 12px;
}

.photo-lightbox-next {
  right: 12px;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover,
.photo-lightbox-close:focus,
.photo-lightbox-nav:focus {
  background: rgba(255, 255, 255, 0.22);
}

body.lightbox-open {
  overflow: hidden;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 90px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--panel-border-hover);
  box-shadow: var(--glow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ---------- Why us ---------- */
.why-us {
  padding: 90px 0;
  background: var(--black-soft);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
}

.why-us-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 25px 60px rgba(0, 0, 0, 0.65);
}

.why-us-image img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  display: block;
}

.why-list {
  margin: 24px 0 30px;
}

.why-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.why-list li strong {
  color: var(--white);
}

.why-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 90px 0;
  background: var(--black);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--chrome-300);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 4px 22px;
  color: var(--text-muted);
}

/* ---------- Booking ---------- */
.booking {
  padding: 90px 0;
  background: var(--black-soft);
}

.booking.has-photo-bg .booking-form {
  background: rgba(16, 16, 18, 0.92);
}

.booking-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.booking-form .form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.booking-form .optional {
  font-weight: 500;
  color: var(--text-muted);
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.date-md-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}

.booking-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
}

.booking-form select option {
  background: var(--black);
  color: var(--white);
}

.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid var(--chrome-300);
  outline-offset: 1px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--text-muted);
}

.booking-form .form-row {
  margin-bottom: 16px;
}

.form-hint {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
}

.form-error.visible {
  display: block;
}

.form-error a {
  font-weight: 700;
  text-decoration: underline;
}

.booking-form .form-success a {
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Contact ---------- */
.contact {
  padding: 90px 0;
  background: var(--black-soft);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-inner:has(.contact-form[hidden]) {
  grid-template-columns: 1fr;
}

.contact-intro {
  color: var(--text-muted);
  margin: 16px 0 32px;
  max-width: 420px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.contact-form {
  background: var(--panel);
  color: var(--white);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--chrome-300);
  outline-offset: 1px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
}

.form-success.visible {
  display: block;
}

.form-success a {
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-phone {
  color: var(--white);
  font-weight: 700;
}

/* ---------- Mobile call FAB ---------- */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--chrome-gradient);
  color: #0a0a0b;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.25);
  z-index: 999;
}

/* ---------- Google review FAB (bottom right) ---------- */
.review-fab {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: min(280px, calc(100vw - 32px));
  padding: 18px 20px;
  background: var(--white);
  color: #0a0a0b;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.review-fab-google {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.review-fab-google svg {
  display: block;
}

.review-fab-stars {
  color: #f5a623;
  font-size: 1.45rem;
  letter-spacing: 3px;
  line-height: 1;
}

.review-fab-text {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.review-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .why-us-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    order: 2;
  }

  .pricing-combo-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .combo-bubble {
    max-width: none;
    width: 100%;
    min-width: 0;
    border-radius: 999px;
    padding: 12px 16px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 10px;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 2px;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    height: 56px;
    justify-content: flex-end;
  }

  .site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-content {
    padding: 28px 14px 32px;
    justify-content: center;
    gap: 16px;
  }

  .hero-badge-logo {
    width: 96px;
    height: 96px;
  }

  .hero-content h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: none;
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 1px;
    line-height: 1.4;
  }

  .hero-badges {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

  .hero-badges li {
    font-size: 0.85rem;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-badges li.hero-badge-notice {
    text-align: left;
    max-width: none;
    font-size: 0.84rem;
  }

  .hero-sunset-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    animation: none;
    object-position: center 30%;
  }

  .hero-cta {
    width: 100%;
    flex-direction: column;
    margin-top: 18px;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 13px 20px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
  }

  .section-title {
    font-size: clamp(1.45rem, 5vw, 1.75rem);
    width: 100%;
  }

  .section-sub {
    font-size: 0.9rem;
    margin-bottom: 18px;
    max-width: none;
  }

  .social-proof {
    padding: 16px 0;
  }

  .social-proof-inner {
    gap: 8px;
  }

  .social-proof-inner p {
    font-size: 0.88rem;
  }

  .work-video-wrap {
    margin-bottom: 20px;
  }

  .work-compare-grid,
  .work-interior-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-gallery-featured,
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ba-slider {
    aspect-ratio: 4 / 3;
  }

  .work-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .work-collage .collage-big,
  .work-collage .collage-wide {
    grid-column: span 2;
  }

  .why-us-image {
    max-height: 420px;
  }

  .work-before-stack {
    gap: 12px;
  }

  .work-after-panel .work-video {
    min-height: 220px;
    height: auto;
  }

  .work-group-title {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .work-before-grid {
    gap: 12px;
  }

  .work-feature-card img,
  .work-feature-card-large img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .work-photo-view-hint {
    opacity: 1;
  }

  .photo-lightbox {
    padding: 12px;
  }

  .photo-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .photo-lightbox-prev {
    left: 6px;
  }

  .photo-lightbox-next {
    right: 6px;
  }

  .services,
  .how-it-works,
  .our-work,
  .gallery,
  .why-us,
  .faq,
  .booking,
  .contact {
    padding: 32px 0;
  }

  .pricing-grid {
    gap: 12px;
  }

  .price-card {
    width: 100%;
    padding: 16px 14px;
  }

  .price-card ul,
  .price-features {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-card li,
  .price-features li {
    font-size: 0.86rem;
  }

  .package-time {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .pricing-soon {
    max-width: none;
  }

  .wash-card {
    max-width: none;
    margin: 0;
  }

  .fee-tabs,
  .fee-notice {
    max-width: none;
    width: 100%;
    margin-top: 18px;
  }

  .pricing-fee-tabs {
    margin: 0 0 16px;
  }

  .fee-tab-list {
    margin-bottom: 10px;
    gap: 8px;
  }

  .fee-tab {
    font-size: 0.78rem;
    padding: 9px 10px;
  }

  .fee-notice {
    padding: 14px;
    gap: 12px;
  }

  .fee-notice p,
  .fee-list li {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .booking-form {
    padding: 20px 14px;
  }

  .form-row-split,
  .date-md-row {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: 20px;
  }

  .step {
    padding: 12px 0;
  }

  .mobile-call-fab {
    display: flex;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .review-fab {
    bottom: max(12px, env(safe-area-inset-bottom));
    right: 10px;
    left: auto;
    width: min(148px, calc(100vw - 78px));
    padding: 10px 10px;
    font-size: 0.72rem;
    gap: 6px;
    border-radius: 12px;
  }

  .review-fab-google svg {
    width: 22px;
    height: 22px;
  }

  .review-fab-stars {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .review-fab-text {
    font-size: 0.62rem;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .site-footer {
    padding: 20px 0 calc(88px + env(safe-area-inset-bottom));
  }

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

  #wash,
  #services,
  #book,
  #contact {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 760px) {
  .header-call {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }

  .hero-badge-logo {
    width: 88px;
    height: 88px;
  }

  .services,
  .how-it-works,
  .our-work,
  .gallery,
  .why-us,
  .faq,
  .booking,
  .contact {
    padding: 28px 0;
  }

  .review-fab {
    width: min(132px, calc(100vw - 72px));
    padding: 8px;
  }

  .contact-form {
    padding: 20px;
  }
}
