.lawyer-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.lawyer-fab-tooltip {
    background: #1a1d20;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: fabPulse 3s ease-in-out infinite;
    white-space: nowrap;
    position: relative;
}

.lawyer-fab-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: #1a1d20;
    transform: rotate(45deg);
}

.lawyer-fab-tooltip .price {
    color: #f59e0b;
    font-weight: 800;
}

.lawyer-fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    padding: 16px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.lawyer-fab-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    color: #000;
    text-decoration: none;
}

.lawyer-fab-btn i {
    font-size: 1.3rem;
}

@keyframes fabPulse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.digixy-sign {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    opacity: 0.82;
}

.digixy-sign a {
    color: #6b7280;
    text-decoration: none;
    font-family: Consolas, monospace;
    transition: 0.25s ease;
}

.digixy-sign a span {
    color: #0ea5e9;
    font-weight: 700;
}

.digixy-sign a:hover {
    color: #374151;
    opacity: 1;
}

@media (max-width: 768px) {
    .lawyer-fab {
        bottom: 16px;
        right: 16px;
    }
    .lawyer-fab-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    .lawyer-fab-tooltip {
        font-size: 0.78rem;
        padding: 8px 14px;
    }
}
