/* ============================================
   CORONADO PHOTO & MEDIA — Contact page styles
   Hero, direct channels, hybrid wizard form,
   coverage, FAQ
   ============================================ */

/* ---------- HERO ---------- */
.contact-hero {
  background: var(--midnight);
  color: var(--text-on-dark);
  padding: var(--space-8) 0 var(--space-7);
}

.contact-hero .container {
  max-width: 760px;
}

.contact-hero__title {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-hero__title em {
  font-style: normal;
  color: var(--gold);
}

.contact-hero__lead {
  max-width: 60ch;
  margin-bottom: 0;
}

/* ---------- DIRECT CHANNELS ---------- */
.contact-channels {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-channels__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-channels__label {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin: 0 0 var(--space-4);
}

.contact-channels__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

@media (max-width: 480px) {
  .contact-channels__buttons {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}

.channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: var(--text-md);
  font-weight: 500;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
  color: #fff;
}

.channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.channel-btn--whatsapp {
  background: #25D366;
}

.channel-btn--whatsapp:hover {
  background: #1FB855;
}

.channel-btn--sms {
  background: var(--midnight);
}

.channel-btn--sms:hover {
  background: #1a3454;
}

.contact-channels__note {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin: 0;
  font-style: italic;
}

/* ---------- BOOKING FORM HEADER ---------- */
.booking-form__header {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.booking-form__header .h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--midnight);
}

.booking-form__header .h2 em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- BOOKING FORM CONTAINER ---------- */
.booking-form {
  max-width: 760px;
}

.booking-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ---------- WIZARD INDICATOR (mobile only) ---------- */
.wizard-indicator {
  display: none;
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-3);
  background: var(--cream-warm);
  border-radius: 8px;
}

@media (max-width: 767px) {
  .wizard-indicator {
    display: block;
  }
}

.wizard-indicator__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.wizard-indicator__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.wizard-indicator__num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 168, 124, 0.25);
  color: var(--text-on-light-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background var(--t-base), color var(--t-base);
}

.wizard-indicator__step.is-active .wizard-indicator__num,
.wizard-indicator__step.is-complete .wizard-indicator__num {
  background: var(--midnight);
  color: var(--gold);
}

.wizard-indicator__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-light-muted);
  font-weight: 500;
}

.wizard-indicator__step.is-active .wizard-indicator__label {
  color: var(--midnight);
}

.wizard-indicator__line {
  flex: 1;
  height: 1px;
  background: rgba(184, 168, 124, 0.3);
  margin-bottom: 16px;
}

/* ---------- WIZARD STEPS ---------- */
.wizard-step {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-6);
}

/* Mobile: only active step visible */
@media (max-width: 767px) {
  .wizard-step {
    display: none;
  }
  .wizard-step.is-active {
    display: block;
  }
}

/* Desktop: all steps visible, indicator hidden */
@media (min-width: 768px) {
  .wizard-step {
    display: block;
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: var(--space-5);
  }
}

.wizard-step__legend {
  margin-bottom: var(--space-5);
  padding: 0;
}

.wizard-step__num {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.wizard-step__title {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.015em;
  margin: 0;
}

.wizard-step__desc {
  font-size: var(--text-base);
  color: var(--text-on-light-muted);
  margin: var(--space-3) 0 0;
  line-height: 1.6;
}

/* ---------- FORM FIELDS ---------- */
.form-field {
  margin-bottom: var(--space-4);
}

.form-grid {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-grid--2col {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .form-grid--2col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 6px;
}

.required {
  color: #6B1F2A;
}

.optional {
  color: var(--text-on-light-muted);
  font-weight: 400;
  font-size: var(--text-xs);
}

.form-field__helper {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin: 0 0 var(--space-3);
  line-height: 1.5;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--midnight);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

/* ---------- SIZE TIER OPTIONS ---------- */
.size-tier-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

@media (min-width: 600px) {
  .size-tier-options {
    grid-template-columns: 1fr 1fr;
  }
}

.size-tier-option {
  position: relative;
  cursor: pointer;
}

.size-tier-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-tier-option__label {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  transition: all var(--t-fast);
}

.size-tier-option:hover .size-tier-option__label {
  border-color: var(--gold-muted);
}

.size-tier-option input[type="radio"]:checked + .size-tier-option__label {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

.size-tier-option input[type="radio"]:focus + .size-tier-option__label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.size-tier-option__title {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--midnight);
}

.size-tier-option__sub {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}

/* ---------- SERVICE CARDS (Step 3 — new svc-card structure) ---------- */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-5);
  margin-bottom: var(--space-3);
  transition: opacity var(--t-base), border-color var(--t-base), box-shadow var(--t-base), background-color var(--t-base);
}

.svc-card:hover {
  border-color: var(--gold-muted);
}

.svc-card--base {
  background: rgba(201, 169, 97, 0.05);
  border-color: var(--gold);
}

/* State: Yes selected (gold border + glow + expanded) */
.svc-card--yes {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

/* State: Maybe selected (dimmed) */
.svc-card--maybe {
  opacity: 0.62;
  background: rgba(184, 168, 124, 0.04);
}

.svc-card--maybe:hover {
  opacity: 0.8;
}

.svc-card__head {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.svc-card__head > div:first-child {
  flex: 1;
}

.svc-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.svc-card__title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.005em;
  margin: 0 0 4px;
}

.svc-card__desc {
  font-size: var(--text-base);
  color: var(--text-on-light-muted);
  line-height: 1.55;
  margin: 0;
}

.svc-card__desc strong {
  color: var(--midnight);
  font-weight: 500;
}

/* Price block */
.svc-card__price {
  text-align: right;
  white-space: nowrap;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.svc-card__price-from {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  margin-bottom: 2px;
}

.svc-card__price-bundle {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1;
}

.svc-card__price-standalone {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  text-decoration: line-through;
  margin-top: 4px;
  display: block;
}

.svc-card__save {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F6E56;
  background: #E1F5EE;
  padding: 3px 8px;
  border-radius: 100px;
  margin-top: 4px;
}

/* "Included" status for Photography */
.svc-card__status-included {
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--midnight);
}

/* Educational note */
.svc-card__note {
  padding: var(--space-3) var(--space-4);
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  margin-bottom: var(--space-3);
  transition: opacity var(--t-base), max-height var(--t-base);
  overflow: hidden;
}

.svc-card__note-text {
  font-size: var(--text-sm);
  color: var(--midnight);
  line-height: 1.55;
}

.svc-card__note-text strong {
  color: var(--midnight);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* Hide educational note when card is in Maybe state */
.svc-card--maybe .svc-card__note {
  display: none;
}

/* Gallery links row */
.svc-card__gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  padding: 0 2px;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--gold);
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color var(--t-fast);
}

.gallery-link:hover {
  color: #B8941F;
  text-decoration: underline;
}

.gallery-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.gallery-link--sm {
  font-size: 11px;
}

.gallery-link--sm svg {
  width: 12px;
  height: 12px;
}

/* Hide gallery links when card is in Maybe state */
.svc-card--maybe .svc-card__gallery-links {
  display: none;
}

/* Yes / Maybe choice buttons */
.svc-card__choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.choice-btn {
  position: relative;
  cursor: pointer;
}

.choice-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-btn__label {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-on-light-muted);
  transition: all var(--t-fast);
}

.choice-btn:hover .choice-btn__label {
  border-color: var(--gold-muted);
  color: var(--midnight);
}

.choice-btn input[type="radio"]:checked + .choice-btn__label {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--cream-light);
}

.choice-btn input[type="radio"]:checked + .choice-btn__label--yes {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}

.choice-btn input[type="radio"]:focus + .choice-btn__label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Expand panel for video / twilight sub-options */
.svc-card__expand {
  display: none;
  padding: var(--space-4);
  background: var(--cream-light);
  border-radius: 6px;
  margin-top: var(--space-4);
  border: 1px solid var(--border-light);
}

.svc-card--yes .svc-card__expand {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.svc-card__expand-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

/* Sub-options inside expand panel */
.sub-opt {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}

.sub-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sub-opt:hover {
  border-color: var(--gold-muted);
}

.sub-opt:has(input[type="checkbox"]:checked) {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
}

.sub-opt:has(input[type="checkbox"]:focus) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sub-opt__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
}

.sub-opt__main {
  flex: 1;
}

.sub-opt__title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--midnight);
  margin: 0 0 2px;
}

.sub-opt__desc {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  margin: 0;
  line-height: 1.5;
}

.sub-opt__price {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.sub-opt__gallery {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(184, 168, 124, 0.3);
}

/* After-delivery footnote */
.svc-card__footnote {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  padding: var(--space-3) var(--space-4);
  background: rgba(184, 168, 124, 0.06);
  border-radius: 6px;
  margin: var(--space-4) 0;
  line-height: 1.6;
}

.svc-card__footnote strong {
  color: var(--midnight);
  font-weight: 500;
}

/* ---------- LIGHTBOX MODAL ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 58, 0.78);
  cursor: pointer;
}

.lightbox__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - var(--space-5));
  max-width: 960px;
  max-height: calc(100vh - var(--space-7));
  background: var(--white);
  border-radius: 12px;
  overflow-y: auto;
  padding: var(--space-6);
}

@media (max-width: 600px) {
  .lightbox__container {
    width: calc(100% - var(--space-4));
    padding: var(--space-4);
    max-height: calc(100vh - var(--space-5));
  }
}

.lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--midnight);
  transition: background var(--t-fast);
  z-index: 1;
}

.lightbox__close:hover {
  background: var(--gold);
}

.lightbox__header {
  margin-bottom: var(--space-5);
  padding-right: 48px;
}

.lightbox__eyebrow {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.lightbox__title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
}

.lightbox__placeholder-note {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  font-style: italic;
  margin: 0;
}

.lightbox__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 600px) {
  .lightbox__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lightbox__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream-warm);
}

.lightbox__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prevent body scroll when lightbox open */
body.lightbox-open {
  overflow: hidden;
}

/* ---------- URGENCY OPTIONS ---------- */
.urgency-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

@media (min-width: 600px) {
  .urgency-options {
    grid-template-columns: 1fr 1fr;
  }
}

.urgency-option {
  position: relative;
  cursor: pointer;
}

.urgency-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.urgency-option__label {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  transition: all var(--t-fast);
}

.urgency-option:hover .urgency-option__label {
  border-color: var(--gold-muted);
}

.urgency-option input[type="radio"]:checked + .urgency-option__label {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
}

.urgency-option__title {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--midnight);
}

.urgency-option__sub {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin-top: 2px;
}

/* ---------- SUMMARY ---------- */
.form-summary {
  background: var(--cream-warm);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-5);
  margin: var(--space-5) 0;
}

.form-summary__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.form-summary__content {
  font-size: var(--text-base);
  color: var(--midnight);
  line-height: 1.7;
}

.form-summary__item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 6px 0;
}

.form-summary__item-label {
  color: var(--text-on-light-muted);
  font-size: var(--text-sm);
}

.form-summary__item-value {
  color: var(--midnight);
  font-weight: 500;
  text-align: right;
}

/* Estimated total block inside booking summary (matches floater style) */
.form-summary__total-block {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.form-summary__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}

.form-summary__total-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
}

.form-summary__total-value {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.02em;
}

.form-summary__savings {
  margin-top: var(--space-3);
  padding: 10px 12px;
  background: #E1F5EE;
  border: 1px solid rgba(15, 110, 86, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.form-summary__savings-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0F6E56;
  font-weight: 500;
}

.form-summary__savings-value {
  font-size: var(--text-sm);
  color: #0F6E56;
  font-weight: 500;
}

/* ---------- DISCLAIMER & PROMISE ---------- */
.form-disclaimer,
.form-promise {
  font-size: var(--text-sm);
  line-height: 1.6;
  padding: var(--space-4);
  border-radius: 6px;
  margin-bottom: var(--space-4);
}

.form-disclaimer {
  background: rgba(184, 168, 124, 0.12);
  border-left: 3px solid var(--gold-muted);
  color: var(--text-on-light-muted);
}

.form-disclaimer strong {
  color: var(--midnight);
  font-weight: 500;
}

.form-promise {
  background: rgba(201, 169, 97, 0.08);
  border-left: 3px solid var(--gold);
  color: var(--midnight);
}

.form-promise strong {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- WIZARD NAVIGATION ---------- */
.wizard-nav {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
}

.wizard-nav .btn--outline-midnight {
  margin-right: auto;
}

@media (max-width: 480px) {
  .wizard-nav {
    flex-direction: column-reverse;
  }
  .wizard-nav .btn {
    width: 100%;
  }
  .wizard-nav .btn--outline-midnight {
    margin-right: 0;
  }
}

/* On desktop, hide wizard nav (Back/Next) — all visible */
@media (min-width: 768px) {
  .wizard-nav .wizard-next,
  .wizard-nav .wizard-back {
    display: none;
  }
  .wizard-nav {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

/* On desktop, show only the final submit button at the bottom of step 4 */
@media (min-width: 768px) {
  .wizard-step[data-step="4"] .wizard-nav {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-light);
    justify-content: center;
  }
  .wizard-step[data-step="4"] .wizard-nav button[type="submit"] {
    display: inline-block;
  }
}

.btn--lg {
  padding: 14px 32px;
  font-size: var(--text-md);
}

/* ---------- COVERAGE ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-5);
}

.coverage-card__label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.coverage-card__cities {
  font-size: var(--text-base);
  color: var(--midnight);
  line-height: 1.85;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--midnight);
  transition: color var(--t-fast);
}

.faq__q:hover {
  color: var(--gold);
}

.faq__q-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--t-base);
}

.faq__q[aria-expanded="true"] .faq__q-icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) ease-out;
}

.faq__q[aria-expanded="true"] + .faq__a {
  max-height: 400px;
}

.faq__a p {
  padding: 0 0 var(--space-4);
  font-size: var(--text-base);
  color: var(--text-on-light-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---------- SECTION HEADER (reused) ---------- */
.sec-head {
  max-width: 640px;
  margin-bottom: var(--space-6);
}

.sec-head .h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--midnight);
}

/* ---------- STEP 3 LAYOUT (services + price floater sidebar) ---------- */
.step3-layout {
  display: block;
}

@media (min-width: 980px) {
  .step3-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-5);
    align-items: flex-start;
  }
}

.step3-services {
  min-width: 0;
}

.step3-floater {
  display: none;
}

@media (min-width: 980px) {
  .step3-floater {
    display: block;
    position: sticky;
    top: var(--space-5);
  }
}

/* ---------- PRICE FLOATER ---------- */
.floater {
  background: var(--midnight);
  color: var(--text-on-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 31, 58, 0.12);
}

.floater__header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(184, 168, 124, 0.18);
}

.floater__eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 4px;
}

.floater__title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--text-on-dark);
  margin: 0;
}

.floater__body {
  padding: 16px 18px;
}

.floater__empty {
  font-size: var(--text-sm);
  color: var(--gold-muted);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  padding: var(--space-3) 0;
}

.floater__line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 5px 0;
  font-size: var(--text-sm);
}

.floater__line-label {
  color: var(--gold-muted);
  flex: 1;
  line-height: 1.4;
}

.floater__line-value {
  color: var(--text-on-dark);
  font-weight: 500;
  white-space: nowrap;
}

.floater__line--strikethrough .floater__line-label {
  font-size: var(--text-xs);
  opacity: 0.7;
}

.floater__line--strikethrough .floater__line-value {
  color: var(--gold-muted);
  text-decoration: line-through;
  font-size: var(--text-xs);
}

.floater__divider {
  border-top: 1px solid rgba(184, 168, 124, 0.18);
  margin: 10px 0 4px;
}

.floater__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0 4px;
}

.floater__total-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
}

.floater__total-value {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.floater__savings {
  background: rgba(15, 110, 86, 0.18);
  border: 1px solid rgba(15, 110, 86, 0.4);
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: var(--space-3);
}

.floater__savings-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #5DCAA5;
  font-weight: 500;
  margin: 0 0 4px;
}

.floater__savings-value {
  font-size: var(--text-md);
  font-weight: 500;
  color: #9FE1CB;
  margin: 0;
  line-height: 1.3;
}

/* ---------- MOBILE PRICE BAR (bottom) ---------- */
.mobile-price-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight);
  color: var(--text-on-dark);
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(10, 31, 58, 0.18);
  border-top: 1px solid rgba(184, 168, 124, 0.25);
  transition: transform var(--t-base);
}

.mobile-price-bar.is-visible {
  display: block;
}

.mobile-price-bar__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 16px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mobile-price-bar__main {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}

.mobile-price-bar__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
}

.mobile-price-bar__value {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.mobile-price-bar__chevron {
  color: var(--gold);
  transition: transform var(--t-base);
  flex-shrink: 0;
}

.mobile-price-bar__toggle[aria-expanded="true"] .mobile-price-bar__chevron {
  transform: rotate(180deg);
}

.mobile-price-bar__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) ease-out;
  border-top: 1px solid rgba(184, 168, 124, 0.18);
}

.mobile-price-bar__toggle[aria-expanded="true"] + .mobile-price-bar__expand {
  max-height: 60vh;
  overflow-y: auto;
}

.mobile-price-bar__expand-body {
  padding: 16px;
}

/* Add bottom padding to form on mobile so floater doesn't cover content */
@media (max-width: 979px) {
  .wizard-step[data-step="3"].is-active ~ * {
    margin-bottom: 80px;
  }
  body:has(.mobile-price-bar.is-visible) .wizard-step[data-step="3"] {
    padding-bottom: 80px;
  }
}

/* Hide both floaters when not in step 3 (desktop) */
@media (min-width: 768px) {
  .wizard-step:not([data-step="3"]) .step3-floater {
    display: none;
  }
}

/* ---------- GATE: locked state for service cards before contact info ---------- */
.gate-hint {
  font-size: var(--text-sm);
  color: var(--gold);
  font-style: italic;
  margin-top: var(--space-3);
  padding: 10px 14px;
  background: rgba(201, 169, 97, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

/* Hide pricing elements when gate is locked */
body:not(.gate-unlocked) .svc-card__price,
body:not(.gate-unlocked) .sub-opt__price,
body:not(.gate-unlocked) .form-summary__total-block {
  display: none;
}

/* Show "Personalized pricing" placeholder in cards when locked */
.svc-card__price-locked {
  display: none;
  text-align: right;
  white-space: nowrap;
  padding-top: 4px;
}

body:not(.gate-unlocked) .svc-card:not(.svc-card--base) .svc-card__price-locked,
body:not(.gate-unlocked) .sub-opt__price-locked {
  display: inline-block;
}

.svc-card__price-locked-label {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  max-width: 140px;
  text-align: right;
}

/* Hide entire floater and mobile bar when locked */
body:not(.gate-unlocked) .step3-floater,
body:not(.gate-unlocked) .mobile-price-bar {
  display: none !important;
}

/* Animation when unlocking */
body.gate-unlocked .svc-card__price,
body.gate-unlocked .sub-opt__price,
body.gate-unlocked .form-summary__total-block,
body.gate-unlocked .step3-floater,
body.gate-unlocked .floater {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- OPENSTREETMAP ADDRESS AUTOCOMPLETE ---------- */
.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(10, 31, 58, 0.12);
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.address-suggestions.is-open {
  display: block;
}

.address-suggestions li {
  padding: 10px 14px;
  font-size: var(--text-sm);
  color: var(--midnight);
  cursor: pointer;
  border-bottom: 1px solid rgba(184, 168, 124, 0.15);
  line-height: 1.4;
  transition: background var(--t-fast);
}

.address-suggestions li:last-child {
  border-bottom: none;
}

.address-suggestions li:hover,
.address-suggestions li.is-highlighted {
  background: rgba(201, 169, 97, 0.08);
  color: var(--midnight);
}

.address-suggestions li.is-loading,
.address-suggestions li.is-empty {
  color: var(--text-on-light-muted);
  font-style: italic;
  cursor: default;
}

.address-suggestions li.is-loading:hover,
.address-suggestions li.is-empty:hover {
  background: transparent;
}

.address-helper {
  font-size: var(--text-xs);
  margin-top: 4px !important;
}

/* ---------- ADDRESS + UNIT row layout ---------- */
.address-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

@media (min-width: 600px) {
  .address-row {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.form-field--address,
.form-field--unit {
  margin-bottom: 0;
}

/* On mobile, unit field is more compact */
@media (max-width: 599px) {
  .form-field--unit input {
    padding: 10px 14px;
  }
}

/* ---------- CONTEXTUAL BANNER (from select-service.html) ---------- */
.booking-context-banner {
  background: var(--white);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin-bottom: var(--space-5);
  animation: slideDown 0.4s ease-out;
}

.booking-context-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  flex-wrap: wrap;
}

.booking-context-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--midnight);
}

.booking-context-banner__label svg {
  color: var(--gold);
  flex-shrink: 0;
}

.booking-context-banner__label strong {
  font-weight: 500;
  color: var(--midnight);
}

.booking-context-banner__change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast);
}

.booking-context-banner__change:hover {
  color: #B8941F;
  text-decoration: underline;
}

/* ============================================
   CATEGORY-SPECIFIC MODES (from select-service.html)
   ============================================ */

/* ========== mode-3d-only: only 3D Tour card visible ========== */
body.mode-3d-only .svc-card--base,
body.mode-3d-only .svc-card[data-service="video"],
body.mode-3d-only .svc-card[data-service="twilight"],
body.mode-3d-only .svc-card__footnote,
body.mode-3d-only .drone-only-panel {
  display: none !important;
}

/* ========== mode-video-only: only Video card with Cinematic ========== */
body.mode-video-only .svc-card--base,
body.mode-video-only .svc-card[data-service="3d_tour"],
body.mode-video-only .svc-card[data-service="twilight"],
body.mode-video-only .svc-card__footnote,
body.mode-video-only .drone-only-panel {
  display: none !important;
}

/* In video-only mode, hide non-cinematic sub-options */
body.mode-video-only .sub-opt[data-subopt="video_drone"],
body.mode-video-only .sub-opt[data-subopt="video_social_interior"],
body.mode-video-only .sub-opt[data-subopt="video_social_full"] {
  display: none !important;
}

/* In video-only, hide the "Yes/Maybe" choice for Video card — auto-selected */
body.mode-video-only .svc-card[data-service="video"] .svc-card__choice {
  display: none !important;
}

/* Change expand panel label in video-only mode */
body.mode-video-only .svc-card__expand-label {
  font-size: var(--text-sm);
  text-transform: none;
  letter-spacing: 0;
  color: var(--midnight);
  font-style: italic;
}

/* ========== mode-drone-only: hide all svc-cards, show drone panel ========== */
body.mode-drone-only .svc-card,
body.mode-drone-only .svc-card__footnote {
  display: none !important;
}

body.mode-drone-only .drone-only-panel {
  display: block;
}

/* Also hide size_tier in Step 2 for drone mode (flat pricing) */
body.mode-drone-only .form-field--size-tier,
body.mode-drone-only .size-tier-group {
  display: none !important;
}

/* By default, drone-only-panel is hidden — only shown in drone mode */
.drone-only-panel {
  display: none;
}

/* ============================================
   DRONE-ONLY PANEL STYLES
   ============================================ */

.drone-only-panel__head {
  margin-bottom: var(--space-4);
  text-align: center;
}

.drone-only-panel__title {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--midnight);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.015em;
}

.drone-only-panel__desc {
  font-size: var(--text-base);
  color: var(--text-on-light-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.drone-only-panel__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.drone-choice {
  display: block;
  cursor: pointer;
  position: relative;
}

.drone-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drone-choice__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-4) var(--space-5);
  transition: all var(--t-fast);
}

.drone-choice:hover .drone-choice__inner {
  border-color: var(--gold-muted);
}

.drone-choice input[type="radio"]:checked + .drone-choice__inner {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

.drone-choice--featured .drone-choice__inner {
  background: var(--cream-light);
  border-color: var(--gold-muted);
}

.drone-choice--featured input[type="radio"]:checked + .drone-choice__inner {
  background: rgba(201, 169, 97, 0.10);
  border-color: var(--gold);
}

.drone-choice__main {
  flex: 1;
}

.drone-choice__title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--midnight);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.drone-choice__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F6E56;
  background: #E1F5EE;
  padding: 3px 8px;
  border-radius: 100px;
}

.drone-choice__desc {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin: 0;
  line-height: 1.4;
}

.drone-choice__price {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.drone-choice__price-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.drone-choice__price-strike {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  text-decoration: line-through;
  margin-top: 4px;
}

.drone-only-panel__note {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  background: rgba(184, 168, 124, 0.06);
  border-radius: 6px;
}
