/* Enquire Button */
.enquire-btn {
    background: #7a7f63;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    /* font-size: 18px; */
    font-weight: 600;
}

.enquire-btn:hover {
    background: #697256;
}

.title{
    margin-bottom: 15px;
}
/* Popup Background */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 15px;
    z-index: 9999;
    /* font-family: Inter, sans-serif !important; */
        /* font-family: Inter, sans-serif; */
}

/* Popup Box */
.popup-box {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    box-sizing: border-box;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}

.close-btn:hover {
    color: black;
}

/* Form Inputs */
.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

/* Checkbox */

.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 18px;
}

.check input[type="checkbox"] {
    width: 16px;      /* make checkbox smaller */
    height: 16px;
    margin-top: 3px;  /* align with text */
    cursor: pointer;
}


.submit-btn {
    width: 100%;
    padding: 12px;
    background: #7a7f63;
    color: white;
    border: none;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #5d644c;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile Responsive Rules */
@media (max-width: 480px) {
    .popup-box {
        padding: 18px;
        max-width: 90%;
    }

    .submit-btn {
        font-size: 16px;
    }
}
