﻿/* Floating Social Icons */
.floating-social {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

    .floating-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        margin: 10px 0;
        color: #fff;
        border-radius: 50%;
        font-size: 24px;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0,0,0,.25);
        transition: all .3s ease;
    }

        .floating-social a:hover {
            transform: translateX(-8px) scale(1.1);
            box-shadow: 0 12px 25px rgba(0,0,0,.35);
        }

/* Brand Colors */
.facebook {
    background: #1877F2;
}

.twitter {
    background: #1DA1F2;
}

.instagram {
    background: linear-gradient(45deg,#F58529,#FEDA77,#DD2A7B,#8134AF,#515BD4);
}

.google {
    background: #DB4437;
}

/* Mobile */
@media(max-width:768px) {
    .floating-social {
        right: 10px;
    }

        .floating-social a {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
}

.floating-social a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    transition: .35s;
}

    .floating-social a:hover {
        transform: translateX(-10px) rotate(360deg);
    }