/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn i {
    color: white;
    font-size: 32px;
}

.whatsapp-btn::after {
    content: "Chat with us";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover::after {
    opacity: 1;
}

/* Call Button Styles */
.call-btn {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 60px;
    height: 60px;
    background-color: #FF5722;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: pulse-call 2s infinite;
    text-decoration: none;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.call-btn i {
    color: white;
    font-size: 32px;
}

.call-btn::after {
    content: "Call us: 8530069003";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.call-btn:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-btn, .call-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i, .call-btn i {
        font-size: 28px;
    }
    
    .call-btn {
        right: 100px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .whatsapp-btn {
        right: 15px;
    }
    
    .call-btn {
        right: 80px;
    }
    
    .whatsapp-btn i, .call-btn i {
        font-size: 26px;
    }
}