/* ================================================================= */
/* BULUŞMA PLANI & RANDEVU BİLETİ (BOARDING PASS) STİLLERİ */
/* ================================================================= */
.boarding-pass-layout {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-top: 10px;
  align-items: flex-start;
}

/* Sol Taraf: Seçimlerin Yapıldığı Panel */
.selection-panel {
  flex: 1.1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.plan-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: -15px;
}

/* Seçim Adımları Yapısı */
.step-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Yatay Düğme Grubu */
.plan-options-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.plan-opt-btn-mini {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 14px;
  border: 1.5px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--primary-font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  box-shadow: 0 4px 8px rgba(0,0,0,0.01);
}

.plan-opt-btn-mini:hover {
  transform: translateY(-2px);
  background: white;
  border-color: var(--rose-medium);
}

.plan-opt-btn-mini.selected {
  background: var(--rose-deep) !important;
  color: white !important;
  border-color: var(--rose-deep) !important;
  box-shadow: var(--neon-shadow-pink) !important;
}

.mini-icon {
  font-size: 16px;
}

/* Yatay Kaydırılabilir Tarih Bölümü */
.date-scroll-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 2px;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-light) transparent;
}

.date-scroll-container::-webkit-scrollbar {
  height: 4px;
}

.date-scroll-container::-webkit-scrollbar-thumb {
  background: var(--rose-light);
  border-radius: 10px;
}

.plan-opt-btn-small {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1.5px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--primary-font);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 85px;
}

.plan-opt-btn-small:hover {
  transform: translateY(-2px);
  background: white;
  border-color: var(--rose-medium);
}

.plan-opt-btn-small.selected {
  background: var(--rose-deep) !important;
  color: white !important;
  border-color: var(--rose-deep) !important;
  box-shadow: var(--neon-shadow-pink) !important;
}

/* "Hemen!" Butonu Özel Görünümü */
.plan-opt-btn-small.special-hemen-btn {
  background: rgba(255, 71, 126, 0.08);
  border-color: rgba(255, 71, 126, 0.25);
  color: var(--rose-deep);
}

.plan-opt-btn-small.special-hemen-btn:hover {
  background: rgba(255, 71, 126, 0.15);
  border-color: var(--rose-medium);
}

.plan-opt-btn-small.special-hemen-btn.selected {
  background: linear-gradient(135deg, var(--rose-medium) 0%, var(--rose-deep) 100%) !important;
  color: white !important;
  border-color: var(--rose-deep) !important;
  box-shadow: var(--neon-shadow-pink) !important;
}

.date-num {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.date-day {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 2px;
  display: block;
}

/* Diğer seçeneği için Textarea */
.other-input-container {
  margin-top: -5px;
  animation: slideDown 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.other-input-container textarea {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid var(--rose-light);
  padding: 12px 15px;
  font-family: var(--primary-font);
  font-size: 14px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.95);
  resize: none;
  outline: none;
  transition: all 0.2s;
}

.other-input-container textarea:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 10px rgba(255, 71, 126, 0.15);
}

/* Sağ Taraf: Canlı Bilet Önizleme Paneli */
.ticket-preview-panel {
  flex: 0.9;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 40px;
  width: 100%;
}

.preview-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Bilet Gövdesi */
.boarding-ticket {
  width: 430px;
  height: 450px;
  background: linear-gradient(135deg, #fff3f5 0%, #ffe0e6 100%);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(255, 71, 126, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 2px solid white;
  flex-shrink: 0;
}

/* Bilet Yan Delikleri */
.boarding-ticket::before, .boarding-ticket::after {
  content: '';
  position: absolute;
  top: 55%;
  width: 18px;
  height: 18px;
  background: #ffc2d1; /* Sayfa arka plan rengine uydur */
  border-radius: 50%;
  z-index: 10;
}
.boarding-ticket::before { left: -9px; }
.boarding-ticket::after { right: -9px; }

.ticket-header {
  background: var(--rose-deep);
  color: white;
  padding: 14px 20px;
  font-family: var(--primary-font);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.ticket-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
  height: 100%;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 71, 126, 0.15);
  padding-bottom: 8px;
}

.ticket-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-field {
  display: flex;
  flex-direction: column;
}

.ticket-field.text-right {
  text-align: right;
  align-items: flex-end;
}

.ticket-label {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.ticket-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Barcode */
.ticket-barcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1.5px dashed rgba(255, 71, 126, 0.25);
}

.barcode-lines {
  height: 35px;
  width: 85%;
  background: repeating-linear-gradient(90deg, 
    #4a3b40, 
    #4a3b40 2px, 
    transparent 2px, 
    transparent 5px, 
    #4a3b40 5px, 
    #4a3b40 6px, 
    transparent 6px, 
    transparent 9px
  );
  opacity: 0.75;
}

.barcode-number {
  font-size: 8px;
  letter-spacing: 3.5px;
  color: var(--text-muted);
  font-weight: 700;
}

/* Onayla ve Gönder Butonu */
.submit-plan-btn {
  width: 100%;
  max-width: 380px;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, var(--rose-medium) 0%, var(--rose-deep) 100%);
  color: white;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 15px rgba(255, 71, 126, 0.2);
}

.submit-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 71, 126, 0.3);
}

.submit-plan-btn:active {
  transform: translateY(0);
}

.submit-plan-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.plan-status-msg {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rose-deep);
  min-height: 20px;
}

/* Responsive Düzen */
@media (max-width: 900px) {
  .boarding-pass-layout {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .selection-panel {
    width: 100%;
  }

  .ticket-preview-panel {
    position: static;
    width: 100%;
    max-width: 430px;
  }
}

@media (max-width: 480px) {
  .boarding-ticket {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .ticket-body {
    padding: 20px 16px;
    height: auto;
  }

  .plan-options-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .plan-opt-btn-mini {
    padding: 12px 10px;
  }
  
  .selection-panel {
    padding: 20px;
  }
}

/* Güncel Plan Bölümü */
.current-plan-section {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  border-top: 2px dashed rgba(255, 71, 126, 0.25);
  padding-top: 40px;
  animation: fadeIn 0.6s ease;
}

.current-plan-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.current-plan-ticket-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Onaylı Bilet Stili */
.boarding-ticket.confirmed-ticket {
  border: 3px solid #2ecc71;
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.18);
  transform: rotate(-1deg);
  transition: all 0.3s ease;
}

.boarding-ticket.confirmed-ticket:hover {
  transform: rotate(0deg) scale(1.02);
}

.confirmed-stamp {
  position: absolute;
  top: 55px;
  right: 25px;
  border: 3px double #2ecc71;
  color: #2ecc71;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 8px;
  text-transform: uppercase;
  border-radius: 5px;
  transform: rotate(12deg);
  letter-spacing: 1px;
  font-family: var(--primary-font);
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 5;
}

