.social-media {
    background: ghostwhite;
    color: #333;
    text-align: center;
    padding: 60px 0;
}

.social-media h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.social-media p {
    margin-bottom: 30px;
    color: #555;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-card {
    background: #fff;
    border-radius: 12px;
    width: 180px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform .3s;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 220px;
    padding: 12px 15px;
    background: rgba(0,0,0,.85);
    color: #fff;
    border-radius: 8px;
    font-size: .9em;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0,0,0,.85);
}

.social-card:hover .tooltip {
    opacity: 1;
    transform: translate(-50%, -4px);
}
