/* Minimal custom styles – all layout is Bootstrap */
body {
    background: #f5f7fa;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.profile-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.profile-card:hover {
    transform: translateY(-3px);
}

.avatar-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-tag {
    background: #eef2f6;
    color: #1a1e24;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.feature-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.feature-item:last-child {
    border-right: 0;
}

.feature-item i {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-bottom: 0.2rem;
}

.feature-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1e24;
}

.feature-item small {
    display: block;
    font-size: 0.7rem;
    color: #6c757d;
}

/* Social pill buttons – custom colors */
.btn-social {
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-social:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

.btn-x {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-x:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-instagram {
    background: #E4405F;
    color: #fff;
    border: 1px solid #E4405F;
}

.btn-instagram:hover {
    background: #d1324e;
    color: #fff;
}

.btn-telegram {
    background: #0088cc;
    color: #fff;
    border: 1px solid #0088cc;
}

.btn-telegram:hover {
    background: #0077b3;
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    color: #fff;
}

@media (max-width: 576px) {
    .avatar-wrapper {
        width: 110px;
        height: 110px;
    }

    .feature-item {
        border-right: 0;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 0.75rem;
    }

    .feature-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

.partner-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;

    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-transform: capitalize;

    color: #1c75bc;
    font-weight: 700;
    background: rgba(25, 135, 84, 0.12);
    border: 1px solid rgba(25, 135, 84, 0.25);

    animation: pulseGlow 2s infinite;
}

.partner-highlight i {
    animation: handshakeBounce 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(25, 135, 84, 0);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 18px rgba(25, 135, 84, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(25, 135, 84, 0);
    }
}

@keyframes handshakeBounce {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-12deg);
    }
    75% {
        transform: rotate(12deg);
    }
}