/* Travel Popup Styles */
.modal-travel-popup .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.modal-travel-popup .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1060;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup-container {
    display: flex;
    min-height: 550px;
}

/* Left Pane */
.popup-left {
    flex: 1;
    background: #e3f2fd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.popup-left-header {
    background: #ff8c00;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.popup-left img {
    max-width: 90%;
    height: auto;
}

/* Right Pane */
.popup-right {
    flex: 1.2;
    background: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.popup-right-header {
    background: #ff8c00;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.popup-subtext {
    text-align: center;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.popup-form .form-control {
    border-radius: 30px;
    padding: 12px 20px;
    margin-bottom: 12px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
}

.popup-form .form-control:focus {
    border-color: #ff8c00;
    box-shadow: none;
}

.popup-form .phone-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.popup-form .phone-prefix {
    width: 100px;
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    padding: 0 15px;
    background: #f8f9fa;
    font-size: 14px;
}

.popup-form .phone-prefix img {
    width: 20px;
    margin-right: 8px;
}

.popup-form .btn-submit-popup {
    background: #ff8c00;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-weight: 700;
    width: 100%;
    margin-top: 5px;
    transition: background 0.3s;
}

.popup-form .btn-submit-popup:hover {
    background: #e67e00;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-container {
        flex-direction: column;
        min-height: auto;
    }

    .popup-left {
        padding-top: 60px;
    }

    .popup-left-header {
        font-size: 16px;
    }

    .popup-right {
        padding: 25px 20px;
    }

    .popup-right-header {
        font-size: 16px;
    }
}