/* Floating Social Buttons */
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-social::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
    z-index: -1;
}

.floating-social::after {
    content: '';
    position: fixed;
    left: 42.5px;
    top: calc(100vh - 80px);
    height: 80px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.floating-social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-social-btn:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-social-btn svg {
    transition: transform 0.3s ease;
}

.floating-social-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-social {
        left: 10px;
        gap: 10px;
    }

    .floating-social-btn {
        width: 40px;
        height: 40px;
    }

    .floating-social-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .floating-social {
        left: 8px;
        bottom: 20px;
    }

    .floating-social-btn {
        width: 35px;
        height: 35px;
    }

    .floating-social-btn svg {
        width: 16px;
        height: 16px;
    }
}
