/* styles/contact.css */
/* VARIABLE OVERRIDES */
:root {
  --bg-contacts: #fff8f8;
  --border: #e5e4e0;
}

/* SECTION TAG — centered with line on both sides */
.section-tag {
  justify-content: center;
  margin-bottom: 20px;
}

.section-tag::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
}

/* HERO */
.contact-hero {
  background: var(--bg-contacts);
  padding: 70px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.contact-hero p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* MAIN */
.contact-main {
  background: var(--bg-contacts);
  padding: 0 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  align-items: stretch;
}

.contact-right-wrapper {
  background: var(--bg);
}

/* LEFT COLUMN */
.contact-left {
  padding: 50px 40px 50px 0;
  border-right: 1px solid var(--border);
}

.info-block {
  margin-bottom: 36px;
}

.info-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-dark);
  margin-bottom: 8px;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  text-decoration: none;
}

.info-value:hover {
  color: var(--orange);
}

.info-sub {
  font-size: 12px;
  color: var(--gray);
}

.info-sub.orange {
  color: var(--orange);
  font-weight: 600;
}

.horaires-table {
  width: 100%;
  margin-top: 6px;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
  color: var(--text);
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
}

.badge.open {
  background: var(--orange);
  color: var(--bg-contacts);
}

.badge.closed {
  background: #e5e4e0;
  color: var(--gray);
}

.callback-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 36px;
  background: var(--bg-contacts);
}

.callback-box-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.callback-box p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.callback-box strong {
  color: var(--text);
}

/* RIGHT COLUMN — FORM */
.contact-right {
  padding: 50px;
}

.contact-right h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.contact-right > p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 30px;
}

.service-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.service-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg-contacts);
  color: var(--text);
  transition: all 0.2s;
}

.service-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.service-btn.selected {
  background: var(--orange);
  color: var(--bg-contacts);
  border-color: var(--orange);
}

.form-submit-btn {
  background: var(--orange);
  color: var(--bg-contacts);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  display: block;
}

.form-submit-btn:hover {
  opacity: 0.88;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e0f0e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
  }

  .contact-right {
    padding: 20px 20px;
  }

  .contact-right-wrapper {
    margin-right: 0;
    padding-right: 0;
  }

  .contact-main {
    padding: 0 0 20px;
  }
}
