.contact-links-section{
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    direction: rtl;

    background:
        radial-gradient(circle at top left,#2563eb 0%,transparent 35%),
        radial-gradient(circle at top right,#7c3aed 0%,transparent 35%),
        linear-gradient(135deg,#0f172a,#111827,#1e293b);
}

/* Keep FA6 icons from being overridden by the theme's FA4 / global i rules */
.contact-links-section .fas,
.contact-links-section .far{
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
    line-height: 1;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    background: none !important;
    -webkit-font-smoothing: antialiased;
}

.contact-links-section .fab{
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    background: none !important;
    -webkit-font-smoothing: antialiased;
}

.contact-links-wrap{
    max-width: 720px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.profile-card{
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 32px;

    padding: 40px 30px;

    text-align: center;

    color: #fff;

    margin-bottom: 30px;

    box-shadow: 0 25px 80px rgba(0,0,0,.25);
}

.profile-image{
    margin-bottom: 20px;
}

.profile-image img{
    width: 140px;
    height: 140px;

    object-fit: contain;

    border-radius: 50%;

    background: #fff;

    padding: 12px;

    border: 5px solid rgba(255,255,255,.15);

    box-shadow: 0 15px 50px rgba(0,0,0,.3);
}

.verified-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(255,255,255,.1);

    padding: 8px 18px;

    border-radius: 50px;

    margin-bottom: 18px;

    font-size: 13px;
}

.profile-card h1{
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-card p{
    color: #cbd5e1;
    margin-bottom: 25px;
}

.stats{
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stats strong{
    display: block;
    font-size: 24px;
    color: #fff;
}

.stats span{
    font-size: 13px;
    color: #cbd5e1;
}

.featured-link{
    margin-bottom: 25px;
}

.featured-link a{
    width: 100%;
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-decoration: none;

    color: #fff;

    border-radius: 24px;

    background: linear-gradient(135deg,#2563eb,#3b82f6);

    font-weight: 700;

    font-size: 18px;

    box-shadow: 0 15px 40px rgba(37,99,235,.35);

    transition: .3s;
}

.featured-link a:hover{
    transform: translateY(-4px);
    color: #fff;
}

.links-section-title{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
}

.links{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.link-card{
    width: 100%;
    background: #fff;

    border-radius: 24px;

    padding: 18px 22px;

    text-decoration: none;

    color: #111827;

    display: flex;
    align-items: center;
    gap: 16px;

    transition: .3s;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.link-card:hover{
    transform: translateY(-4px);

    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    color: #111827;
    text-decoration: none;
}

.link-card-full{
    min-height: 72px;
}

.link-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    max-width: 60px;
    flex: 0 0 60px;

    border-radius: 18px;

    background: #f1f5f9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    margin: 0;
}

.link-icon i{
    flex-shrink: 0;
}

.link-whatsapp{ background: #dcfce7; color: #16a34a; }
.link-telegram{ background: #e0f2fe; color: #0284c7; }
.link-facebook{ background: #dbeafe; color: #2563eb; }
.link-instagram{ background: #fce7f3; color: #db2777; }
.link-linkedin{ background: #e0f2fe; color: #0a66c2; }
.link-tiktok{ background: #f1f5f9; color: #111827; }

.link-content{
    flex: 1;
}

.link-content h4{
    margin: 0;
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
}

.link-content span{
    color: #64748b;
    font-size: 13px;
}

.link-arrow{
    color: #94a3b8;
    font-size: 18px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials{
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-top: 35px;
}

.socials a{
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #fff;

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(10px);

    transition: .3s;
}

.socials a:hover{
    transform: translateY(-4px);
    background: rgba(255,255,255,.18);
}

@media(max-width:768px){

    .contact-links-section{
        padding: 50px 15px;
    }

    .profile-card{
        padding: 30px 20px;
    }

    .profile-image img{
        width: 110px;
        height: 110px;
    }

    .stats{
        gap: 20px;
    }

    .stats strong{
        font-size: 20px;
    }

    .link-card{
        padding: 15px;
    }

    .link-icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
        max-width: 50px;
        flex: 0 0 50px;
        font-size: 20px;
    }

    .featured-link a{
        font-size: 15px;
        padding: 18px;
    }
}
