/* Professional Floating Contact Widget Styles */
.contact-widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
}

.contact-widget-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    z-index: 2;
}

.contact-widget-main-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.contact-widget-main-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-widget-item .icon-box svg {
    width: 16px;
    height: 16px;
}
.contact-widget-item.whatsapp .icon-box svg { fill: #25D366; }
.contact-widget-item.call .icon-box svg { fill: #3B82F6; }
.contact-widget-item.email .icon-box svg { fill: #10B981; }

.contact-widget-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    min-width: 200px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-widget-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-widget-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.contact-widget-item:last-child {
    margin-bottom: 0;
}

.contact-widget-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-4px);
}

.contact-widget-item .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-widget-item.whatsapp .icon-box { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.contact-widget-item.call .icon-box { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.contact-widget-item.email .icon-box { background: rgba(16, 185, 129, 0.15); color: #10B981; }

.contact-widget-item .label {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* Tooltip style animation for labels */
.contact-widget-item .label span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 1px;
}

/* Static main button — no pulsing waves. */
.contact-widget-main-btn {
    animation: none;
}
