/* Appointment location / calendar / time-slot UI
   Scoped under .lead-form so page button styles cannot override the calendar. */
.lead-form .appt-scheduler{
  grid-column:1/-1;
  display:grid;
  gap:18px;
  margin-top:2px;
}
.lead-form .appt-field-label{
  display:block;
  margin:0 0 8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#6b7c93;
}
.lead-form .appt-location-select{
  width:100%;
  border:1px solid #cfe0f7;
  border-radius:12px;
  padding:14px 16px;
  font:600 15px Inter,Arial,sans-serif;
  color:#0b1e47;
  background:#fff;
}
.lead-form .appt-hours-banner{
  margin-top:10px;
  padding:12px 14px;
  border-radius:12px;
  background:#f3f0ff;
  border:0;
  border-left:4px solid #2f5fd0;
  color:#2447a5;
  font-size:14px;
  font-weight:700;
  line-height:1.4;
}
.lead-form .appt-date-box{
  border:1px solid #d7e4f5;
  border-radius:14px;
  padding:14px;
  background:#fff;
}
.lead-form .appt-scheduler button{
  grid-column:auto;
  width:auto;
  min-height:0;
  margin:0;
  box-shadow:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.lead-form .appt-scheduler button:hover,
.lead-form .appt-scheduler button:disabled{
  background:transparent;
  opacity:1;
}
.lead-form .appt-date-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1.5px solid #cfe0f7;
  border-radius:12px;
  padding:13px 16px;
  background:#fff;
  cursor:pointer;
  font:600 15px Inter,Arial,sans-serif;
  color:#0b1e47;
  text-align:left;
}
.lead-form .appt-date-trigger:hover{
  background:#fff;
  border-color:#075dcc;
}
.lead-form .appt-date-trigger[aria-expanded="true"]{
  border-color:#075dcc;
  box-shadow:0 0 0 3px rgba(7,93,204,.12);
}
.lead-form .appt-date-label.is-placeholder{color:#8a9bb2;font-weight:500}
.lead-form .appt-cal-icon{
  width:18px;
  height:18px;
  flex:none;
  border:2px solid #6f86a5;
  border-radius:4px;
  position:relative;
}
.lead-form .appt-cal-icon:before{
  content:"";
  position:absolute;
  left:-2px;
  right:-2px;
  top:4px;
  border-top:2px solid #6f86a5;
}
.lead-form .appt-calendar-panel{
  margin-top:12px;
  border:1px solid #e2ebf7;
  border-radius:14px;
  padding:14px 12px 16px;
  background:#fbfcff;
}
.lead-form .appt-cal-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.lead-form .appt-cal-nav button{
  width:34px;
  height:34px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:#6b7c93;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  padding:0;
}
.lead-form .appt-cal-nav button:hover{
  background:#eef4ff;
  color:#075dcc;
}
.lead-form .appt-cal-nav strong{
  font-size:16px;
  color:#10244a;
}
.lead-form .appt-cal-grid{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:6px;
}
.lead-form .appt-cal-weekday{
  text-align:center;
  font-size:11px;
  font-weight:700;
  color:#9aa9bd;
  padding:4px 0 8px;
}
.lead-form .appt-cal-day{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:transparent;
  width:100%;
  min-height:40px;
  height:40px;
  padding:0;
  border-radius:10px;
  font:700 14px Inter,Arial,sans-serif;
  color:#10244a;
  cursor:pointer;
}
.lead-form .appt-cal-day.is-empty{
  pointer-events:none;
  visibility:hidden;
  background:transparent;
}
.lead-form .appt-cal-day.is-disabled,
.lead-form .appt-cal-day.is-disabled:hover,
.lead-form .appt-cal-day.is-disabled:disabled{
  color:#c5ceda;
  background:transparent;
  font-weight:500;
  cursor:not-allowed;
  box-shadow:none;
}
.lead-form .appt-cal-day.is-available{
  background:#075dcc;
  color:#fff;
}
.lead-form .appt-cal-day.is-available:hover{
  background:#064aa6;
  color:#fff;
}
.lead-form .appt-cal-day.is-selected,
.lead-form .appt-cal-day.is-selected:hover{
  background:linear-gradient(180deg,#ff4f8b 0%,#e11d48 100%);
  color:#fff;
  box-shadow:0 0 0 2px #075dcc;
}
.lead-form .appt-times-wrap{margin-top:2px}
.lead-form .appt-times-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.lead-form .appt-time-slot{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  border:1px solid #d5e2f3;
  border-radius:12px;
  background:#fff;
  min-height:46px;
  padding:10px 8px;
  font:700 14px Inter,Arial,sans-serif;
  color:#10244a;
  cursor:pointer;
  box-shadow:none;
}
.lead-form .appt-time-slot:hover{
  border-color:#075dcc;
  background:#f5f9ff;
  color:#10244a;
}
.lead-form .appt-time-slot.is-selected,
.lead-form .appt-time-slot.is-selected:hover{
  border-color:#075dcc;
  background:#075dcc;
  color:#fff;
}
.lead-form .appt-hidden-fields{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  clip:rect(0 0 0 0) !important;
}

@media (max-width:760px){
  .lead-form .appt-times-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lead-form .appt-cal-day{min-height:36px;height:36px;font-size:13px}
}
