/* Popup and Button Styles */
.open-popup-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
}

.open-popup-btn:hover {
    background-color: #0056b3;
}

.contact-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: auto;
    max-width: 600px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    padding: 40px;
    border-radius: 8px;
}

.popup-content {
    text-align: center;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
}

.contact-popup input[type="text"], .contact-popup input[type="email"], .contact-popup input[type="tel"], textarea {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-popup textarea {
    height: 100px;
}

.contact-popup button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
}

.contact-popup button[type="submit"] {
    background-color: #ff6600;
    color: white;
}

.overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Full-screen overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 999; /* Below the popup but above other content */
}

/* Ensure the popup is above the overlay */
.contact-popup {
    z-index: 1000;
}
