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

:root {
  --cream: #faf4f0;
  --cream-deep: #f1e8dc;
  --green: #1d3e35;
  --green-soft: #264a40;
  --gold: #c68d21;
  --gold-soft: #d4a43a;
  --black: var(--cream);
  --black-soft: var(--cream-deep);
  --panel: #ffffff;
  --panel-border: rgba(29, 62, 53, 0.12);
  --panel-border-hover: rgba(198, 141, 33, 0.4);
  --chrome-100: var(--green);
  --chrome-300: var(--gold);
  --chrome-500: #7d938b;
  --chrome-700: #5c7169;
  --white: var(--green);
  --text-muted: #5c7169;
  --radius: 16px;
  --shadow: 0 10px 28px rgba(29, 62, 53, 0.08);
  --shadow-lg: 0 22px 50px rgba(29, 62, 53, 0.12);
  --glow: 0 0 0 1px rgba(198, 141, 33, 0.18), 0 18px 40px rgba(29, 62, 53, 0.1);
  --chrome-gradient: linear-gradient(135deg, #d4a43a 0%, #c68d21 50%, #a87616 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a:focus,
button:focus,
.btn:focus,
.nav-link:focus,
.logo:focus,
.brand:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(198, 141, 33, 0.45);
  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: var(--green);
  box-shadow: 0 8px 24px rgba(198, 141, 33, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(198, 141, 33, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: rgba(29, 62, 53, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(29, 62, 53, 0.06);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: rgba(29, 62, 53, 0.22);
  width: 100%;
}

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

.btn-call {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
  padding: 10px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-2px);
  background: var(--green-soft);
  box-shadow: 0 8px 22px rgba(29, 62, 53, 0.18);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 244, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 62, 53, 0.1);
  transition: background 0.3s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  z-index: 2;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
}

.brand em {
  font-style: normal;
  font-weight: 600;
  color: var(--chrome-300);
}

.main-nav {
  display: flex;
  gap: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.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: relative;
  z-index: 2;
}

.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: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--green);
}

@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(29, 62, 53, 0.42) 0%,
    rgba(29, 62, 53, 0.18) 45%,
    rgba(29, 62, 53, 0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 48px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  min-height: calc(100vh - 72px);
  width: 100%;
}

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

.hero-badge-logo {
  width: clamp(180px, 42vw, 320px);
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: var(--cream);
  padding: 10px 16px;
  animation: floatLogo 5s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(198, 141, 33, 0.25),
    0 0 0 6px rgba(250, 244, 240, 0.2),
    0 0 45px rgba(198, 141, 33, 0.28);
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
  padding: 0;
}

.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(--cream);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(29, 62, 53, 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(--cream);
}

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

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

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

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

.stars {
  color: var(--gold);
  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);
}

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

.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: #fffdf8;
  border-color: rgba(198, 141, 33, 0.45);
  box-shadow: var(--glow);
}

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

.ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--chrome-gradient);
  color: var(--green);
  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-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(--gold);
  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;
}

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

.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: var(--green);
  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;
}

.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);
}

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

.fee-notice-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--chrome-300);
  margin-bottom: 8px;
}

.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);
}

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

.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: var(--green);
  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;
}

/* ---------- This is our work ---------- */
.our-work {
  padding: 90px 0;
  background: var(--black);
}

.work-video-wrap {
  max-width: 380px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green);
  box-shadow: var(--shadow-lg);
}

.work-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 680px);
  object-fit: contain;
  background: var(--green);
}

.work-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.work-ba {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.work-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.work-ba figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.work-shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-deep);
  aspect-ratio: 3 / 4;
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.work-shot:hover img {
  transform: scale(1.05);
}

.work-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(29, 62, 53, 0.88);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.work-label-after {
  background: var(--gold);
  color: var(--green);
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(29, 62, 53, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 64px 32px;
}

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

.work-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.work-lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--chrome-gradient);
  color: var(--green);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  cursor: pointer;
}

.work-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(250, 244, 240, 0.92);
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.work-lightbox-prev {
  left: 16px;
}

.work-lightbox-next {
  right: 16px;
}

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

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

.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(--cream);
  font-weight: 800;
  background: var(--gold);
  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(29, 62, 53, 0.12);
}

.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);
}

/* ---------- Instant quote (Blanco-style) ---------- */
.quote {
  padding: 90px 0 160px;
  background: var(--cream);
  color: var(--green);
}

.quote-wrap {
  max-width: 720px;
}

.quote-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
}

.quote-sub {
  color: #6b6b6b;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.quote-fieldset {
  border: 0;
  margin: 0 0 28px;
  padding: 0;
}

.quote-fieldset legend {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 12px;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.choice-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice {
  min-width: 72px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #d9d5ce;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
}

.choice.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.quote-form .form-row label {
  color: var(--green);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d5ce;
  background: #fff;
  border-radius: 8px;
  font: inherit;
  color: #1a1a1a;
}

.quote-form .optional {
  color: #8a8a8a;
  font-weight: 500;
}

.quote-form .form-success,
.quote-form .form-error {
  color: #1a1a1a;
  background: #fff;
  border-color: #7d9b96;
}

.quote-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e6e2da;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  z-index: 900;
}

.quote-bar-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.quote-total {
  text-align: right;
  font-size: 1rem;
  color: #1a1a1a;
}

.quote-total strong {
  font-size: 1.25rem;
}

.quote-bar input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d5ce;
  border-radius: 8px;
  font: inherit;
}

.quote-book {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--cream);
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
}

.quote-book:hover {
  background: var(--green-soft);
}

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

.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-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(29, 62, 53, 0.1);
}

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

.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);
}

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

.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;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green);
  color: var(--cream);
  padding: 26px 0;
  border-top: 1px solid rgba(29, 62, 53, 0.2);
}

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

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

/* ---------- Mobile book FAB ---------- */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--chrome-gradient);
  color: var(--green);
  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: #fff;
  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;
  border: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  z-index: 1100;
  transition: transform 0.15s ease, box-shadow 0.15s ease, bottom 0.2s ease;
}

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

.review-fab-google svg {
  display: block;
  width: 32px;
  height: 32px;
}

.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);
}

.review-fab.is-raised {
  bottom: max(168px, calc(152px + env(safe-area-inset-bottom)));
}

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

  html {
    scroll-padding-top: 64px;
  }

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

  .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;
    transform: translateY(-140%);
    display: flex;
    background: rgba(250, 244, 240, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 2px;
    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(29, 62, 53, 0.1);
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .brand span {
    display: none;
  }

  .site-header {
    border-bottom: 1px solid rgba(29, 62, 53, 0.1);
  }

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

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

  .hero-badge-logo {
    width: min(220px, 70vw);
    height: auto;
  }

  .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-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;
  }

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

  .work-ba-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .work-lightbox {
    padding: 56px 12px 20px;
  }

  .work-lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }

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

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

  .quote {
    padding-bottom: 200px;
  }

  .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;
  }

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

  .fee-notice {
    max-width: none;
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    gap: 12px;
  }

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

  .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: none;
  }

  .review-fab {
    display: flex;
    flex-direction: column;
    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;
  }

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

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

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

  .main-nav {
    gap: 12px;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@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: min(200px, 72vw);
    height: auto;
  }

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

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