/* Floating Vertical Social Bar Styles */
.fixed-social {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* FIX: Prevents stretching into ovals */
    gap: 15px;
    z-index: 9999;
    width: fit-content;
}

.social {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    /* FIX: Prevents squishing */
}

.social:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: #fff !important;
}

/* WhatsApp */
.social.whatsapp {
    background-color: #25D366 !important;
}

/* Twitter (X) */
.social.twitter {
    background-color: #1DA1F2 !important;
}

/* Instagram */
.social.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

/* Facebook */
.social.facebook {
    background-color: #1877F2 !important;
}

/* LinkedIn */
.social.linkedin {
    background-color: #0A66C2 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fixed-social {
        right: 10px;
    }

    .social {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        font-size: 18px;
    }
}