/* ── CONTACT PAGE STYLES ────────────────────────────────── */

/* Hero */
.contact-hero {
  background: var(--blush);
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--peach);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-hero-text .sec-eyebrow { margin-bottom: 1rem; }
.contact-hero-text h1 {
  font-family: var(--fp);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.contact-hero-text h1 em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.contact-hero-text p { font-size: 0.92rem; color: var(--muted); line-height: 1.85; font-weight: 300; max-width: 420px; }

/* Quick contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--peach);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.contact-card:hover { background: var(--blush3); border-color: var(--terracotta); }
.cc-icon {
  width: 42px; height: 42px;
  background: var(--blush3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cc-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 0.2rem; }
.cc-value { font-size: 0.92rem; color: var(--espresso); font-weight: 500; }
.cc-arrow { margin-left: auto; color: var(--terracotta); font-size: 1rem; opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: translateX(-4px); }
.contact-card:hover .cc-arrow { opacity: 1; transform: translateX(0); }

/* BOOKING SECTION */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 700px;
}
.booking-sidebar {
  background: var(--espresso);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking-sidebar-top .sec-eyebrow { color: var(--mid); margin-bottom: 1rem; }
.booking-sidebar-top h2 { font-family: var(--fp); font-size: 2.4rem; font-weight: 700; color: var(--blush); line-height: 1.1; margin-bottom: 1.2rem; }
.booking-sidebar-top h2 em { font-style: italic; color: var(--peach); }
.booking-sidebar-top p { font-size: 0.88rem; color: rgba(253,232,220,0.6); line-height: 1.85; font-weight: 300; }

.booking-perks { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.booking-perk { display: flex; align-items: flex-start; gap: 0.9rem; }
.perk-icon {
  width: 32px; height: 32px;
  background: rgba(253,232,220,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.perk-text { font-size: 0.82rem; color: rgba(253,232,220,0.65); line-height: 1.65; font-weight: 300; }
.perk-text strong { color: var(--blush); font-weight: 500; display: block; margin-bottom: 0.1rem; }

.booking-testimonial {
  border-top: 1px solid rgba(253,232,220,0.12);
  padding-top: 2rem;
  margin-top: 2.5rem;
}
.booking-testimonial blockquote { font-family: var(--fp); font-size: 1rem; font-style: italic; color: var(--peach); line-height: 1.65; margin-bottom: 0.8rem; }
.booking-testimonial cite { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); font-style: normal; }

/* Booking form */
.booking-form-wrap { background: var(--off-white); padding: 4rem 3.5rem; }
.booking-form-wrap h3 { font-family: var(--fp); font-size: 1.8rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.5rem; }
.booking-form-wrap .form-subtitle { font-size: 0.82rem; color: var(--muted); font-weight: 300; margin-bottom: 2.5rem; }

/* Steps indicator */
.form-steps { display: flex; gap: 0; margin-bottom: 2.5rem; }
.form-step { flex: 1; display: flex; align-items: center; gap: 0.6rem; position: relative; }
.form-step::after { content: ''; flex: 1; height: 1px; background: var(--peach); margin: 0 0.5rem; }
.form-step:last-child::after { display: none; }
.step-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  flex-shrink: 0;
  transition: all 0.2s;
}
.form-step.active .step-circle { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.form-step.done .step-circle { background: var(--terra-dark); border-color: var(--terra-dark); color: var(--white); }
.step-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.form-step.active .step-label { color: var(--espresso); font-weight: 600; }

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--espresso); font-weight: 500; }
.form-label span { color: var(--terracotta); margin-left: 2px; }
.form-input {
  border: 1px solid var(--peach);
  background: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--fi);
  font-size: 0.88rem;
  color: var(--espresso);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-input:focus { border-color: var(--terracotta); }
.form-input::placeholder { color: var(--mid); }
textarea.form-input { resize: vertical; min-height: 100px; line-height: 1.6; }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23A0706A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* Treatment picker */
.treatment-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 0.4rem; }
.treatment-option {
  border: 1px solid var(--peach);
  padding: 0.7rem 0.8rem;
  font-size: 0.72rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--muted);
  background: var(--white);
  font-family: var(--fi);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.treatment-option:hover { border-color: var(--terracotta); color: var(--espresso); }
.treatment-option.selected { background: var(--espresso); color: var(--blush); border-color: var(--espresso); }

/* Radio & checkbox */
.radio-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.4rem; }
.radio-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] { accent-color: var(--terracotta); width: 15px; height: 15px; }

/* Submit */
.form-submit-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1.8rem; flex-wrap: wrap; gap: 1rem; }
.form-privacy { font-size: 0.72rem; color: var(--muted); font-weight: 300; max-width: 300px; line-height: 1.55; }
.form-privacy a { color: var(--terracotta); }

/* CONTACT INFO SECTION */
.contact-info-section {
  background: var(--white);
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--peach);
}
.info-panel { background: var(--white); padding: 2.5rem 2rem; }
.info-panel-icon { font-size: 1.8rem; margin-bottom: 1.2rem; }
.info-panel-title { font-family: var(--fp); font-size: 1.3rem; font-weight: 700; color: var(--espresso); margin-bottom: 1rem; }
.info-row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.8rem; }
.info-row-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); margin-top: 7px; flex-shrink: 0; }
.info-row-text { font-size: 0.85rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.info-row-text strong { color: var(--espresso); font-weight: 500; }

/* MAP */
.map-section { background: var(--off-white); padding: 0 2.5rem 5rem; }
.map-section-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.map-details { padding-top: 4rem; }
.map-details h2 { font-family: var(--fp); font-size: 2rem; font-weight: 700; color: var(--espresso); margin-bottom: 1.5rem; }
.map-details h2 em { font-style: italic; color: var(--terracotta); }
.map-detail-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.1rem; }
.map-detail-icon { width: 36px; height: 36px; background: var(--blush3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.map-detail-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.map-detail-text strong { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--espresso); font-weight: 600; margin-bottom: 0.2rem; }
.map-wrap-full { margin-top: 4rem; height: 420px; filter: sepia(15%) saturate(90%); }
.map-wrap-full iframe { width: 100%; height: 100%; border: 0; display: block; }

/* FAQ */
.faq-section { padding: 5rem 2.5rem; background: var(--blush2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--peach); margin-top: 3rem; }
.faq-item { background: var(--white); padding: 2rem 2rem; cursor: pointer; transition: background 0.2s; }
.faq-item:hover { background: var(--blush); }
.faq-q { font-family: var(--fp); font-size: 1.1rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.8rem; display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.faq-toggle { color: var(--terracotta); font-size: 1.2rem; flex-shrink: 0; font-family: var(--fi); font-weight: 300; line-height: 1; margin-top: 2px; }
.faq-a { font-size: 0.82rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
  .contact-hero-text h1 { font-size: 2.4rem; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-sidebar { padding: 3rem 1.5rem; }
  .booking-sidebar-top h2 { font-size: 2rem; }
  .booking-form-wrap { padding: 3rem 1.5rem; }
  .form-steps { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .treatment-picker { grid-template-columns: 1fr 1fr; }
  .contact-info-section { grid-template-columns: 1fr; background-color: var(--white); }
  .info-panel { border-bottom: 1px solid var(--peach); }
  .map-section { padding: 0 1.2rem 3rem; }
  .map-section-inner { grid-template-columns: 1fr; }
  .map-wrap-full { height: 280px; }
  .faq-section { padding: 3rem 1.2rem; }
  .faq-grid { grid-template-columns: 1fr; background-color: var(--white); }
  .faq-item { border-bottom: 1px solid var(--peach); }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-section { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-info-section { grid-template-columns: 1fr 1fr; }
  .map-section-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
