/* WP Contact Buttons - Frontend Styles */
.wpcb-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.wpcb-container.wpcb-left { align-items: flex-start; }

.wpcb-btn-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.wpcb-container.wpcb-right .wpcb-btn-wrap { flex-direction: row-reverse; }
.wpcb-container.wpcb-left .wpcb-btn-wrap { flex-direction: row; }

.wpcb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.wpcb-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.wpcb-btn svg { width: 55%; height: 55%; }

/* Tooltip */
.wpcb-tooltip {
    background: rgba(0,0,0,0.82);
    color: #fff;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(5px);
    margin-right: 10px;
}
.wpcb-container.wpcb-left .wpcb-tooltip {
    margin-right: 0;
    margin-left: 10px;
    transform: translateX(-5px);
}
.wpcb-btn-wrap:hover .wpcb-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation */
.wpcb-btn.pulse {
    animation: wpcb-pulse 2.5s infinite;
}
@keyframes wpcb-pulse {
    0% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 12px rgba(255,255,255,0); }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0); }
}
.wpcb-btn.pulse:hover { animation: none; }

/* Bounce animation */
.wpcb-btn.bounce {
    animation: wpcb-bounce 2s infinite;
}
@keyframes wpcb-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.wpcb-btn.bounce:hover { animation: none; transform: scale(1.1); }

/* Mobile */
@media (max-width: 768px) {
    .wpcb-tooltip { display: none; }
}
