/* Модальное окно */
.modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h4 {
    font-weight: 600;
    color: #111827;
}

/* Форма */
.transfer-form {
    font-size: 15px;
    color: #111827;

    .text-primary {
        color: #4338ca !important
    }
}

.transfer-form label {
    font-weight: 500;
    margin-bottom: 6px;
}

.transfer-form .form-group {
    margin-bottom: 16px;
}

/* Inputs */
.transfer-form .form-control {
    height: 46px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.transfer-form .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Address field */
.address-field {
    transition: all 0.25s ease;
}

/* Количество билетов */
.ticket-count {
    text-align: center;
    font-weight: 500;
}

/* Разделитель */
.transfer-form hr {
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

/* Checkbox */
.form-check {
    padding-left: 1.4rem;
}

.form-check-input {
    margin-top: 0.3rem;
    accent-color: #4f46e5;
}

.form-check-label {
    color: #6b7280;
    font-size: 14px;
}

/* Блок цены */
.price-box {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

.price-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #4f46e5;
}

/* Кнопка отправки */
.transfer-form button[type="button"] {
    height: 50px;
    border-radius: 10px;
    background: #f7e12c;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}

.transfer-form button[type="button"]:not(:disabled):hover {
    background: #f7e12c;
    color: #000;
}
.transfer-form button[type="button"]:disabled {
    opacity: 0.3 !important;
    background: #c5c5c5;
}
.transfer-form button[type="button"]:active {
    transform: scale(0.98);
}

/* Адаптив */
@media (max-width: 576px) {
    .price-value {
        font-size: 22px;
    }
}
.error-box {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ff0000;
    font-weight: bold;
}
.transfer-form {
    input:disabled, select:disabled {
        background-color: #ededed !important;
    }
}

.passengers {
    margin-top: 30px;
}

.section-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.passenger-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.passenger-header {
    background: #f9fafb;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
}

.passenger-toggle {
    font-size: 18px;
    line-height: 1;
}

.passenger-body {
    display: none;
    padding: 14px;
}

.passenger-card.open .passenger-body {
    display: block;
}
.order-preview {
    font-size: 15px;
    color: #111827;
}

.preview-title {
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.preview-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.preview-row:last-child {
    margin-bottom: 0;
}

.preview-row span {
    color: #6b7280;
}

.preview-row strong {
    font-weight: 600;
    text-align: right;
}

.preview-actions {
    margin-top: 20px;
}

.preview-actions .btn {
    color: #000;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-again-btn {
    background-color: #ececec !important;
    border-radius: 10px;
    height: 46px;
    font-weight: 500;
}
.order-again-btn:hover {
    background-color: #d1d1d1 !important;
}
.price-preview {
    font-size: 24px;
}
