/* popup.css */

/* Reset */
/* Overlay */
.vm-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:15px;
}

/* Popup Box */
.vm-popup-box{
    width:100%;
    max-width:550px;
    background:#111;
    border:2px solid #d4af37;
    border-radius:15px;
    padding:35px;
    position:relative;
    color:#fff;
    box-shadow:0 0 30px rgba(212,175,55,.4);
    animation:popupAnimation .5s ease;
}

@keyframes popupAnimation{
    from{
        opacity:0;
        transform:translateY(-30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.vm-close-btn{
    position:absolute;
    top:10px;
    right:15px;
    background:none;
    border:none;
    color:#d4af37;
    font-size:32px;
    cursor:pointer;
}

.vm-header{
    text-align:center;
    margin-bottom:25px;
}

.vm-logo{
    max-width:120px;
    margin-bottom:15px;
}

.vm-header h2{
    color:#d4af37;
    margin-bottom:10px;
    font-size:30px;
    font-weight:700;
}

.vm-header p{
    color:#ddd;
    font-size:14px;
}

.vm-row{
    margin-bottom:15px;
}

.vm-row input,
.vm-row select,
.vm-row textarea{
    width:100%;
    padding:14px;
    border:1px solid #333;
    border-radius:8px;
    background:#1a1a1a;
    color:#fff;
    font-size:15px;
    box-sizing:border-box;
}

.vm-row input:focus,
.vm-row select:focus,
.vm-row textarea:focus{
    outline:none;
    border-color:#d4af37;
}

/* Submit Button */
.vm-submit-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    background:#d4af37;
    color:#111;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.vm-submit-btn:hover{
    background:#f1c94a;
}

/* WhatsApp Button */
.vm-whatsapp-btn{
    display:block;
    text-align:center;
    margin-top:12px;
    padding:15px;
    border-radius:8px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.vm-whatsapp-btn:hover{
    opacity:.9;
}

@media(max-width:600px){
    .vm-popup-box{
        padding:25px;
    }

    .vm-header h2{
        font-size:24px;
    }
}