#dw-contact-float-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 24px;
}

#dw-contact-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 360px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    z-index: 999999;
    overflow: hidden;
    display: none;
    font-family: Arial, sans-serif;
}

.dw-popup-header {
    background: #2563eb;
    color: #fff;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dw-popup-body {
    padding: 16px;
}

.dw-popup-body input,
.dw-popup-body textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    outline: none;
}

.dw-popup-body textarea {
    resize: vertical;
    min-height: 120px;
}

.dw-popup-body button {
    width: 100%;
    border: none;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    cursor: pointer;
}

.dw-popup-body button:hover {
    background: #1e4fc7;
}

.dw-success {
    color: green;
    margin-top: 10px;
    display: none;
}

.dw-close-btn {
    cursor: pointer;
    font-size: 20px;
}

.dw-back-btn {
    display: none;
}

@media (max-width: 768px) {

    #dw-contact-popup {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .dw-back-btn {
        display: inline-block;
        margin-right: 10px;
        cursor: pointer;
    }
}