/* Floating Action Button - Dark Glassmorphism Design */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.floating-btn-group {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 35px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-btn-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

/* Text Label - Always Visible */
.floating-btn-group .btn-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Icons Container */
.btn-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Individual Icon Buttons - Glass Style */
.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

/* Call Button - Blue Glass */
.icon-btn.call {
    background: rgba(74, 144, 226, 0.85);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* WhatsApp Button - Green Glass */
.icon-btn.whatsapp {
    background: rgba(37, 211, 102, 0.85);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Hover Effects */
.icon-btn:hover {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.icon-btn.call:hover {
    background: rgba(74, 144, 226, 1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

.icon-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn-group {
        padding: 9px 16px;
        gap: 10px;
        border-radius: 32px;
    }

    .floating-btn-group .btn-text {
        font-size: 0.85rem;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn-group {
        padding: 8px 14px;
        gap: 8px;
        border-radius: 30px;
    }

    .floating-btn-group .btn-text {
        font-size: 0.8rem;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .btn-icons {
        gap: 6px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .floating-btn-group,
    .icon-btn {
        transition: none;
    }
}