/* === Global Font === */
body,
#enquiryBox,
.enquiry-header,
.enquiry-body {
    font-family: 'HELVITICA ', sans-serif;
    font-weight: 500;
}

/* === Toggle Button === */
#enquiryToggleBtn {
    position: fixed;
    top: 255px;
    right: 0;
    padding: 14px 22px;
    background: linear-gradient(to right, #e8e5e5, #883939);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.25s;
    z-index: 999;
}

#enquiryToggleBtn:hover {
    background: #333333;
    color: #ffffff;
}

/* === Enquiry Box === */
#enquiryBox {
    position: fixed;
    top: 50px;
    right: 30px;
    width: 420px;
    max-width: 95vw;
    height: auto;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out forwards;
    border: 1px solid #e8e5e5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* === Header === */
.enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: #e8e5e5;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.enquiry-header h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.close-btn1 {
    background: transparent;
    border: none;
    font-size: 26px;
    color: #000;
    cursor: pointer;
}

/* === Body === */
.enquiry-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.enquiry-body label {
    display: block;
    margin-top: 16px;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.enquiry-body input,
.enquiry-body textarea {
    width: 100%;
    padding: 10px 14px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    background: #fdfdfd;
    transition: border 0.2s ease, background 0.2s ease;
}

.enquiry-body input:focus,
.enquiry-body textarea:focus {
    border-color: #999;
    outline: none;
    background: #ffffff;
}

.enquiry-body textarea {
    resize: vertical;
    min-height: 120px;
}

/* === Submit Button === */
.enquiry-body button[type=submit] {
    margin-top: 24px;
    padding: 12px 30px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.enquiry-body button[type=submit]:hover {
    background: #444444;
}

/* === Responsive Enhancements === */
@media (max-width: 576px) {
    #enquiryBox {
        width: 90%;
        right: 5%;
        top: 30px;
        border-radius: 12px;
    }

    .enquiry-header h2 {
        font-size: 18px;
    }

    .close-btn1 {
        font-size: 24px;
    }

    .enquiry-body {
        padding: 16px;
    }

    .enquiry-body input,
    .enquiry-body textarea {
        font-size: 14px;
    }

    .enquiry-body button[type=submit] {
        font-size: 15px;
        padding: 10px 24px;
    }
}

/* === WhatsApp Floating Button === */
.item {
    position: fixed;
    bottom: 30px;
    /* Distance from bottom */
    right: 10px;
    /* Distance from right */
    width: 55px;
    height: 55px;
    background: #25D366;
    /* WhatsApp green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    /* Above enquiry form */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.item:hover {
    background: #1ebc57;
    transform: scale(1.1);
}

.item i {
    font-size: 28px;
    color: #ffffff;
}