body.no-scroll {
    overflow: hidden;
}

.request-offer-btn,
.request-offer-form .request-offer-submit-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background-color: #435494;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.request-offer-btn:hover,
.request-offer-form .request-offer-submit-button:hover {
    background-color: #364278;
    color: #ffffff;
}

.request-offer-btn {
    margin-bottom: 20px;
}

.request-offer-btn-mobile {
    display: none;
}

@media (max-width: 991px) {
    .request-offer-btn-mobile {
        display: block;
    }

    .sidebar .request-offer-btn {
        display: none;
    }
}

.request-offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.request-offer-modal-content {
    display: flex;
    padding: 32px;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    height: max-content;
    max-height: 90vh;
    overflow: auto;
    width: 100%;
    max-width: 520px;
    margin: 0 16px;
}

.request-offer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.request-offer-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
}

.request-offer-modal-header .close-modal {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #666666;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s ease;
}

.request-offer-modal-header .close-modal:hover {
    color: #333333;
}

.request-offer-subtitle {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.request-offer-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.request-offer-field input,
.request-offer-message-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 15px;
    color: #333333;
    background: #ffffff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.request-offer-field input:focus,
.request-offer-message-wrapper textarea:focus {
    outline: none;
    border-color: #435494;
}

.request-offer-field input::placeholder,
.request-offer-message-wrapper textarea::placeholder {
    color: #999999;
    font-size: 15px;
}

.request-offer-message-wrapper {
    margin-bottom: 20px;
}

.request-offer-message-wrapper textarea {
    resize: vertical;
    font-family: inherit;
}

/* Submit Button - unique properties */
.request-offer-form .request-offer-submit-button {
    text-transform: uppercase;
}

.request-offer-form .request-offer-submit-button:disabled {
    background-color: #9da8c9;
    cursor: not-allowed;
}

.request-offer-form .gdpr-container {
    margin-bottom: 12px;
}

.request-offer-form .gdpr-container .radio-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.request-offer-form .gdpr-container .radio-container input[type="radio"] {
    accent-color: #435494;
    flex: none;
    height: 28px;
}

.request-offer-form .gdpr-container label {
    display: block;
    color: #333333;
}

.request-offer-form .error-message {
    display: none;
    color: #e74c3c;
    margin-bottom: 12px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .request-offer-modal-content {
        padding: 24px;
        max-width: 100%;
        margin: 0 12px;
    }

    .request-offer-modal-header h2 {
        font-size: 18px;
    }
}
