/* ============================================================
   BOOKING MODAL - Komplett neu, radikal vereinfacht
   GOLDENE REGEL: NIE SCROLLEN - overflow: hidden überall!
   ============================================================ */

/* ========== BACKDROP ========== */
.booking-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease-out;
}

.booking-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ========== MODAL CONTAINER ========== */
.booking-modal {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* KRITISCH: Kein Scroll! */
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 250ms ease-out;
  position: relative;
}

.booking-backdrop.open .booking-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Desktop: Fixe Maße */
@media (min-width: 768px) {
  .booking-modal {
    width: 520px;
    height: 740px; /* Erhöht von 680px auf 740px für mehr Platz */
    max-height: 90vh;
  }

  /* Wenn Sub-Picker offen, sanfte Höhen-Erweiterung */
  .booking-modal.picker-open {
    height: 780px; /* Angepasst von 720px auf 780px */
    transition: height 200ms ease-in-out, transform 250ms ease-out, opacity 250ms ease-out;
  }
}

/* Mobile: Vollbild */
@media (max-width: 767px) {
  .booking-backdrop {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .booking-modal {
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic Viewport Height für Safari */
    border-radius: 0;
    max-height: none;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ========== HEADER ========== */
.booking-header {
  flex-shrink: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.booking-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease;
  color: var(--text-secondary);
}

.booking-close:hover {
  background: var(--border-subtle);
  color: var(--text-primary);
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .booking-header {
    padding: 16px 20px;
  }

  .booking-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}

/* ========== PROGRESS BAR ========== */
.booking-progress {
  flex-shrink: 0;
  padding: 16px 24px 20px;
}

.booking-progress-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-align: center;
}

.booking-progress-track {
  width: 100%;
  height: 4px;
  background: var(--bg-subtle);
  border-radius: 2px;
  overflow: hidden;
}

.booking-progress-fill {
  height: 100%;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: width 250ms ease-out;
}

@media (max-width: 767px) {
  .booking-progress {
    padding: 12px 20px 16px;
  }
}

/* ========== CONTENT AREA ========== */
.booking-content {
  flex: 1;
  overflow: hidden; /* KRITISCH: Kein Scroll! */
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .booking-content {
    padding: 0 20px 20px;
  }
}

/* ========== STEP CONTAINER ========== */
.booking-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* KRITISCH: Kein Scroll! */
}

.booking-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 8px;
  text-align: center;
}

.booking-step-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .booking-step-title {
    font-size: 22px;
  }

  .booking-step-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

/* ========== FOOTER ========== */
.booking-footer {
  flex-shrink: 0;
  padding: 16px 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-btn-back,
.booking-btn-next,
.booking-btn-submit {
  min-height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.booking-btn-next,
.booking-btn-submit {
  margin-left: auto;
}

@media (max-width: 767px) {
  .booking-footer {
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .booking-btn-back {
    flex: 1;
  }

  .booking-btn-next,
  .booking-btn-submit {
    flex: 2;
  }
}

/* ========== SUCCESS SCREEN ========== */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.booking-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand-primary);
  animation: success-icon-in 400ms ease-out;
}

@keyframes success-icon-in {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.booking-success-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.booking-success-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 0 32px;
}

.booking-success .btn {
  min-width: 200px;
}

@media (max-width: 767px) {
  .booking-success {
    padding: 20px;
  }

  .booking-success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .booking-success-title {
    font-size: 22px;
  }

  .booking-success-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .booking-success .btn {
    width: 100%;
  }
}

/* ========== STEP 0: METHOD SELECT ========== */
.method-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .method-cards {
    flex-direction: row;
    gap: 20px;
  }
}

.method-card {
  flex: 1;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 200ms ease-out;
  min-height: 180px;
  text-align: center;
}

.method-card:hover {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 111, 68, 0.1);
}

.method-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: all 200ms ease-out;
}

.method-card:hover .method-card-icon {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.1);
}

.method-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
}

.method-card-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .method-card {
    padding: 24px 20px;
    min-height: 160px;
  }

  .method-card-icon {
    width: 56px;
    height: 56px;
  }

  .method-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .method-card-title {
    font-size: 18px;
  }

  .method-card-subtitle {
    font-size: 13px;
  }
}

/* ========== STEP 1: DOCTOR SELECT ========== */
.doctor-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .doctor-cards {
    flex-direction: row;
    gap: 20px;
  }
}

.doctor-card {
  position: relative;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 200ms ease-out;
  flex: 1;
  min-height: 200px;
}

.doctor-card:hover:not(:disabled) {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 111, 68, 0.1);
}

.doctor-card:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.doctor-card.selected {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  box-shadow: 0 0 0 3px rgba(76, 111, 68, 0.1);
}

.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-subtle);
  flex-shrink: 0;
  transition: all 200ms ease-out;
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 200ms ease-out;
}

.doctor-card:hover .doctor-avatar img,
.doctor-card.selected .doctor-avatar img {
  filter: grayscale(0%);
}

.doctor-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}

.doctor-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkmark-pop 400ms ease-out;
  z-index: 10;
}

@keyframes checkmark-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 767px) {
  .doctor-card {
    padding: 24px 20px;
    min-height: 160px;
  }

  .doctor-avatar {
    width: 64px;
    height: 64px;
  }

  .doctor-name {
    font-size: 18px;
  }

  .doctor-checkmark {
    width: 64px;
    height: 64px;
  }

  .doctor-checkmark svg {
    width: 20px;
    height: 20px;
  }
}

/* ========== STEP 2: WISH SLOTS ========== */
.wish-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.wish-slot-card {
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  min-height: 72px;
  display: flex;
  align-items: center;
  transition: all 150ms ease-out;
  overflow: hidden;
}

/* Empty Slot */
.wish-slot-card.empty {
  padding: 0 20px;
  gap: 12px;
  cursor: pointer;
  justify-content: center;
  color: var(--text-secondary);
}

.wish-slot-card.empty:hover {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  color: var(--brand-primary);
}

.wish-slot-card.empty.optional {
  border-style: dashed;
  opacity: 0.7;
}

.wish-slot-card.empty.required {
  border-color: var(--brand-primary);
  border-width: 2px;
}

.wish-slot-text {
  font-size: 15px;
  font-weight: 500;
}

/* Filled Slot */
.wish-slot-card.filled {
  padding: 0;
  position: relative;
}

.wish-slot-main {
  flex: 1;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 150ms ease;
}

.wish-slot-main:hover {
  background: var(--bg-subtle);
}

.wish-slot-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.wish-slot-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.wish-slot-badge {
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 500;
}

.wish-slot-remove {
  flex-shrink: 0;
  width: 36px;
  height: 72px;
  background: var(--bg-subtle);
  border: none;
  border-left: 1px solid var(--border-subtle);
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wish-slot-remove:hover {
  background: #fee;
  color: #c0392b;
}

@media (max-width: 767px) {
  .wish-slot-card {
    min-height: 64px;
  }

  .wish-slot-main {
    padding: 12px 16px;
  }

  .wish-slot-date {
    font-size: 15px;
  }

  .wish-slot-badge {
    font-size: 12px;
    padding: 3px 10px;
  }

  .wish-slot-remove {
    height: 64px;
    width: 32px;
  }
}

/* ========== SUB-PICKER OVERLAY ========== */
.slot-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 50;
  animation: fade-in 200ms ease-out;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slot-picker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  z-index: 51;
  animation: slide-up-picker 200ms ease-out;
  max-height: 85%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@keyframes slide-up-picker {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.slot-picker-header {
  padding: 16px 24px 12px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.slot-picker-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.slot-picker-body {
  flex: 1;
  overflow: hidden; /* KEIN SCROLL! */
  padding: 16px 24px 12px;
}

.slot-picker-footer {
  flex-shrink: 0;
  padding: 12px 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 150ms ease;
}

.btn-text:hover {
  color: var(--text-primary);
}

@media (max-width: 767px) {
  .slot-picker-header {
    padding: 12px 20px 10px;
  }

  .slot-picker-title {
    font-size: 16px;
  }

  .slot-picker-body {
    padding: 12px 20px 10px;
  }

  .slot-picker-footer {
    padding: 10px 20px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .slot-picker-footer .btn {
    flex: 1;
  }
}

/* ========== MINI CALENDAR ========== */
.mini-calendar {
  margin-bottom: 16px;
}

.mini-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mini-calendar-month {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.mini-calendar-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease;
  color: var(--text-secondary);
}

.mini-calendar-nav-btn:hover:not(:disabled) {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  color: var(--brand-primary);
}

.mini-calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.mini-calendar-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 150ms ease;
  color: var(--text-primary);
  min-height: 32px;
}

.mini-calendar-day.header {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: default;
  background: none;
  border: none;
}

.mini-calendar-day.available:hover {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
}

.mini-calendar-day.selected {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  font-weight: 600;
}

.mini-calendar-day.today {
  border-color: var(--brand-primary);
  font-weight: 600;
}

.mini-calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

@media (max-width: 767px) {
  .mini-calendar {
    margin-bottom: 12px;
  }

  .mini-calendar-nav {
    margin-bottom: 12px;
  }

  .mini-calendar-month {
    font-size: 14px;
  }

  .mini-calendar-day {
    font-size: 12px;
    min-height: 28px;
  }

  .mini-calendar-grid {
    gap: 3px;
  }
}

/* ========== DAYTIME PILLS ========== */
.daytime-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.daytime-pill {
  flex: 1;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-height: 60px;
}

.daytime-pill:hover {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
}

.daytime-pill.selected {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  box-shadow: 0 0 0 3px rgba(76, 111, 68, 0.1);
}

.daytime-pill-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.daytime-pill-sublabel {
  font-size: 11px;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .daytime-pills {
    gap: 6px;
  }

  .daytime-pill {
    min-height: 56px;
    padding: 8px 6px;
  }

  .daytime-pill-label {
    font-size: 13px;
  }

  .daytime-pill-sublabel {
    font-size: 10px;
  }
}

/* ========== STEP 3: CONTACT FORM ========== */
.contact-summary {
  background: var(--brand-soft);
  border: 1px solid rgba(76, 111, 68, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px; /* Extra Platz für Footer-Button */
}

.contact-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-surface);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  box-sizing: border-box;
}

.contact-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(76, 111, 68, 0.1);
}

.contact-input::placeholder {
  color: var(--text-muted);
}

.contact-textarea {
  resize: vertical;
  min-height: 64px;
  font-family: inherit;
  line-height: 1.5;
}

.contact-hint {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  padding: 10px 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

.contact-hint svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
  cursor: pointer;
  margin-top: 4px;
}

.contact-consent span {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-consent input[type="checkbox"] {
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-consent a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.contact-consent a:hover {
  text-decoration: none;
}

.contact-error {
  padding: 12px 16px;
  background: #fee;
  border: 1px solid #fcc;
  border-radius: var(--radius-sm);
  color: #c0392b;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .contact-summary {
    font-size: 12px;
    padding: 8px 12px;
    margin: 0 0 10px;
  }

  .contact-form {
    gap: 6px;
    padding-bottom: 16px; /* Extra Platz für Footer-Button auf Mobile */
  }

  .contact-input {
    padding: 10px 12px;
    font-size: 16px; /* Important: iOS zooms if < 16px */
  }

  .contact-textarea {
    min-height: 52px;
  }

  .contact-hint {
    font-size: 11px;
    padding: 8px 10px;
    margin-top: 0;
  }

  .contact-consent {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 0;
    gap: 8px;
  }

  .contact-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }

  .contact-error {
    font-size: 12px;
    padding: 8px 10px;
    margin-top: 4px;
  }
}

/* ========== STEP 5: CALL SCREEN ========== */
.call-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.call-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
}

.call-card {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: all 200ms ease-out;
  cursor: pointer;
}

.call-card:hover {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 111, 68, 0.1);
}

.call-card-doctor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.call-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-subtle);
}

.call-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.call-card-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 600;
  transition: all 200ms ease-out;
}

.call-card:hover .call-card-phone {
  background: var(--brand-dark, #0d5f58);
  transform: scale(1.05);
}

.call-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
}

.call-hours svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .call-cards {
    gap: 12px;
    margin-top: 20px;
  }

  .call-card {
    padding: 16px;
  }

  .call-card-avatar {
    width: 56px;
    height: 56px;
  }

  .call-card-name {
    font-size: 16px;
  }

  .call-card-phone {
    font-size: 16px;
    padding: 10px 16px;
  }

  .call-hours {
    font-size: 12px;
    margin-top: 20px;
    padding: 10px 12px;
  }
}

/* ========== ANIMATIONS ========== */

/* Screen-Wechsel (wird später für Steps genutzt) */
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-out-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .booking-modal,
  .booking-backdrop,
  .booking-progress-fill,
  .booking-success-icon {
    animation: none !important;
    transition: none !important;
  }
}
