/* Scheduler Component Styling */
.scheduler-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 24px 60px rgba(4, 21, 28, 0.25);
  border: 1px solid rgba(168, 240, 212, 0.2);
}

.scheduler-head {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.2rem;
}

.scheduler-head .badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.scheduler-badge {
  background: rgba(168, 240, 212, 0.15);
  color: var(--mint);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scheduler-tz {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.scheduler-head h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.scheduler-step {
  margin-bottom: 1.5rem;
}

.step-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  margin-bottom: 0.6rem;
}

.date-chips,
.time-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
  gap: 0.6rem;
}

.date-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.date-chip .day-name {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.date-chip .day-num {
  font-size: 1.25rem;
  font-weight: 800;
}

.date-chip .month-name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.date-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 240, 212, 0.4);
}

.date-chip.active {
  background: var(--mint);
  color: var(--navy);
  border-color: var(--mint);
  font-weight: 700;
}

.date-chip.active .day-name,
.date-chip.active .month-name {
  color: rgba(4, 21, 28, 0.8);
}

.time-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.65rem 0.5rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.time-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 240, 212, 0.4);
}

.time-chip.active {
  background: var(--mint);
  color: var(--navy);
  border-color: var(--mint);
  font-weight: 800;
}

.scheduler-form {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.scheduler-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.scheduler-form input,
.scheduler-form select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.6rem;
  padding: 0.75rem 0.9rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.scheduler-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.scheduler-form input:focus,
.scheduler-form select:focus {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.12);
}

.scheduler-form select option {
  background: var(--navy);
  color: #fff;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.scheduler-btn {
  background: var(--mint);
  color: var(--navy);
  border: none;
  padding: 0.95rem 1.4rem;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 0.6rem;
  margin-top: 0.6rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 24px rgba(168, 240, 212, 0.25);
}

.scheduler-btn:hover {
  background: #bbf4df;
  transform: translateY(-2px);
}

.scheduler-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.4rem 0 0;
}

.scheduler-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.scheduler-success .success-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.scheduler-success h3 {
  font-size: 1.7rem;
  color: var(--mint);
  font-family: var(--display);
  margin: 0 0 0.5rem;
}

.scheduler-success .success-meta {
  font-size: 1.15rem;
  color: #fff;
  margin: 0.5rem 0 1rem;
}

.scheduler-success .success-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Tab controls for contact switcher */
.contact-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  background: rgba(13, 41, 51, 0.05);
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}

.contact-tabs .tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.contact-tabs .tab-btn.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(4, 21, 28, 0.15);
}

