/* Global WhatsApp Floating Button - Available on all pages */
.whatsapp-float-global {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float-global:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Contact Action Links */
.contact-action-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-action-link:hover {
    text-decoration: underline;
}

/* Phone Links */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="tel:"]:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Email Links */
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* WhatsApp Links */
a[href*="wa.me"] {
    color: #25D366;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href*="wa.me"]:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .whatsapp-float-global {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Hide duplicate WhatsApp buttons on contact page */
body.contact-page .whatsapp-float-global {
    display: none;
}
