/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

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

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    display: inline-block;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-btn .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-btn i {
        margin-right: 0;
    }
}

/* Visitor Counter */
.visitor-counter {
    margin-top: 10px;
}

.visitor-counter p {
    margin: 0;
    opacity: 0.8;
} 