/* .whatsapp-btn,
.pdf-btn{
    position: fixed;
    right: 27px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
}

WhatsApp
.whatsapp-btn{
    bottom: 14px;
    background: #25D366;
}

PDF Button
.pdf-btn{
    bottom: 75px; above whatsapp 
    background: #ff3b30;
}

.whatsapp-btn:hover,
.pdf-btn:hover{
    transform: scale(1.08);
}

.whatsapp-btn img,
.pdf-btn img{
    width: 30px;
} */






/* Floating Buttons */
.whatsapp-btn,
.pdf-btn{
    position: fixed;
    right: 27px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-btn{
    bottom: 14px;
    background: #25d342;
}

.pdf-btn{
    bottom: 80px;
    background: #ff3b30;
}

.whatsapp-btn:hover,
.pdf-btn:hover{
    transform: scale(1.08);
}

.whatsapp-btn img,
.pdf-btn img{
    width: 32px;
}


/* Popup Background */
.pdf-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show Popup */
.show-popup{
    opacity: 1;
    visibility: visible;
}


/* Form Box */
.estimate-form{
    width: 90%;
    max-width: 420px;
    background: rgba(7, 32, 63, 0.96);
    padding: 30px;
    border-radius: 22px;
    position: relative;

    transform: scale(0.9);
    transition: all 0.3s ease;
}

/* Smooth Open Animation */
.show-popup .estimate-form{
    transform: scale(1);
}


/* Form Layout */
.estimate-form form{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Title */
.estimate-form h2{
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* Input Fields */
.estimate-form input{
    width: 100%;
    height: 56px;
    border: none;
    outline: none;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 16px;
    background: #f3f3f3;
    color: #333;
}


/* Submit Button */
.estimate-form button{
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #ff1f34;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.estimate-form button:hover{
    background: #ff0f24;
    transform: translateY(-2px);
}


/* Close Button */
.close-popup{
    position: absolute;
    top: 10px;
    right: 16px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}