/* ============================================
   LUTZ AUTO DETAILING
   Cohesive Theme: Deep Black + Warm Gold + Clean White
   Auto detailing = premium, dark, clean
   ============================================ */

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

:root {
  /* Core palette — unified dark + gold theme */
  --black: #0a0a0f;
  --dark: #111118;
  --dark-card: #16161f;
  --dark-border: rgba(255,255,255,0.08);

  --gold: #d4a853;
  --gold-hover: #e4bc6a;
  --gold-glow: rgba(212, 168, 83, 0.25);
  --gold-subtle: rgba(212, 168, 83, 0.08);

  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f5f5f7;
  --gray-100: #e8e8ec;
  --gray-300: #b0b0b8;
  --gray-500: #6b6b78;
  --gray-700: #3a3a45;
  --gray-900: #1a1a22;

  --text: #1a1a22;
  --text-light: #6b6b78;
  --text-on-dark: #e0e0e5;
  --text-muted: #8a8a95;

  --success: #22c55e;
  --star: #facc15;

  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark .section__subtitle { color: var(--text-muted); }
.section--light { background: var(--gray-50); }

.section__header { text-align: center; margin-bottom: 48px; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--md { padding: 12px 28px; font-size: 0.95rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--gray-700);
  border-color: var(--gray-700);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition);
}
.header.scrolled {
  background: rgba(10,10,15,0.97);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-accent { color: var(--gold); margin-left: 2px; }
.logo-text--footer { font-size: 1.1rem; }

.nav__list { display: flex; gap: 28px; }
.nav__link {
  color: rgba(255,255,255,0.6);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--white); }

.header__actions { display: flex; gap: 10px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,168,83,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212,168,83,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, #0d0d14 100%);
}
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}
.hero__floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}
.hero__floating-orb--1 {
  width: 500px; height: 500px;
  background: rgba(212,168,83,0.07);
  top: -10%; right: -10%;
}
.hero__floating-orb--2 {
  width: 350px; height: 350px;
  background: rgba(212,168,83,0.04);
  bottom: 5%; left: -8%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 100px 0 60px;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  animation: fadeInDown 0.6s ease-out;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.7s ease-out 0.15s both;
}
.hero__title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: var(--gray-300);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease-out 0.45s both;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  animation: fadeInUp 0.7s ease-out 0.6s both;
  border-top: 1px solid var(--dark-border);
  padding-top: 32px;
}
.hero__stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--dark-border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-number .counter-suffix { color: var(--gold); }
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 24px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,168,83,0.04) 0%, var(--white) 100%);
}

.service-card__badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-card__badge--featured {
  background: var(--gold);
  color: var(--black);
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-card__price {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.service-card__price strong {
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 800;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-card__list { margin-bottom: 18px; flex: 1; }
.service-card__list li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 0.88rem;
  color: var(--text);
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  background: var(--success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.service-card__time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

/* Add-ons */
.addons {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.addons__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.addon-item:hover {
  border-color: var(--gold);
}
.addon-item__name { font-size: 0.84rem; font-weight: 500; }
.addon-item__price { font-weight: 700; color: var(--gold); font-size: 0.84rem; }
.addons__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* ---------- Why Us ---------- */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(212,168,83,0.25);
  transform: translateY(-2px);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid rgba(212,168,83,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-300);
  border: 2px dashed var(--gray-100);
}
.about__content .section__title { text-align: left; margin-bottom: 16px; }
.about__content .section__eyebrow { text-align: left; }
.about__content p {
  margin-bottom: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}
.about__content h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--text);
}
.about__process {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  counter-reset: step;
}
.about__process li {
  counter-increment: step;
  padding: 10px 0 10px 44px;
  font-size: 0.92rem;
  color: var(--text-light);
  position: relative;
  line-height: 1.5;
}
.about__process li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(212,168,83,0.2);
}

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.gallery__item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery__placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  gap: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform var(--transition);
}
.gallery__placeholder:hover { transform: scale(1.03); }
.gallery__placeholder small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.6;
}
.gallery__tip {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* ---------- Reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 3.5rem;
  color: var(--gold-subtle);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.review-card__stars {
  color: var(--star);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.reviews__embed { text-align: center; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.faq__item.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq__item.active .faq__question { color: var(--gold); }
.faq__question:hover { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.active .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 0 20px 16px;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 88px 0;
  text-align: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.1) 0%, transparent 55%);
}
.cta-section__inner { position: relative; }
.cta-section__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta-section__text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-section__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-section__phone { font-size: 0.9rem; color: var(--text-muted); }
.cta-section__phone a { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding-top: 56px;
  border-top: 1px solid var(--dark-border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer__tagline { font-size: 0.85rem; margin-top: 12px; line-height: 1.6; }
.footer__heading {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer__links li { padding: 4px 0; font-size: 0.84rem; }
.footer__links a { color: rgba(255,255,255,0.45); }
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 8px; margin-top: 14px; }
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.footer__social-link:hover {
  background: var(--gold);
  color: var(--black);
}
.footer__bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Page Header ---------- */
.page-header {
  position: relative;
  background: var(--black);
  padding: 120px 0 56px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212,168,83,0.08) 0%, transparent 55%);
}
.page-header__title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.page-header__subtitle {
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ---------- Booking ---------- */
.booking-form { max-width: 680px; margin: 0 auto; padding: 40px 0; }
.booking-form__section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}
.booking-form__section:last-child { border-bottom: none; }
.booking-form__section-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-form__section-number {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.package-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.package-option {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.package-option:hover { border-color: var(--gold); }
.package-option.selected {
  border-color: var(--gold);
  background: var(--gold-subtle);
}
.package-option input { display: none; }
.package-option__name { font-weight: 700; font-size: 0.9rem; }
.package-option__price { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

.vehicle-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vehicle-option {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 14px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
}
.vehicle-option:hover { border-color: var(--gold); }
.vehicle-option.selected {
  border-color: var(--gold);
  background: var(--gold-subtle);
}
.vehicle-option input { display: none; }

.addon-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.addon-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.86rem;
}
.addon-check:hover { border-color: var(--gold); }
.addon-check input { width: 16px; height: 16px; accent-color: var(--gold); }
.addon-check__price { margin-left: auto; font-weight: 700; color: var(--gold); font-size: 0.82rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}
.contact-info__item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid rgba(212,168,83,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info__label { font-weight: 700; margin-bottom: 2px; font-size: 0.92rem; }
.contact-info__value { font-size: 0.85rem; color: var(--text-light); }

.quote-form { max-width: 580px; margin: 0 auto; padding: 40px 0; }

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav.active { display: block; }
.mobile-nav .nav__list { flex-direction: column; gap: 0; }
.mobile-nav .nav__link {
  display: block;
  padding: 16px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--dark-border);
}
.mobile-nav .header__actions {
  margin-top: 20px;
  flex-direction: column;
  display: flex;
  gap: 10px;
}
.mobile-nav .btn { width: 100%; justify-content: center; }

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 998;
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.mobile-cta__inner {
  display: flex;
  gap: 10px;
}
.mobile-cta .btn { flex: 1; justify-content: center; font-size: 0.88rem; padding: 12px 0; }

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .addons__grid { grid-template-columns: 1fr 1fr; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }

  /* Header */
  .header__inner { height: 56px; }
  .nav { display: none; }
  .header__actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { top: 56px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__content { padding: 80px 0 40px; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero__ctas { gap: 10px; margin-bottom: 36px; }
  .hero__ctas .btn--lg { padding: 12px 24px; font-size: 0.92rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 24px; }
  .hero__stat { padding: 0 8px; border-right: none; }
  .hero__stat:nth-child(odd) { border-right: 1px solid var(--dark-border); }
  .hero__stat-number { font-size: 1.5rem; }
  .hero__stat-label { font-size: 0.68rem; }

  /* Sections */
  .section__title { font-size: 1.65rem; }
  .section__subtitle { font-size: 0.92rem; }
  .section__header { margin-bottom: 36px; }

  /* Cards */
  .why-us__grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card { padding: 24px 18px; text-align: left; display: flex; flex-direction: row; gap: 16px; align-items: flex-start; }
  .why-card__icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .why-card__icon svg { width: 24px; height: 24px; }

  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .addons__grid { grid-template-columns: 1fr; }
  .addons { padding: 24px 16px; }

  .form-row { grid-template-columns: 1fr; }
  .addon-checks { grid-template-columns: 1fr; }
  .package-select { grid-template-columns: 1fr; }
  .vehicle-select { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-section__title { font-size: 1.8rem; }
  .cta-section { padding: 64px 0; }
  .page-header { padding: 100px 0 40px; }
  .page-header__title { font-size: 1.8rem; }

  /* Sticky Mobile CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 68px; } /* space for sticky bar */
}

/* Small phones */
@media (max-width: 420px) {
  .hero__title { font-size: 1.85rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn--lg { width: 100%; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 28px 18px 20px; }
  .review-card { padding: 22px 18px; }
  .cta-section__buttons { flex-direction: column; }
  .cta-section__buttons .btn--lg { width: 100%; }
}
