/*!* Shared styling for both buttons *!*/
/*.floating-btn {*/
/*    position: fixed;*/
/*    bottom: 30px; !* Distance from bottom *!*/
/*    z-index: 9999; !* Keeps them on top of everything *!*/

/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: #888; !* The grey color from your image *!*/
/*    border-radius: 50%;*/

/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/

/*    color: white;*/
/*    font-size: 24px;*/
/*    text-decoration: none;*/
/*    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*!* Positioning specific to Left and Right *!*/
/*.float-left {*/
/*    left: 30px;*/
/*}*/

/*.float-right {*/
/*    right: 30px;*/
/*}*/

/*!* Hover Effects *!*/
/*.floating-btn:hover {*/
/*    background-color: #0F2C55; !* Changes to Green (like your logo) on hover *!*/
/*    transform: scale(1.1); !* Slightly enlarges the button *!*/
/*    cursor: pointer;*/
/*}*/

/* ================= FLOATING SOCIAL ICONS ================= */
.floating-social-wrapper {
    position: fixed;
    right: 20px;       /* Distance from right side */
    bottom: 30px;      /* Distance from bottom */
    z-index: 9999;     /* Ensures it sits ON TOP of everything including maps */
    display: flex;
    flex-direction: column; /* Stack them vertically */
    gap: 15px;         /* Space between icons */
}

/* Base styling for icons */
.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;       /* Size of the circle */
    height: 55px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow for 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Hover Effect */
.floating-icon:hover {
    transform: scale(1.1) translateY(-3px); /* Pop up slightly */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* --- Brand Colors --- */

/* WhatsApp Green */
.floating-icon.whatsapp {
    background: #25D366;
}

/* Telegram Blue */
.floating-icon.telegram {
    background: #0088cc;
}
.floating-icon.callphone {
    background: #0088cc;
}
/* TikTok (Black with subtle gradient or just black) */
.floating-icon.tiktok {
    background: #000000;
    /* Optional: TikTok gradient border look */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: #000; /* Keeping it clean black like official icon */
}

/* Tooltip (Text appearing on hover) */
.floating-icon .tooltip {
    position: absolute;
    right: 70px; /* Push to the left of the icon */
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    font-family: sans-serif;
    font-weight: bold;
}

/* Arrow for tooltip */
.floating-icon .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0,0,0,0.8);
}

.floating-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Hide on very small screens if they block content (optional) */
@media (max-width: 400px) {
    .floating-social-wrapper {
        right: 10px;
        bottom: 10px;
    }
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}