 .whatsapp-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
 .whatsapp-form-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out;
}
.whatsapp-form-popup.showpopup {
    opacity: 1;
    visibility: visible;
}
.close-whatsapp-form {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #0da3c1;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.2rem;
}
.close-whatsapp-form:hover {
	background:#067389;
}
.whatsapp-form-content h3 {
    color: #2899b4;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}
.whatsapp-form-content {
	font-size:16px; margin-bottom:20px;
}
#whatsappForm {
	margin-top:0; line-height:1.4;
}
#whatsappForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333; font-weight:bold;
	margin-top:15px;
}
#whatsappForm .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
	background:#FFF; margin-bottom:0;
}
#whatsappForm input {
	font-family: 'Lato', sans-serif;
}
#whatsappForm textarea {
	resize:none;
	font-family: 'Lato', sans-serif;
}
#whatsappForm small {
	font-size:12px;
}
.whatsapp-button {
	text-align:center;
	padding-top:20px;
}