/*Side fixed icons Start*/
#hxb-enquiry-forms .fixed-icons {
    position: fixed;
    right: 20px;           /* thoda andar lao */
    bottom: 35%;
    display: flex;
    flex-direction: column;
    gap: 15px;             /* 👈 main fix (spacing) */
    z-index: 1000;
}

#hxb-enquiry-forms .fixed-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 55px;           /* proper size */
    height: 55px;

    color: #000;
    font-size: 22px;

    border-radius: 50%;    /* 👈 circle look (better UI) */
    background: #d9f45f;

    border: 2px solid #d9f45f;

    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#hxb-enquiry-forms .fixed-icons a:hover {
    background: #000;
    color: #d9f45f;
    transform: translateY(-5px) scale(1.1);
}

/* Icons colors */
#hxb-enquiry-forms .fixed-icons .phone-icon {
    background-color: #d9f45f;
}
#hxb-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #d9f45f;
}
#hxb-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d9f45f;
}


/* Popup Form */
#hxb-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Form Box */
#hxb-enquiry-forms .form-content {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    border: 2px solid #d9f45f;
    box-shadow: 0 0 20px rgba(217, 244, 95, 0.4);
    
    height: auto;     
    max-height: 90vh;      
    overflow-y: auto;     
    display: flex;
    flex-direction: column;
}

/* Heading */
#hxb-enquiry-forms .form-content h5 {
    color: #d9f45f;
    text-align: center;
}

/* Close Button */
#hxb-enquiry-forms .close-btn {
    position: absolute;
    top: 5px;
    right: 12px;
    cursor: pointer;
    font-size: 35px;
    color: #d9f45f;
}

/* Inputs */
#hxb-enquiry-forms .popup-form form input,
#hxb-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #d9f45f;
    border-radius: 6px;
    background-color: #000;
    color: #fff;
}

/* Placeholder color */
#hxb-enquiry-forms input::placeholder,
#hxb-enquiry-forms textarea::placeholder {
    color: #aaa;
}

/* Button */
#hxb-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 12px;
    background-color: #d9f45f;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#hxb-enquiry-forms .popup-form form button:hover {
    background-color: #000;
    color: #d9f45f;
    border: 1px solid #d9f45f;
}


