/* Floating WhatsApp Button */
.floating-whatsapp-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    font-family: 'Arial', sans-serif;
}

.floating-whatsapp-button {
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.floating-whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-icon {
    font-size: 20px;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-text {
    font-size: 13px;
    font-weight: 600;
}

/* Mobile responsive - Show on mobile with adjustments */
@media (max-width: 768px) {
    .floating-whatsapp-container {
        left: 10px;
        bottom: 10px;
    }

    .floating-whatsapp-button {
        min-width: 120px;
        font-size: 11px;
        padding: 10px 14px;
    }

    .whatsapp-icon {
        font-size: 16px;
    }

    .whatsapp-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp-container {
        left: 5px;
        bottom: 5px;
    }

    .floating-whatsapp-button {
        min-width: 100px;
        font-size: 10px;
        padding: 8px 12px;
    }

    .whatsapp-icon {
        font-size: 14px;
    }

    .whatsapp-text {
        font-size: 10px;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .floating-whatsapp-container {
        left: 10px;
        bottom: 10px;
    }

    .floating-whatsapp-button {
        min-width: 160px;
        font-size: 12px;
        padding: 10px 16px;
    }

    .whatsapp-icon {
        font-size: 18px;
    }
}

/* Success animation */
.floating-whatsapp-success {
    animation: whatsappSuccess 0.6s ease;
}

@keyframes whatsappSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
} 