/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-decoration: none;
    border-radius: 50px;
}

.whatsapp-button:hover {
    color: #FFF;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 30px;
    line-height: 60px;
}

.whatsapp-text {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 15px;
        font-size: 24px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
        line-height: 50px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 10px;
        font-size: 20px;
    }
    
    .whatsapp-button i {
        font-size: 20px;
        line-height: 45px;
    }
}

/* Quick Contact Buttons */
.quick-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.quick-contact-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-phone {
    background-color: #007bff;
}

.btn-phone:hover {
    background-color: #0056b3;
}

.btn-email {
    background-color: #dc3545;
}

.btn-email:hover {
    background-color: #c82333;
}

/* Hide quick contact on mobile to avoid conflicts */
@media (max-width: 768px) {
    .quick-contact {
        display: none;
    }
}
