/* styles-contact.css - Shared Floating Contact buttons and Mobile Bar */

.floating-contact-actions {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
}

.contact-action-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-contact-actions .phone-btn {
    background: #00cca8;
}

.floating-contact-actions .whatsapp-btn {
    background: #25d366;
}

.floating-contact-actions .email-btn {
    background: #735bf0;
}

.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-decoration: none;
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 700;
    gap: 4px;
}

.mobile-action-item i {
    font-size: 1.2rem;
}

.mobile-call {
    color: #00cca8;
    border-right: 1px solid #f1f5f9;
}

.mobile-whatsapp {
    color: #25d366;
}

@media (max-width: 768px) {
    .floating-contact-actions {
        bottom: 85px;
        right: 20px;
    }

    .mobile-contact-bar {
        display: flex;
    }
}