﻿/* ===== Floating Social Bar ===== */
.social-floating {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    animation: fadeInRight 1s ease forwards;
}

/* ===== Button Styles ===== */
.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    /* ===== Platform Colors ===== */
    .social-btn.phone {
        background-color: #00796b;
    }
    /* Teal */
    .social-btn.whatsapp {
        background-color: #25D366;
    }
    /* WhatsApp Green */
    .social-btn.facebook {
        background-color: #1877f2;
    }
    /* Facebook Blue */
    .social-btn.instagram {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .social-btn.linkedin {
        background-color: #0077b5;
    }
    /* LinkedIn Blue */

    /* ===== Hover Effects ===== */
    .social-btn:hover {
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

/* ===== Animation ===== */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(80px) translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .social-floating {
        top: auto;
        bottom: 20px;
        right: 10px;
        flex-direction: row;
        transform: none;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
