
.left-half-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    background: var(--gradient-primary-magenta);
    overflow: hidden;
}

.left-half-bg::before,
.left-half-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.left-half-bg::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    background: var(--white);
}

.left-half-bg::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 50px;
    background: var(--white);
}

.visual-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    --radius: 160px;
    background-image: radial-gradient(var(--black-alpha-08) 1px, var(--transparent) 1px);
    background-size: 20px 20px;
}

.half-arc {
    position: absolute;
    width: calc(var(--radius) * 2);
    height: calc(var(--radius) * 2);
    border: 8px solid var(--border-gray-light-alt);
    border-radius: 50%;
    z-index: 1;
    clip-path: inset(0 0 0 50%);
}

.profile-circle {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 4px;
    background: var(--gradient-primary-magenta);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white);
}

.icon-node {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 10px var(--black-alpha-15);
    z-index: 4;
    border: 3px solid var(--white);

    left: 50%;
    top: 50%;
    margin-left: -24px;
    margin-top: -24px;

    transform: translate(calc(cos(var(--angle)) * var(--radius)),
            calc(sin(var(--angle)) * var(--radius)));
}

.icon-1 {
    --angle: 270deg;
}

.icon-2 {
    --angle: 315deg;
}

.icon-3 {
    --angle: 0deg;
}

.icon-4 {
    --angle: 45deg;
}

.icon-5 {
    --angle: 90deg;
}

.bg-profile-id {
    position: absolute;
    top: 30px;
    left: 6px;
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    z-index: 5;
}

.bg-profile-id i {
    font-size: 17px;
    padding: 6px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.bg-profile-id::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -6px;
    width: 50px;
    height: 3px;
    background: var(--gradient-white-transparent);
    border-radius: 2px;
}
@media (min-width: 992px) and (max-width: 1199px) {

    .visual-wrap {
        height: 520px;
        --radius: 110px;
    }

    .profile-circle {
        width: 150px;
        height: 150px;
    }

    .profile-circle img {
        border-width: 5px;
    }

    .icon-node {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-left: -18px;
        margin-top: -18px;
    }

    .half-arc {
        width: calc(var(--radius) * 2);
        height: calc(var(--radius) * 2);
        border-width: 6px;
        clip-path: inset(0 0 0 50%);
    }

    .bg-profile-id {
        font-size: 12px;
        top: 20px;
        left: 10px;
    }

    .bg-profile-id i {
        font-size: 12px;
    }

    .bg-profile-id::after {
        width: 40px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {

    .visual-wrap {
        height: 560px;
        --radius: 140px;
    }

    .profile-circle {
        width: 200px;
        height: 200px;
    }

    .profile-circle img {
        border-width: 6px;
    }

    .icon-node {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-left: -23px;
        margin-top: -23px;
    }

    .half-arc {
        border-width: 7px;
    }

    .bg-profile-id {
        font-size: 16px;
        top: 25px;
        left: 8px;
    }

    .bg-profile-id i {
        font-size: 16px;
    }

    .bg-profile-id::after {
        width: 45px;
    }
}


/* Sidebar Icons */
a:hover {
    color: var(--white);
}

.contact-profile-img {
    width: 90px;
    height: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    padding: 3px;
}

.profile-badge-contact {
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
}

.contact-card {
    margin-top: 25px;
    border: 1px solid var(--border-gray-soft);
    border-radius: 16px;
    overflow: hidden;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-gray-soft);
    gap: 10px;
}

.contact-row .left {
    font-weight: 600;
    color: var(--primary);
    min-width: 110px;
    display: flex;
    align-items: center;
}

.contact-row .left i {
    margin-right: 8px;
}

.contact-row .right {
    flex: 1;
    text-align: center;
    color: var(--text-dark);
    font-size: 14px;
}

.close-contact-btn {
    margin-top: 20px;
    width: 100%;
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

.custom-error-popup {
    padding: 10px 5px;
    text-align: center;
}

.error-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.error-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-error-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-error-light);
}

.error-icon-wrap i {
    font-size: 24px;
    color: var(--error-red);
}

.error-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark-111827);
}

.error-message {
    margin-top: 10px;
    color: var(--text-gray-600);
    font-size: 18px;
    line-height: 1.6;
}

.error-close-btn {
    margin-top: 20px;
    width: 100%;
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.error-close-btn:hover {
    background: var(--primary-darker-2);
}

.custom-success-popup {
    padding: 10px 5px;
    text-align: center;
}

.success-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.success-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-success-light-ecfdf5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-success-light);
}

.success-icon-wrap i {
    font-size: 24px;
    color: var(--success-green-16a34a);
}

.success-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark-111827);
}

.success-message {
    margin-top: 10px;
    color: var(--text-gray-600);
    font-size: 17px;
    line-height: 1.6;
}

.swal-glass-popup {
    padding: 0 !important;
}

.swal-glass {
    position: relative;
    text-align: center;
    padding: 26px 22px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 20px var(--black-alpha-08);
    overflow: hidden;
}

.swal-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--success-green-16a34a), var(--success-color));
    -webkit-mask: linear-gradient(#000 0 0) content-box,
                  linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.swal-glass-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-success-light-ecfdf5);
    color: var(--success-green-16a34a);
    font-size: 26px;
    border: 2px solid var(--border-success-light);
    animation: pop 0.2s ease;
}

.swal-glass-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark-111827);
}

.swal-glass-message {
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--text-slate-475569);
    line-height: 1.5;
}

.swal-glass::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-success-light);
}

@keyframes pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.swal-glass-error {
    position: relative;
    text-align: center;
    padding: 26px 22px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 20px var(--black-alpha-08);
    overflow: hidden;
}

.swal-glass-error::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--error-red-dc2626), var(--error-red));
    -webkit-mask: linear-gradient(#000 0 0) content-box,
                  linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.swal-glass-error-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-error-soft);
    color: var(--error-red-dc2626);
    font-size: 26px;
    border: 2px solid var(--border-error-soft);
    animation: pop 0.2s ease;
}

.swal-glass-error-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark-111827);
}

.swal-glass-error-message {
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--text-slate-475569);
    line-height: 1.5;
}
.swal-icon-color {
    color: var(--primary);
}
#report_reason:focus {
    border-color: var(--border-gray-light-dee2e6) !important;
    box-shadow: none !important;
    outline: none !important;
}