@charset "utf-8";
/*imports*/
@import "/css/reset.css";
@import "/fontawesome/css/fontawesome.min.css";
@import "/fontawesome/css/sharp-regular.min.css";
@import "/fontawesome/css/sharp-solid.min.css";
/* ============================
   VARIABLES
   ============================ */
/* Adapter ces couleurs à la charte Prefalux Home */
/* Pour compat avec le code précédent */
/* ============================
   RESET LIGHT
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "novecento-sans-wide", sans-serif;
  font-size: 1em;
  font-weight: 100;
  line-height: 1.5;
  background: #f3f4f6;
  color: #111827;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input,
textarea,
button,
select {
  font: inherit;
}
/* ============================
   WRAPPER GLOBAL
   ============================ */
.ph-project-map {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .ph-project-map {
    height: 360px;
  }
}
.ph-lead-form-wrapper {
  max-width: 960px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 32px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 640px) {
  .ph-lead-form-wrapper {
    margin: 20px auto;
    padding: 20px 16px 24px;
    border-radius: 8px;
  }
}
.ph-lead-form-wrapper h1 {
  text-align: center;
  background: #71CC98;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
}
.ph-lead-form-wrapper h1 img {
  display: inline-block;
  width: 150px;
  height: auto;
}
.ph-lead-form-wrapper h2 {
  margin: 0 0 6px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #72CC98;
}
.ph-lead-intro {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 0.98rem;
}
.ph-lead-intro strong {
  font-weight: bold;
}
/* ============================
   ALERTES
   ============================ */
.ph-lead-alert {
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ph-lead-alert::before {
  content: "●";
  font-size: 0.7rem;
  margin-top: 4px;
}
.ph-lead-alert--success {
  background: rgba(114, 204, 152, 0.08);
  border: 1px solid rgba(114, 204, 152, 0.3);
  color: #72CC98;
}
.ph-lead-alert--success::before {
  color: #72CC98;
}
.ph-lead-alert--error {
  background: rgba(210, 64, 64, 0.08);
  border: 1px solid rgba(210, 64, 64, 0.3);
  color: #d24040;
}
.ph-lead-alert--error::before {
  color: #d24040;
}
.ph-lead-alert--success {
  font-size: 1rem;
  justify-content: center;
}
.ph-lead-alert--success::before {
  content: "";
}
/* ============================
   FORM
   ============================ */
.ph-lead-form {
  margin-top: 10px;
}
.ph-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 768px) {
  .ph-lead-grid {
    grid-template-columns: 1fr;
  }
}
.ph-form-section {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}
.ph-form-section h2 {
  font-size: 1.1rem;
  margin: 0 0 14px;
  color: #72CC98;
  font-weight: 600;
}
.ph-form-group {
  margin-bottom: 18px;
}
.ph-form-group label,
.ph-form-group .ph-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}
.ph-form-group input[type="text"],
.ph-form-group input[type="email"],
.ph-form-group textarea,
.ph-form-group select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  font-size: 0.95rem;
  background: #f9fafb;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.ph-form-group input[type="text"]:focus,
.ph-form-group input[type="email"]:focus,
.ph-form-group textarea:focus,
.ph-form-group select:focus {
  outline: none;
  border-color: #72CC98;
  box-shadow: 0 0 0 2px rgba(114, 204, 152, 0.25);
  background: #ffffff;
}
.ph-form-group textarea {
  border-radius: 14px;
  min-height: 120px;
  resize: vertical;
}
.ph-form-group.has-error input,
.ph-form-group.has-error textarea,
.ph-form-group.has-error select {
  border-color: #d24040;
  box-shadow: 0 0 0 1px rgba(210, 64, 64, 0.35);
  background: #fff5f5;
}
/* ============================
   CHECKBOXES & RADIOS
   ============================ */
.ph-checkbox-group,
.ph-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.92rem;
}
.ph-checkbox-group label,
.ph-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: #111827;
  font-weight: 400;
}
.ph-checkbox-group input[type="checkbox"],
.ph-radio-group input[type="checkbox"],
.ph-checkbox-group input[type="radio"],
.ph-radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #72CC98;
  cursor: pointer;
}
.ph-checkbox-group--columns {
  flex-direction: column;
}
.ph-checkbox-none {
  margin-top: 6px;
  font-style: italic;
}
.ph-checkbox-none input {
  accent-color: #72CC98;
  cursor: pointer;
}
.ph-checkbox-none span {
  cursor: pointer;
}
/* ============================
   RDV
   ============================ */
.ph-rdv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
@media (max-width: 640px) {
  .ph-rdv-row {
    align-items: flex-start;
  }
}
.ph-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.92rem;
}
.ph-switch input[type="checkbox"] {
  display: inline-block;
  float: left;
  width: 38px;
  height: 20px;
  appearance: none;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  position: relative;
  background: #e5e7eb;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.ph-switch input[type="checkbox"]::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: transform 0.18s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.ph-switch input[type="checkbox"]:checked {
  background: #72CC98;
  border-color: #72CC98;
}
.ph-switch input[type="checkbox"]:checked::after {
  transform: translateX(16px);
}
.ph-switch span {
  display: inline-block;
  float: left;
  margin-top: 3px;
}
.ph-rdv-select {
  min-width: 220px;
}
.ph-rdv-select select {
  min-width: 220px;
}
/* ============================
   ERREURS & TEXTES D'AIDE
   ============================ */
.ph-error {
  margin-top: 5px;
  font-size: 0.8rem;
  color: #d24040;
}
.ph-form-group > p.ph-error {
  margin-top: 8px;
  display: block;
}
.ph-helper {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #6b7280;
}
/* ============================
   ACTIONS
   ============================ */
.ph-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.ph-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;
}
.ph-btn--primary {
  background: #72CC98;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(114, 204, 152, 0.25);
}
.ph-btn--primary:hover {
  background: #5fc58a;
}
.ph-btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 5px 14px rgba(114, 204, 152, 0.25);
}
.ph-required-note {
  float: left;
  width: 100%;
  margin-top: 30px;
  font-size: 0.82rem;
  color: #6b7280;
}
/* ============================
   RESPONSIVE AJUSTEMENTS
   ============================ */
@media (max-width: 768px) {
  .ph-form-section {
    padding-top: 18px;
  }
  .ph-form-group {
    margin-bottom: 16px;
  }
}
/* RDV UI */
.ph-rdv-ui {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ph-radio-group--inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ph-rdv-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
  align-items: center;
}
.ph-rdv-time {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}
.ph-rdv-time.is-selected {
  background: #72CC98;
  color: #fff;
}
.ph-rdv-time.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (max-width: 900px) {
  .ph-rdv-ui {
    grid-template-columns: 1fr;
  }
}
.leaflet-popup-content-wrapper {
  padding: 6px 10px !important;
  border-radius: 10px !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  padding-right: 10px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}
.leaflet-popup-tip {
  width: 10px !important;
  height: 10px !important;
}
.ph-project-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 14px;
}
.ph-project-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}
.ph-project-item input {
  accent-color: #72CC98;
}
.ph-optin-box {
  background: rgba(114, 204, 152, 0.06);
  border: 1px solid rgba(114, 204, 152, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
}
.ph-optin-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.ph-optin-label span {
  font-size: 1em;
}
.ph-optin-label input {
  width: 22px;
  height: 22px;
  accent-color: #72CC98;
  vertical-align: middle;
  cursor: pointer;
}
.ph-optin-helper {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
}
/*# sourceMappingURL=styles.css.map */