/* ===================================================
   CONTACT.CSS — Page Contact (Cal.com booking style)
   =================================================== */

.contact-section {
  margin-top: 72px;
  padding: 60px 24px 80px;
  min-height: calc(100vh - 72px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Header titre ---- */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

/* ---- Widget container ---- */
.contact-booking-wrapper {
  width: 100%;
  max-width: 1060px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Cal.com inline embed */
#cal-inline-embed {
  width: 100%;
  min-height: 680px;
  overflow: hidden;
}

#cal-inline-embed iframe {
  border: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 16px 60px;
  }

  .contact-header {
    margin-bottom: 32px;
  }

  #cal-inline-embed {
    min-height: 800px;
  }
}
