.quote-modal .modal-dialog {
    max-width: 920px;
}

.quote-modal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(22, 30, 55, 0.2);
}

.quote-modal .modal-header {
    background: linear-gradient(90deg, #ef4355 0%, #ff7c4d 100%);
    padding: 16px 22px;
}

.quote-modal .modal-title,
.quote-modal .btn-close {
    color: #ffffff;
}

.quote-modal .btn-close {
    filter: invert(1) grayscale(100%);
}

.quote-modal .modal-body {
    padding: 0;
}

.quote-layout {
    display: flex;
    min-height: 450px;
}

.quote-side {
    width: 36%;
    background: linear-gradient(165deg, #1d2f5c 0%, #2f4e91 100%);
    color: #ffffff;
    padding: 24px 22px;
}

.quote-side h6 {
    color: #ffc221;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.quote-side h4 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.quote-side p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.quote-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-side ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.quote-side ul li i {
    color: #ffc221;
    font-size: 18px;
    position: relative;
    top: 1px;
}

.quote-form-wrap {
    width: 64%;
    background: #ffffff;
    padding: 20px 22px 18px;
}

.quote-form-intro {
    margin-bottom: 14px;
    color: #57627a;
}

.quote-form-wrap .form-label {
    color: #263049;
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 14px;
}

.quote-form-wrap .form-control {
    border: 1px solid #d3d9e4;
    border-radius: 10px;
    min-height: 46px;
    padding: 10px 14px;
    font-size: 14px;
}

.quote-form-wrap textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.quote-form-wrap .form-control:focus {
    border-color: #ef4355;
    box-shadow: 0 0 0 0.18rem rgba(239, 67, 85, 0.18);
}

.quote-captcha-box {
    background-color: #f5f7fc;
    border: 1px dashed #d3d9e4;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    color: #252525;
}

.quote-captcha-box .captcha-text {
    font-size: 18px;
    letter-spacing: 0.6px;
}

.quote-submit-btn {
    min-width: 220px;
}

.quote-form-status {
    min-height: 24px;
    margin-top: 8px;
    font-weight: 600;
}

@media only screen and (max-width: 991px) {
    .quote-layout {
        flex-direction: column;
        min-height: auto;
    }

    .quote-side,
    .quote-form-wrap {
        width: 100%;
    }

    .quote-side {
        padding: 24px 20px;
    }

    .quote-form-wrap {
        padding: 22px 20px;
    }

    .quote-submit-btn {
        width: 100%;
    }
}
