/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: auto;
    height: auto;
    padding: 14px 24px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 2px solid #fff;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFFFFF !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        bottom: 30px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float i {
        margin: 0;
        font-size: 30px;
    }
} 