.enquiry-wrapper {
    position: fixed;
    bottom: 50px;           /* Above WhatsApp */
    right: 20px;
    z-index: 1000;
}

.enquiry-float {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(211,47,47,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.enquiry-float:hover {
    transform: translateY(-3px);
    background: #b71c1c;
    box-shadow: 0 8px 25px rgba(183,28,28,0.5);
}

.enquiry-float i {
    font-size: 1.3rem;
}

.enquiry-card {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.enquiry-card.active {
    display: flex;
}

.enquiry-header {
    background: #d32f2f;
    color: white;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#closeEnquiry {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

#leadForm {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#leadForm input,
#leadForm select,
#leadForm textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.submit-btn {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background: #b71c1c;
}
