@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}
.contact-section {
    position: relative;
    background: #f8f9fa;
}

.form-wrapper {
    border: 1px solid #e3e3e3;
}

/* Confirmation popup */
.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
    transition: opacity 0.3s ease-in-out;
}

.confirmation-popup.show {
    display: flex;
}

.popup-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

/* Loader styling */
.button__loader {
    margin-left: 0.5rem;
}

/* Custom responsiveness if needed */
@media (max-width: 576px) {
    .form-wrapper {
        padding: 2rem 1rem;
    }

    .popup-content {
        padding: 1.5rem;
    }
}