.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 18px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #1ebe5d, #0f6f63);
}

.floating-whatsapp {
    position: fixed;
    bottom: 60px; /* Adjust if needed to sit above hotline */
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 14px 22px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    z-index: 9998;
}

/* Icon styling */
.floating-whatsapp i {
    font-size: 22px;
}

/* Hover effect */
.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: #1ebe5d;
}

/* Mobile – icon only circle */
@media (max-width: 576px) {
    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 100px;
    }
}


.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.contact-whatsapp-btn i {
    font-size: 18px;
}

.contact-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}