/* ===== FLOATING BUTTON CONTAINER ===== */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

/* ===== BASE BUTTON STYLE ===== */
.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Hover effect */
.floating-btn:hover {
    transform: scale(1.1);
}

/* ===== SPECIFIC BUTTON COLORS ===== */

.whatsapp-btn {
    background-color: #25D366;
}

.scroll-top-btn {
    background-color: #0f172a;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Social buttons */
.social-btn {
    background-color: #1e293b;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .floating-container {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ===== Floating Button Updates ===== */

/* WhatsApp top right */
.whatsapp-btn.top-right {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 9999;
}

/* Scroll button hover yellow */
.scroll-top-btn:hover {
    background-color: #FFD700 !important;
    color: #000 !important;
}

/* Ensure bottom floating container is horizontal */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 9999;
}