/* ========================================
   OTA Interior Detailing UF
   Colors: #004225 (British Racing Green) + #fff
   ======================================== */

:root {
  --green: #004225;
  --green-light: #005a34;
  --green-dark: #00301b;
  --green-bg: #f0f7f3;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gold: #b8860b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Container */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Typography */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title--left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,66,37,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--full { width: 100%; }
.btn--large { padding: 16px 40px; font-size: 1.1rem; }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo img { border-radius: 50%; }
.header__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}
.header__brand-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-600);
}
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.header__link:hover { color: var(--green); }
.header__link--cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
}
.header__link--cta:hover { background: var(--green-light); }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--green-bg) 0%, var(--white) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero__ctas { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust-item {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}
.hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ========================================
   SERVICES
   ======================================== */
.services { padding: 80px 0; background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}
.service-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.service-card__icon { margin-bottom: 16px; }
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 12px;
}
.service-card__desc {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.service-card__list {
  text-align: left;
  margin-bottom: 20px;
}
.service-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.service-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.service-card__price { margin-bottom: 20px; }
.service-card__amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works { padding: 80px 0; background: var(--green-bg); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.step {
  text-align: center;
  max-width: 260px;
}
.step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}
.step__text { color: var(--gray-600); font-size: 0.9rem; }
.step__arrow {
  font-size: 1.5rem;
  color: var(--green);
  margin-top: 18px;
  opacity: 0.4;
}

/* ========================================
   ABOUT
   ======================================== */
.about { padding: 80px 0; background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.about__images { display: flex; gap: 20px; }
.about__img-wrapper {
  text-align: center;
}
.about__img-wrapper img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.about__img-name {
  margin-top: 10px;
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}
.about__img-name span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gray-600);
}
.about__content p { color: var(--gray-600); margin-bottom: 16px; }
.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.about__stat { text-align: center; }
.about__stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.about__stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   BOOKING
   ======================================== */
.booking { padding: 80px 0; background: var(--green-bg); }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px; /* Prevents iOS auto-zoom on focus */
  transition: var(--transition);
  background: var(--white);
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,66,37,0.1);
}
.form-input--textarea { resize: vertical; min-height: 80px; }

/* ========================================
   WIZARD
   ======================================== */
.wizard {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Progress Bar */
.wizard__progress {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  gap: 0;
}
.wizard__step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.wizard__step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.wizard__step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
}
.wizard__step-indicator--active .wizard__step-num {
  background: var(--green);
  color: var(--white);
}
.wizard__step-indicator--active .wizard__step-label {
  color: var(--green);
  font-weight: 600;
}
.wizard__step-indicator--done .wizard__step-num {
  background: var(--green);
  color: var(--white);
}
.wizard__step-indicator--done .wizard__step-label {
  color: var(--green);
}
.wizard__line {
  flex: 1;
  height: 3px;
  background: var(--gray-200);
  margin: 0 8px;
  border-radius: 2px;
  overflow: hidden;
}
.wizard__line-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 0.4s ease;
}

/* Wizard Body */
.wizard__body { padding: 32px; }
.wizard__panel { display: none; }
.wizard__panel--active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wizard__panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 24px;
}
.wizard__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

/* Wizard Services (Step 1) */
.wizard__services { display: flex; flex-direction: column; gap: 12px; }
.wz-service input { display: none; }
.wz-service__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.wz-service__card:hover { border-color: var(--green); background: rgba(0,66,37,0.02); }
.wz-service input:checked + .wz-service__card {
  border-color: var(--green);
  background: rgba(0,66,37,0.06);
  box-shadow: 0 0 0 3px rgba(0,66,37,0.1);
}
.wz-service input:checked + .wz-service__card .wz-service__check {
  color: var(--green);
}
.wz-service__icon { color: var(--green); flex-shrink: 0; }
.wz-service__info { flex: 1; }
.wz-service__name { display: block; font-weight: 700; font-size: 1.05rem; color: var(--gray-800); }
.wz-service__desc { display: block; font-size: 0.85rem; color: var(--gray-600); margin-top: 2px; }
.wz-service__meta { display: block; font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }
.wz-service__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.wz-service__check { color: var(--gray-200); transition: var(--transition); flex-shrink: 0; }
.wz-service__popular {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Calendar (Step 2) */
.wz-datetime { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wz-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.wz-calendar__month {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  text-transform: capitalize;
}
.wz-calendar__nav {
  background: none;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--green);
  transition: var(--transition);
}
.wz-calendar__nav:hover { background: var(--green-bg); border-color: var(--green); }
.wz-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.wz-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.wz-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  color: var(--gray-800);
}
.wz-day:hover:not(.wz-day--disabled):not(.wz-day--empty) {
  background: var(--green-bg);
  color: var(--green);
}
.wz-day--selected {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.wz-day--today { border: 2px solid var(--green); }
.wz-day--disabled {
  color: var(--gray-200);
  cursor: default;
}
.wz-day--empty { cursor: default; }

/* Time slots */
.wz-times__label { font-weight: 600; color: var(--green); font-size: 0.9rem; margin-bottom: 12px; }
.wz-times__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.wz-times__empty { color: var(--gray-400); font-size: 0.9rem; font-style: italic; }
.wz-time-slot {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-800);
  min-height: 44px;
  min-width: 44px;
}
.wz-time-slot:hover { border-color: var(--green); background: var(--green-bg); }
.wz-time-slot--selected {
  background: var(--green) !important;
  color: var(--white) !important;
  border-color: var(--green) !important;
}

/* Summary strip */
.wz-selected-summary {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--green-bg);
  border: 1px solid rgba(0,66,37,0.15);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.95rem;
  color: var(--green);
}

/* Details (Step 3) */
.wz-details__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Done (Step 4) */
.wz-done { text-align: center; padding: 20px 0; }
.wz-done__icon { margin-bottom: 20px; color: var(--green); }
.wz-done__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 12px;
}
.wz-done__text { color: var(--gray-600); margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; }
.wz-done__summary {
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.wz-done__summary strong { color: var(--green); }
.wz-done__note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--green-dark); color: var(--white); padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand img { border-radius: 50%; }
.footer__brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer__contact p { margin-bottom: 8px; }
.footer__contact a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--white); }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ========================================
   STICKY CTA (mobile)
   ======================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__image { order: -1; }
  .hero__image img { max-height: 300px; width: 100%; object-fit: cover; margin: 0 auto; }

  .services__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .service-card--featured { transform: none; }
  .service-card--featured:hover { transform: translateY(-4px); }

  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); margin: 0; }

  .about__inner { grid-template-columns: 1fr; }
  .about__images { justify-content: center; }
  .section-title--left { text-align: center; }
  .about__content { text-align: center; }
  .about__stats { justify-content: center; }

  .wz-datetime { grid-template-columns: 1fr; }
  .wz-details__row { grid-template-columns: 1fr; }
  .wizard__body { padding: 24px; }
  .wizard__progress { padding: 16px 20px; gap: 0; }
  .wizard__step-label { display: none; }
  .wizard__step-num { width: 28px; height: 28px; font-size: 0.8rem; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__links { align-items: center; }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .header__nav.active { display: flex; }
  .header__burger { display: flex; }
  .header__link--cta { width: 100%; text-align: center; }

  .sticky-cta { display: block; }
  .footer { padding-bottom: 70px; }
  .booking { padding-bottom: 100px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 90px; }
  .hero__title { font-size: 1.8rem; }
  .about__images { flex-direction: column; align-items: center; }

  /* Wizard mobile optimizations */
  .wizard__body { padding: 16px; }
  .wizard__panel-title { font-size: 1.2rem; }

  /* Service cards: stack price below on narrow screens */
  .wz-service__card { flex-wrap: wrap; padding: 14px; gap: 10px; }
  .wz-service__icon { display: none; }
  .wz-service__price { font-size: 1.2rem; }

  /* Calendar: bigger touch targets */
  .wz-calendar__days { gap: 2px; }
  .wz-day { font-size: 0.85rem; min-height: 38px; }

  /* Time slots: full width on mobile */
  .wz-times__grid { flex-direction: column; }
  .wz-time-slot { width: 100%; text-align: center; padding: 14px; font-size: 1rem; }

  /* Wizard nav buttons */
  .wizard__nav { flex-direction: column-reverse; }
  .wizard__nav .btn { width: 100%; justify-content: center; min-height: 48px; }

  /* Form inputs bigger touch targets */
  .form-input { padding: 14px 16px; }
}
