.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--background);
    background-color: var(--primary);
    transition: transform 0.2s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    filter 0.3s ease;
    will-change: transform, box-shadow, filter;
    position: relative;
    overflow: hidden;
}

.btn-social::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 0;
}

.btn-social:hover::after {
    width: 200%;
    height: 200%;
    opacity: 0;
}

.btn-social:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .btn-social {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}
