/* ============================================================
   Premium VIP - Randevu ve Başvuru Özel Stilleri
   ============================================================ */

/* Randevu Türü Seçim Sekmeleri (Tabs) */
.booking-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--color-light-bg);
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.type-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.type-toggle-btn.active {
  background: var(--color-black);
  color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.type-toggle-btn i {
  font-size: 1.2rem;
}

/* Randevu Adımları */
.booking-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-light-border);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Saat Dilimleri Grid (Slots) */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.slot-btn {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  color: #1F2937;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  min-height: 44px;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--color-gold);
  background: var(--color-gold-light);
  color: #B45309;
}

.slot-btn.selected {
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
  border-color: var(--color-gold) !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.slot-btn:disabled, .slot-btn.booked {
  background: #F3F4F6;
  color: #9CA3AF;
  border-color: #E5E7EB;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.6;
}

/* Öğretmen Bilgi Kartı Önizlemesi */
.teacher-preview-card {
  display: none;
  align-items: center;
  gap: 16px;
  background: var(--color-light-bg);
  border: 1px solid var(--color-light-border);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 14px;
}

.teacher-preview-card.show {
  display: flex;
}

.teacher-preview-avatar {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.teacher-preview-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.teacher-preview-info p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

/* Başarı Ekranı (Success State) */
.success-screen-card {
  text-align: center;
  padding: 50px 30px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-border);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: #DEF7EC;
  color: #0E9F6E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 24px;
}

.success-screen-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-screen-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-details-box {
  background: var(--color-light-bg);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  margin-bottom: 30px;
}

.success-details-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.925rem;
}

.success-details-row:last-child {
  border-bottom: none;
}

.success-details-row span:first-child {
  color: var(--color-text-muted);
}

.success-details-row span:last-child {
  font-weight: 600;
  color: var(--color-black);
}

@media (max-width: 576px) {
  .booking-type-toggle {
    grid-template-columns: 1fr;
  }
  
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
