/* Reservation flow UI refinements for step1-step2-step3.
   Scoped to .reservation-flow classes to avoid side effects. */

.reservation-flow.reservation-step-1,
.reservation-flow.reservation-step-2,
.reservation-flow.reservation-step-3 {
  background: #f4f6fb;
  background-image: none;
  color: #1e293b;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Step 2: Light / modern Bootstrap override ───────────────────────── */
.reservation-flow.reservation-step-2 {
  background: #f4f6fb !important;
  background-image: none !important;
  color: #1e293b !important;
}

.reservation-step-2 .step-progress {
  background: #fff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.reservation-step-2 .step-breadcrumb ul li:not(:last-child)::after {
  background: #e2e8f0 !important;
}

.reservation-step-2 .step-breadcrumb li.completed:not(:last-child)::after {
  background: #101b31 !important;
}

.reservation-step-2 .circle-group {
  background: #fff !important;
  border-color: #e2e8f0 !important;
  color: #94a3b8 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
}

.reservation-step-2 .step-name span {
  color: #94a3b8 !important;
}

.reservation-step-2 .step-breadcrumb li.active .step-name span,
.reservation-step-2 .step-breadcrumb li.completed .step-name span {
  color: #1e293b !important;
}
/* ──────────────────────────────────────────────────────────────────────── */

.reservation-flow .step-progress {
  background: #fff;
  border-bottom: 1px solid #e9edf5;
  padding: 28px 0 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.reservation-flow .step-breadcrumb {
  max-width: 780px;
  margin: 0 auto;
}

.reservation-flow .step-breadcrumb ul {
  align-items: flex-start;
  margin: 0;
  padding: 0 8px;
}

.reservation-flow .step-breadcrumb ul::before {
  display: none;
}

.reservation-flow .step-breadcrumb ul li {
  position: relative;
  text-align: center;
  min-width: 0;
}

.reservation-flow .step-breadcrumb ul li:not(:last-child)::after {
  top: 21px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 3px;
  background: #e5e7ef;
  border-radius: 999px;
}

.reservation-flow .step-breadcrumb ul li.completed:not(:last-child)::after {
  background: #101b31;
}

.reservation-flow .circle-group {
  width: 44px;
  height: 44px;
  border: 2px solid #e5e7ef;
  background: #fff;
  color: #94a3b8;
  box-shadow: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.reservation-flow .circle-group i {
  font-size: 18px;
}

.reservation-flow .circle-group.active {
  background: #101b31;
  border-color: #101b31;
  color: #fff;
  box-shadow:
    0 0 0 5px rgba(16, 27, 49, 0.1),
    0 6px 16px rgba(16, 27, 49, 0.15);
}

.reservation-flow .circle-group.completed {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: #10b981;
  color: #fff;
}

.reservation-flow .step-name {
  display: block;
  margin-top: 12px;
}

.reservation-flow .step-name span {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  color: #94a3b8;
}

.reservation-flow .step-breadcrumb li.active .step-name span,
.reservation-flow .step-breadcrumb li.completed .step-name span {
  color: #1e293b;
}

/* Route Info Box */
.reservation-step-1 .step-route-section {
  padding: 0 0 28px;
}

.reservation-step-1 .step-route-box {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #101b31 0%, #1e3a5f 100%);
  box-shadow:
    0 4px 24px rgba(16, 27, 49, 0.12),
    0 1px 3px rgba(16, 27, 49, 0.08);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reservation-step-1 .step-route-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-step-1 .step-route-box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-step-1 .route-title h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.reservation-step-1 .route-title h2 i {
  color: rgba(255,255,255,0.5);
  margin: 0 14px;
  font-size: 0.85em;
}

.reservation-step-1 .route-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.reservation-step-1 .route-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  text-align: left;
}

.reservation-step-1 .route-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reservation-step-1 .route-stat-icon i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.reservation-step-1 .route-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.reservation-step-1 .route-stat-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 575px) {
  .reservation-step-1 .route-meta {
    grid-template-columns: 1fr;
  }
  .reservation-step-1 .route-stat {
    padding: 10px 12px;
  }
}

/* Vehicle Selection Cards */
.reservation-step-1 .car-selection-section {
  padding: 0 0 80px;
}

.reservation-step-1 .car-selection {
  border-radius: 18px;
  border: 1px solid #e5e7ef;
  background: #fff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 2px 8px rgba(0, 0, 0, 0.02);
  padding: 0;
  margin-bottom: 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.reservation-step-1 .car-selection:hover {
  border-color: #d0d5e0;
  box-shadow:
    0 8px 30px rgba(16, 27, 49, 0.08),
    0 2px 8px rgba(16, 27, 49, 0.04);
  transform: translateY(-2px);
}

.reservation-step-1 .car-selection > .row {
  align-items: stretch;
  margin: 0;
}

.reservation-step-1 .car-selection > .row > [class*="col-"] {
  padding: 0;
}

.reservation-step-1 .car-selection > .row > .col-lg-5 {
  padding: 24px 24px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-step-1 .car-image-container {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8edf5;
  position: relative;
  height: 100%;
  min-height: 200px;
}

.reservation-step-1 .car-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.reservation-step-1 .car-selection:hover .car-image-container img {
  transform: scale(1.02);
}

.reservation-step-1 .car-detail-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-step-1 .car-name {
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.reservation-step-1 .car-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.reservation-step-1 .car-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  background: #f4f6fb;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 11px;
  border: none;
  letter-spacing: 0.01em;
}

.reservation-step-1 .car-specs span i {
  color: #101b31;
  font-size: 14px;
  opacity: 0.75;
}

.reservation-step-1 .car-description {
  color: #64748b;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.6;
}

.reservation-step-1 .features-toggle-btn {
  border-radius: 8px;
  background: transparent;
  border: 1px dashed #d0d5e0;
  color: #64748b;
  padding: 6px 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 12.5px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.reservation-step-1 .features-toggle-btn:hover {
  background: #f4f6fb;
  border-color: #b0b8c9;
  border-style: solid;
  color: #1e293b;
}

.reservation-step-1 .features-content {
  margin-top: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  max-height: 220px;
  overflow: auto;
}

.reservation-step-1 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.reservation-step-1 .feature-item {
  color: #475569;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reservation-step-1 .feature-item i {
  color: #101b31;
  font-size: 14px;
}

.reservation-step-1 .price-box {
  border-radius: 0;
  border-left: 1px solid #e6edf6;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  text-align: center;
  gap: 10px;
}

.reservation-step-1 .price-box .price {
  color: #0d1b35;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 800;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.reservation-step-1 .price-box .price-label {
  margin-top: 6px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

.reservation-step-1 .price-box .price small {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.6;
  margin-left: 2px;
}

.reservation-step-1 .main-btn-2 {
  width: 100%;
  min-height: 46px;
  background: #0d1b35;
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 18px rgba(13, 27, 53, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.reservation-step-1 .main-btn-2 i {
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reservation-step-1 .main-btn-2:hover {
  background: #152a52;
  box-shadow: 0 12px 26px rgba(13, 27, 53, 0.28);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  .reservation-step-1 .main-btn-2 {
    font-size: 12.5px;
    min-height: 44px;
    padding: 0 24px;
    gap: 10px;
  }
}

.reservation-step-1 .main-btn-2:hover i {
  transform: translateX(4px);
}

@media (min-width: 992px) {
  .reservation-step-1 .main-btn-2 {
    min-height: 44px;
    background: linear-gradient(90deg, #0d1b35 0%, #16335f 60%, #1e427a 100%);
    box-shadow: 0 10px 24px rgba(13, 27, 53, 0.25);
  }
}

.reservation-step-1 .reservation-help-alert {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.reservation-step-1 .reservation-help-alert i.mdi-alert {
  font-size: 32px;
  margin-bottom: 0px;
}

.reservation-step-1 .reservation-help-btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 24px;
  background: #10b981;
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: transform 0.2s;
}

.reservation-step-1 .reservation-help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.35);
}

.reservation-step-2 .step2-main-section {
  padding-top: 32px !important;
  padding-bottom: 88px !important;
}

.reservation-step-2 .checkout-box {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px;
  margin-bottom: 24px;
}

.reservation-step-2 .checkout-title {
  color: #1e293b !important;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.reservation-step-2 .input-groups {
  position: relative;
  margin-bottom: 20px;
  min-height: 64px;
  height: auto;
  padding: 12px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px;
  cursor: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.reservation-step-2 .input-groups:has(input:focus) {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
  background: #fff !important;
}

.reservation-step-2 .input-groups:has(.time-picker:focus),
.reservation-step-2 .input-groups:has(.date-picker:focus) {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
}

.reservation-step-2 .input-groups>label,
.reservation-step-2 .input-groups label.trip-title {
  margin-bottom: 6px !important;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  z-index: 1;
  text-align: left !important;
}

.reservation-step-2 .checkout-input,
.reservation-step-2 .input-groups>input {
  height: 28px;
  border: none !important;
  background: transparent !important;
  color: #1e293b;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  box-shadow: none !important;
  width: 100%;
}

.reservation-step-2 .checkout-input:focus,
.reservation-step-2 .input-groups>input:focus {
  outline: none;
}

.reservation-step-2 .checkout-input::placeholder,
.reservation-step-2 .input-groups>input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.reservation-step-2 .input-groups:has(.date-picker) {
  padding-left: 54px;
}

.reservation-step-2 .input-groups:has(.date-picker)::before {
  content: '\F00ED';
  font-family: "Material Design Icons";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6366f1;
  line-height: 1;
  pointer-events: none;
}

.reservation-step-2 .input-groups:has(.time-picker) {
  padding-left: 54px;
}

.reservation-step-2 .input-groups:has(.time-picker)::before {
  content: '\F0150';
  font-family: "Material Design Icons";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6366f1;
  line-height: 1;
  pointer-events: none;
}

/* Return-transfer date/time inputs have their own label icons — hide ::before there */
.reservation-step-2 .return-transfer-body .input-groups:has(.date-picker),
.reservation-step-2 .return-transfer-body .input-groups:has(.time-picker) {
  padding-left: 0 !important;
}
.reservation-step-2 .return-transfer-body .input-groups:has(.date-picker)::before,
.reservation-step-2 .return-transfer-body .input-groups:has(.time-picker)::before {
  display: none !important;
}

/* ── Desktop submit + policy bar ────────────────────── */
.reservation-step-2 .step2-submit-bar {
  position: relative;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  padding: 24px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  align-items: stretch !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}

.reservation-step-2 .step2-submit-bar::before {
  display: none;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox] {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: transparent;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.9);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]:checked {
  background: #101b31;
  border-color: #101b31;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 27, 49, 0.15);
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy label {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b !important;
  cursor: pointer;
  margin: 0;
  flex: 1;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy label a {
  color: #6366f1 !important;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(99, 102, 241, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy label a:hover {
  color: #4f46e5 !important;
  text-decoration-color: rgba(79, 70, 229, 0.5);
}

.reservation-step-2 .step2-submit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reservation-step-2 .step2-submit-actions .total-payment {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reservation-step-2 .step2-submit-actions .total-payment > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b !important;
  font-weight: 700;
}

.reservation-step-2 .step2-submit-actions .total-payment h4 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #101b31 !important;
  margin: 0;
  line-height: 1.15;
}

/* ── Dönüş Transfer Toggle Kutusu ─────────────────────────── */
.reservation-step-2 .return-transfer-box {
  padding: 0 !important;
  overflow: visible;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  backdrop-filter: none;
  box-shadow: none;
}

.reservation-step-2 .return-toggle-header {
  padding: 0;
}

.reservation-step-2 .return-toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.reservation-step-2 .return-toggle-check {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.reservation-step-2 .return-toggle-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.9);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reservation-step-2 .return-toggle-check:checked {
  background: #101b31;
  border-color: #101b31;
}

.reservation-step-2 .return-toggle-check:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.reservation-step-2 .return-toggle-check:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 27, 49, 0.15);
}

.reservation-step-2 .return-toggle-label:hover {
  background: #f8fafc;
}

.reservation-step-2 .return-toggle-check:checked~.return-toggle-icon {
  background: #f1f5f9;
}

.reservation-step-2 .return-toggle-check:checked~.return-toggle-text {
  color: #1e293b;
}

.reservation-step-2 .return-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  transition: background 0.2s ease;
}

.reservation-step-2 .return-toggle-icon i {
  color: #101b31;
  font-size: 14px;
}

.reservation-step-2 .return-toggle-text {
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  transition: color 0.2s ease;
}

.reservation-step-2 .return-transfer-body {
  padding: 20px 24px;
  border-top: 1px solid #f1f5f9;
  border-radius: 0;
  background: transparent;
  margin-top: 0;
}

/* Neutralise the stray Bootstrap col-12 wrapper inside return-transfer-body
   so the return-row negative margins work correctly against the body padding */
.reservation-step-2 .return-transfer-body>.col-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.reservation-step-2 .return-transfer-body.d-none {
  display: none !important;
}

/* Bootstrap 4 doesn't have g-2; emulate column gutter with mb */
.reservation-step-2 .return-transfer-body .return-row {
  margin-left: -8px;
  margin-right: -8px;
}

.reservation-step-2 .return-row>[class*="col-"] {
  margin-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}

.reservation-step-2 .return-row>[class*="col-"]:last-child {
  margin-bottom: 0;
}

.reservation-step-2 .return-transfer-body .checkout-title {
  margin-top: 0;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

/* ── Return Transfer Input Fields – Enhanced Padding ─────────────── */
.reservation-step-2 .return-transfer-body .input-groups {
  position: relative !important;
  margin-bottom: 20px !important;
  min-height: 64px !important;
  height: auto !important;
  padding: 12px 18px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  cursor: text !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.reservation-step-2 .return-transfer-body .input-groups>label {
  margin-bottom: 6px !important;
  font-size: 12px !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  color: #64748b !important;
  font-weight: 700 !important;
  z-index: 1 !important;
  text-align: left !important;
}

.reservation-step-2 .return-transfer-body .input-groups>input,
.reservation-step-2 .return-transfer-body .checkout-input {
  height: 28px !important;
  border: none !important;
  background: transparent !important;
  color: #1e293b !important;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  width: 100% !important;
}

.reservation-step-2 .return-transfer-body .input-groups:has(input:focus) {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
  background: #fff !important;
}

.reservation-step-2 .return-transfer-body .input-groups:has(.date-picker) {
  padding-left: 56px !important;
}

.reservation-step-2 .return-transfer-body .input-groups:has(.time-picker) {
  padding-left: 56px !important;
}

/* Return Transfer Extras Section – Enhanced Spacing */
.reservation-step-2 .return-transfer-body .extra-select,
.reservation-step-2 .return-transfer-body .select-nosrch {
  height: 56px !important;
  padding: 14px 18px !important;
  padding-right: 42px !important;
}

.reservation-step-2 .return-transfer-body .checkout-title:not(:first-child) {
  margin-top: 28px;
}

.reservation-step-2 .voucher-submit {
  border: 0;
  height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: #101b31;
  box-shadow: 0 2px 8px rgba(16, 27, 49, 0.15);
  transition: all 0.25s ease;
}

.reservation-step-2 .voucher-submit:hover {
  background: #1e3a5f;
  box-shadow: 0 4px 14px rgba(16, 27, 49, 0.25);
}

.reservation-step-2 .step2-summary-card,
.reservation-step-2 .step2-price-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: box-shadow 0.3s ease;
}

/* Clip the full-bleed car image to the card's rounded corners */
.reservation-step-2 .step2-summary-card {
  overflow: hidden;
}

.reservation-step-2 .step2-summary-card:hover,
.reservation-step-2 .step2-price-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.reservation-step-2 .step2-summary-card .f-white,
.reservation-step-2 .step2-summary-card .csg,
.reservation-step-2 .step2-summary-card .csp,
.reservation-step-2 .step2-price-card .f-white,
.reservation-step-2 .step2-price-card .csg,
.reservation-step-2 .step2-price-card .csp {
  color: #475569 !important;
}

.reservation-step-2 .step2-summary-card i.mdi,
.reservation-step-2 .step2-price-card i.mdi {
  color: #101b31 !important;
}

.reservation-step-2 .step-2-car-name {
  color: #1e293b;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

/* Full-bleed car image inside summary card */
.reservation-step-2 .summary-car-image {
  margin: 0 -24px 16px;
  overflow: hidden;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.reservation-step-2 .summary-car-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Specs row (bagaj + kisi) */
.reservation-step-2 .summary-specs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
}

/* Vehicle features list */
.reservation-step-2 .summary-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 6px;
}

.reservation-step-2 .summary-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  color: #475569;
  font-size: 13px;
}

.reservation-step-2 .summary-feature-item i {
  color: #0d1b35 !important;
  font-size: 12px;
}

@media (max-width: 575px) {
  .reservation-step-2 .summary-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Route info (from / to) */
.reservation-step-2 .summary-route {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.reservation-step-2 .summary-route-meta {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reservation-step-2 .summary-route-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e5eaf2;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.reservation-step-2 .summary-route-stat i {
  color: #0d1b35;
  font-size: 15px;
}

.reservation-step-2 .leftf.dotted-gradient {
  height: 20px;
  margin: 10px 0 6px 10px;
  border-left: 2px dashed #cbd5e1;
}

@media (max-width: 575px) {
  .reservation-step-2 .summary-route-meta {
    grid-template-columns: 1fr;
  }
}

/* Override f-white inside light checkout-box */
.reservation-step-2 .checkout-box .f-white,
.reservation-step-2 .checkout-box label.f-white {
  color: #1e293b !important;
}

.reservation-step-2 .extra-list ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.reservation-step-2 .rextra-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: #64748b;
  border-bottom: 1px dashed #e2e8f0;
}

.reservation-step-2 .rextra-items b {
  color: #1e293b;
  font-weight: 700;
}

.reservation-step-2 .extra-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: #64748b;
  border-bottom: 1px dashed #e2e8f0;
}

.reservation-step-2 .extra-items b {
  color: #1e293b;
  font-weight: 700;
}

.reservation-step-2 .new-hr {
  border-color: #e2e8f0;
  margin: 20px 0;
}

/* Total Price Display */
.reservation-step-2 .step2-price-card h4.bold {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e293b;
}

.reservation-step-2 .step2-price-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 6px;
  border-bottom: 1px dashed #f1f5f9;
}

.reservation-step-2 .step2-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1b35;
  letter-spacing: -0.02em;
}

.reservation-step-2 .step2-price-sub {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-step-2 .step2-price-card .total-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #101b31;
}

/* Price row items inside price card */
.reservation-step-2 .step2-price-card > .col-12.d-flex > div[style] {
  padding: 6px 0;
  border-bottom: 1px dashed #f1f5f9;
  font-size: 14.5px;
}

.reservation-step-2 .step2-price-card > .col-12.d-flex > div[style] .f-white {
  color: #64748b !important;
}

.reservation-step-2 .step2-price-card > .col-12.d-flex > div[style] .bold {
  color: #1e293b !important;
  font-weight: 700;
}

/* Price card title bar */
.reservation-step-2 .step2-price-card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #94a3b8;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

/* Return Transfer Section */
.reservation-step-2 #return-transfer {
  width: 100%;
  padding: 0;
  margin-top: 20px;
}

.reservation-step-2 #return-transfer>.col-12 {
  padding: 0;
}

.reservation-step-2 .step2-price-card .policy label {
  color: #64748b;
}

.reservation-step-2 .step2-price-card .policy a {
  color: #101b31;
  text-decoration: underline;
}

.reservation-step-2 .msg-box {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: none;
}

/* Select Dropdown Styling */
.reservation-step-2 .select-nosrch,
.reservation-step-2 .extra-select {
  width: 100%;
  height: 52px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b !important;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

.reservation-step-2 .select-nosrch:focus,
.reservation-step-2 .extra-select:focus {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
  outline: none;
}

.reservation-step-2 .select-nosrch:hover,
.reservation-step-2 .extra-select:hover {
  border-color: #94a3b8 !important;
}

.reservation-step-2 .select-nosrch option,
.reservation-step-2 .extra-select option {
  padding: 10px;
  font-weight: 500;
  background: #fff;
  color: #1e293b;
}

/* Checkbox Styling */
.reservation-step-2 .chk {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reservation-step-2 .chk input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #101b31;
  cursor: pointer;
}

.reservation-step-2 .chk label {
  cursor: pointer;
  user-select: none;
  color: #475569;
}

/* Policy Checkbox */
.reservation-step-2 .policy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reservation-step-2 .policy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #101b31;
  cursor: pointer;
  flex-shrink: 0;
}

.reservation-step-2 .policy label {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  cursor: pointer;
}

.reservation-step-2 .policy a {
  color: #101b31;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.reservation-step-2 .policy a:hover {
  color: #1e3a5f;
  text-decoration: underline;
}

.reservation-step-2 .msg-box i {
  color: #6366f1;
}

.reservation-step-2 .msg-box span {
  color: #1e293b;
}

/* ── Phone (intlTelInput) – input-groups integrated ─────────────── */
.reservation-step-2 .phone-input-group {
  overflow: visible !important;
  cursor: pointer;
}

.reservation-step-2 .phone-input-group .iti {
  display: block !important;
  width: 100% !important;
  height: 28px !important;
  position: relative;
}

.reservation-step-2 .phone-input-group .iti input[type=tel] {
  height: 28px !important;
  border: none !important;
  background: transparent !important;
  color: #1e293b !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
  padding: 0 0 0 90px !important;
  border-radius: 0 !important;
  line-height: 28px !important;
}

.reservation-step-2 .phone-input-group .iti input[type=tel]::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.reservation-step-2 .phone-input-group .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid #e2e8f0 !important;
  border-radius: 0;
  padding: 0 10px 0 0;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  top: 0;
  bottom: auto;
}

.reservation-step-2 .phone-input-group .iti__selected-dial-code {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
}

.reservation-step-2 .phone-input-group .iti__flag-container {
  height: 28px !important;
}

.reservation-step-2 .phone-input-group .iti__country-list {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  margin-top: 6px;
  z-index: 99999;
  background: #fff;
  position: fixed;
  max-height: 260px;
  overflow-y: auto;
}

.reservation-step-2 .phone-input-group .iti__country-list .iti__country {
  padding: 8px 14px;
}

.reservation-step-2 .phone-input-group .iti__country.iti__highlight {
  background-color: #f1f5f9;
}

.reservation-step-2 .phone-input-group .iti__country-name {
  color: #1e293b;
}

.reservation-step-2 .phone-input-group .iti__dial-code {
  color: #64748b;
}

.reservation-step-2 .phone-input-group .iti__arrow {
  border-top-color: #64748b;
}

.reservation-step-2 .phone-input-group .iti__arrow--up {
  border-bottom-color: #6366f1;
  border-top-color: transparent;
}

.reservation-step-2 .phone-input-group .iti__search-input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  border-radius: 8px;
  padding: 8px 12px;
  width: calc(100% - 24px);
  margin: 8px 12px;
  font-size: 14px;
}

/* ── Geliştirilmiş submit bar (masaüstü) — light override ─────── */
/* (primary rules live in the "Desktop submit + policy bar" block above) */
.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox] {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: transparent;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.9);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]:checked {
  background: #101b31;
  border-color: #101b31;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 27, 49, 0.15);
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy label {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b !important;
  cursor: pointer;
  margin: 0;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy label a {
  color: #6366f1 !important;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(99, 102, 241, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.reservation-step-2 .step2-submit-bar .step2-submit-policy label a:hover {
  color: #4f46e5 !important;
  text-decoration-color: rgba(79, 70, 229, 0.5);
}

.reservation-step-2 .step2-submit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reservation-step-2 .step2-submit-actions .total-payment {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reservation-step-2 .step2-submit-actions .total-payment>span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b !important;
  font-weight: 700;
}

.reservation-step-2 .step2-submit-actions .total-payment h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #101b31 !important;
  margin: 0;
}

/* ── Unified submit alanı (fiyat kartının içinde, her zaman görünür) ─── */
.reservation-step-2 .step2-unified-submit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy input[type=checkbox] {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: transparent;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.9);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy input[type=checkbox]:checked {
  background: #101b31;
  border-color: #101b31;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy input[type=checkbox]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 27, 49, 0.15);
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy label {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  cursor: pointer;
  margin: 0;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy label a {
  color: #6366f1;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(99, 102, 241, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.reservation-step-2 .step2-unified-submit .step2-submit-policy label a:hover {
  color: #4f46e5;
  text-decoration-color: rgba(79, 70, 229, 0.5);
}

.reservation-step-2 .step2-unified-submit .voucher-submit {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .reservation-step-2 .step2-layout-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
  }

  .reservation-step-2 .step2-layout-row>.step2-left-column {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .reservation-step-2 .step2-layout-row>.step2-right-column {
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
    align-self: flex-start;
    position: sticky;
    top: 94px;
  }
}

@media (min-width: 992px) {
  .reservation-step-2 .step2-layout-row>.step2-right-column {
    flex-basis: 360px;
    width: 360px;
    max-width: 360px;
  }
}

@media (min-width: 1200px) {
  .reservation-step-2 .step2-layout-row>.step2-right-column {
    flex-basis: 380px;
    width: 380px;
    max-width: 380px;
  }
}

@media (max-width: 767px) {
  .reservation-step-2 .step2-layout-row {
    display: block;
  }

  .reservation-step-2 .step2-right-column {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 16px;
  }
}

.reservation-step-3 .rez-complete-section {
  padding: 74px 0 96px;
}

.reservation-step-3 .rez-complete-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 42px 32px;
}

.reservation-step-3 .rez-complete-box::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(243, 192, 75, 0.08), transparent 70%);
}

.reservation-step-3 .rez-complete-box .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.reservation-step-3 .rez-complete-box .head i {
  font-size: 72px;
  color: #10a36f;
  filter: drop-shadow(0 0 16px rgba(16, 163, 111, 0.4));
}

.reservation-step-3 .rez-complete-box .head i.mdi-close {
  color: #ef4444 !important;
  filter: drop-shadow(0 0 16px rgba(239, 68, 68, 0.4));
}

.reservation-step-3 .rez-complete-box .message {
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: #1e293b;
  font-weight: 800;
  text-align: center;
}

.reservation-step-3 .rez-complete-info {
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
  margin-top: 18px;
  padding: 24px;
}

.reservation-step-3 .rez-complete-info .form-note {
  color: #475569 !important;
  font-size: 15px;
  line-height: 1.7;
}

.reservation-step-3 .rez-number-box {
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(243, 192, 75, 0.08) 0%, rgba(243, 192, 75, 0.02) 100%);
  border: 1px solid rgba(243, 192, 75, 0.2);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.reservation-step-3 .rez-number-box span:first-child {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #64748b;
}

.reservation-step-3 .rez-number-box span:last-child {
  font-family: var(--font-display, "Manrope", sans-serif);
  font-size: 34px;
  letter-spacing: 2px;
  color: #101b31;
  font-weight: 800;
}

.reservation-step-3 .main-btn.add-border {
  border: 0;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  background: #101b31;
  color: #fff;
  box-shadow: 0 2px 8px rgba(16, 27, 49, 0.15);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.reservation-step-3 .main-btn.add-border:hover {
  background: #1e3a5f;
  box-shadow: 0 4px 14px rgba(16, 27, 49, 0.25);
}

@media (max-width: 991px) {
  .reservation-flow .step-breadcrumb ul {
    padding: 0;
  }

  .reservation-flow .step-breadcrumb ul li:not(:last-child)::after {
    left: calc(50% + 24px);
    width: calc(100% - 48px);
  }

  .reservation-step-1 .step-route-box {
    padding: 24px 22px;
    border-radius: 16px;
  }

  .reservation-step-1 .car-selection {
    padding: 0;
  }

  .reservation-step-1 .car-image-container {
    border-radius: 18px 18px 0 0;
    min-height: 200px;
  }

  .reservation-step-1 .car-selection > .row > .col-lg-5 {
    padding: 16px 18px 0;
  }

  .reservation-step-1 .price-box {
    border-radius: 0 0 18px 18px;
    border-left: none;
    border-top: 1px solid #eef0f6;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .reservation-step-1 .price-box .price {
    font-size: 1.5rem;
  }

  .reservation-step-1 .main-btn-2 {
    width: auto;
    padding: 0 56px;
    min-height: 42px;
    gap: 10px;
  }

  .reservation-step-2 .checkout-box {
    padding: 18px;
  }

  .reservation-step-2 .step2-summary-card,
  .reservation-step-2 .step2-price-card {
    padding: 16px;
  }
}

@media (max-width: 575px) {
  .reservation-step-1 .main-btn-2 {
    padding: 0 58px;
    min-height: 44px;
  }
}

@media (max-width: 768px) {
  .reservation-flow .step-name {
    display: block;
  }

  .reservation-flow .step-name span {
    font-size: 11px;
  }

  .reservation-flow .circle-group {
    width: 38px;
    height: 38px;
  }

  .reservation-flow .step-breadcrumb ul li:not(:last-child)::after {
    top: 18px;
    left: calc(50% + 21px);
    width: calc(100% - 42px);
  }

  .reservation-step-1 .route-meta span {
    width: 100%;
    justify-content: center;
  }

  .reservation-step-2 .step2-main-section {
    padding-top: 24px !important;
    padding-bottom: 72px !important;
  }

  .reservation-step-3 .rez-complete-box {
    padding: 30px 22px;
  }
}

@media (max-width: 576px) {
  .reservation-flow .step-breadcrumb ul {
    padding: 0 2px;
  }

  .reservation-flow .step-name span {
    font-size: 10px;
    letter-spacing: 0;
  }

  .reservation-step-1 .step-route-box {
    border-radius: 14px;
  }

  .reservation-step-1 .route-meta span {
    width: 100%;
    justify-content: center;
  }

  .reservation-step-1 .reservation-help-alert {
    text-align: center;
  }

  .reservation-step-2 .return-transfer-box {
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .reservation-step-2 .return-toggle-header {
    padding: 2px 2px 8px;
  }

  .reservation-step-2 .return-toggle-label {
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
  }

  .reservation-step-2 .return-toggle-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .reservation-step-2 .return-transfer-body {
    padding: 14px;
  }

  /* Mobile: Return Transfer Input Groups - sama stili normal input gibi */
  .reservation-step-2 .return-transfer-body .input-groups {
    position: relative !important;
    margin-bottom: 16px !important;
    min-height: 62px !important;
    height: auto !important;
    padding: 12px 16px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    cursor: text !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }

  .reservation-step-2 .return-transfer-body .input-groups>input,
  .reservation-step-2 .return-transfer-body .checkout-input {
    height: 26px !important;
    border: none !important;
    background: transparent !important;
    color: #1e293b !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    width: 100% !important;
  }

  .reservation-step-2 .return-transfer-body .input-groups {
    padding: 12px 16px !important;
    min-height: 62px !important;
    margin-bottom: 14px !important;
  }

  .reservation-step-2 .return-transfer-body .input-groups>input {
    font-size: 15px !important;
  }

  .reservation-step-2 .return-transfer-body .input-groups:has(.date-picker),
  .reservation-step-2 .return-transfer-body .input-groups:has(.time-picker) {
    padding-left: 50px !important;
  }

  .reservation-step-2 .return-transfer-body .extra-select,
  .reservation-step-2 .return-transfer-body .select-nosrch {
    height: 52px !important;
    padding: 12px 16px !important;
    padding-right: 40px !important;
  }

  .reservation-step-2 .return-transfer-body .return-row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .reservation-step-2 .return-row>[class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .reservation-step-3 .rez-number-box span:last-child {
    font-size: 27px;
    letter-spacing: 1.2px;
  }
}

/* ---------------------------------------------------- */
/* OVERRIDE FOR RESPONSIVE.CSS CONFLICT */
/* ---------------------------------------------------- */
/* The global style in responsive.css:60 (.input-groups { height: 50px; margin-bottom: 5px !important; }) */
/* was forcing all inputs to be small and cramped. */
/* We override it here with MAXIMUM specificity for Step 2. */

/* Force ALL input-groups to have proper height (fixes özel not and other inputs) */
body.reservation-flow.reservation-step-2 .checkout-box .input-groups,
body.reservation-flow.reservation-step-2 .input-groups {
    height: auto !important; /* Override fixed 50px */
    min-height: 56px !important; /* Adequate height for all inputs including text fields */
    margin-bottom: 16px !important; /* Override 5px !important */
}

/* Specifically target the Return Transfer (Dönüş Bilgileri) inputs with horizontal flexbox design */
body.reservation-flow.reservation-step-2 .return-transfer-body .input-groups {
    min-height: 68px !important;
    height: auto !important;
    padding: 14px 20px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
}

/* Ensure the inputs inside return-transfer don't get double padding or wrong height */
body.reservation-flow.reservation-step-2 .return-transfer-body .input-groups input,
body.reservation-flow.reservation-step-2 .return-transfer-body .input-groups select {
    height: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Fix return transfer toggle checkbox background - prevent any pattern background */
body.reservation-flow.reservation-step-2 .return-toggle-header,
body.reservation-flow.reservation-step-2 .return-toggle-label {
    background: transparent !important;
    background-image: none !important;
}
