/* ===============================
   SOSIAL MEDIA SECTION
================================= */

.sosmed-section {
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
    padding: 80px 0;
}

/* Header */
.sosmed-header {
    max-width: 760px;
    margin: 0 auto 55px;
    animation: fadeUp 0.8s ease;
}

.sosmed-header .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #3d105f;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.sosmed-header .section-title::after {
    content: "";
    display: block;
    width: 85px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 30px;
    background: linear-gradient(90deg, #5e1992, #8e3cac, #efa735);
}

.sosmed-header p {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 18px;
}

/* Card */
.sosmed-card {
    border: none;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(61, 16, 95, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.sosmed-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #5e1992, #8e3cac, #efa735);
}

.sosmed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(61, 16, 95, 0.14);
}

/* Foto */
.sosmed-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid #f3e7ff;
    transition: 0.3s ease;
}

.sosmed-card:hover .sosmed-photo {
    transform: scale(1.06);
}

/* Badge */
.platform-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 30px;
    background: #f4e8ff;
    color: #5e1992;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Username */
.sosmed-card h5 {
    color: #3d105f;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Bidang */
.sosmed-card p {
    color: #6c757d;
    font-size: 0.96rem;
    margin-bottom: 0;
}

.empty-box {
    background: #ffffff;
    border: none;
    border-radius: 26px;
    padding: 50px 30px;
    box-shadow: 0 15px 35px rgba(61, 16, 95, 0.08);
    max-width: 620px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.empty-box::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: rgba(142, 60, 172, 0.05);
    border-radius: 50%;
}

.empty-box::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(239, 167, 53, 0.06);
    border-radius: 50%;
}

/* gif */
.empty-gif {
    width: 190px;
    height: auto;
    object-fit: contain;
    animation: floatGif 3.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* title */
.empty-box h5 {
    color: #3d105f;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* text */
.empty-box p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* mobile */
@media (max-width: 768px) {
    .sosmed-section {
        padding: 60px 0;
    }

    .sosmed-header .section-title {
        font-size: 1.9rem;
    }

    .sosmed-photo {
        width: 95px;
        height: 95px;
    }

    .empty-gif {
        width: 120px;
    }
}

/* animasi */
@keyframes floatGif {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* mobile */
@media (max-width: 768px) {
    .empty-box {
        padding: 40px 20px;
    }

    .empty-gif {
        width: 145px;
    }

    .empty-box h5 {
        font-size: 1.15rem;
    }

    .empty-box p {
        font-size: 0.95rem;
    }
}
