.body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/* Modal background */
.modal {
    display: flex;                /* Use flexbox */
    justify-content: center;      /* Center horizontally */
    align-items: center;          /* Center vertically */
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.12);
}
/* Modal content */
.modal-content {
    background: #fffbe6;
    padding: 28px 22px 18px 22px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(184, 116, 34, 0.13);
    width: 95%;
    margin: 0;
    max-width: 350px;
    position: relative;
    animation: popIn 0.3s;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 8px; right: 14px;
    font-size: 1.5rem;
    color: #5f3508;
    cursor: pointer;
    font-weight: bold;
}

.popup-contact-form label {
    font-size: 1rem;
    color: #693d0b;
    margin-top: 8px;
    display: block;
}

.popup-contact-form input,
.popup-contact-form textarea {
    width: 100%;
    padding: 7px 10px;
    margin: 5px 0 12px 0;
    border: 1.5px solid #f7c873;
    border-radius: 6px;
    background: #fff3f3;
    font-size: 1rem;
    box-sizing: border-box;
}

.popup-contact-form button[type="submit"] {
    background: #f56e00;
    color: #fff;
    font-size: 1rem;
    padding: 8px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin-top: 8px;
}

.popup-contact-form button[type="submit"]:hover {
    background: #ce8d48;
}

.popup-contact-form {
    max-width: 350px;
    margin: 6px auto 0 auto; /* This centers the form horizontally */
    background: #fffbe6;
    padding: 28
    px 22px 18px 22px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(184, 116, 34, 0.13);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-success-message {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    font-size: 1.3rem;
    color: #fff;
    background: #92681a;
    border-radius: 14px;
    margin-top: 18px;
    animation: successPop 0.7s cubic-bezier(.23,1.12,.72,.98);
    box-shadow: 0 4px 24px rgba(184, 116, 34, 0.13);
    text-align: center;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    60% {
        opacity: 1;
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}