/*=================== contact style  =================*/

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    margin-top: 40px;
}

.contact-wrapper .contact-container {
    width: auto;
    max-width: 45%;
}

.contact-wrapper .left-section .title-contact {
    color: #ABB2BF;
}

/* right section */
.contacts-right {
    flex: 1;
    min-width: 320px;
}

.contact-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.contact-card {
    background: #14151F;
    border: 1px solid rgba(199, 120, 221, 0.2);
    border-radius: 14px;
    padding: 20px;
    flex: 1;
    /* min-width: 110px; */
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.08);
    width: 75%;
}

.contact-card .icon {
    width: 44px;
    height: 44px;
    background: rgba(199, 120, 221, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C778DD;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: normal;
}

.contact-card p {
    color: #6c7180;
    font-size: 0.9rem;
}

/* let's work together box */
.work-together {
    background: #14151F;
    border: 1px solid rgba(199, 120, 221, 0.2);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.08);
}

.work-together p {
    font-size: 1.3rem;
}

.call-btn {
    border: 2px solid #C778DD;
    padding: 8px 16px;
    border-radius: 11px;
    box-shadow: 2px 2px 0 #6d1186;
    transition: 0.3s ease;
    display: inline-block;
}

.call-btn:hover {
    box-shadow: 4px 4px 0 #6d1186;
}


/*=================== all media style  =================*/

.all-media {
    width: 70%;
    margin: 0 auto;
    margin-top: 80px;
}

.all-media .title-media {
    font-size: 2rem;
}

.all-media .title-media .title-header {
    margin-bottom: 30px;
}

.all-media .title-media .title-header .highlit {
    color: #C778DD;
}

.all-media .links-media {
    font-size: 1.3rem;
}

.all-media .links-media .title-link {
    transition: all 0.4s ease;
    color: #abb2bf;
}

.all-media .links-media .title-link:hover {
    color: white;
}

/* ===================================================
   ریسپانسیو صفحه contact
   =================================================== */

@media (max-width: 1024px) {

    .skils-title,
    .contact-wrapper,
    .all-media,
    .footer-container {
        width: 90%;
    }
}

@media (max-width: 900px) {

    .contact-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .contact-wrapper .contact-container {
        width: 100%;
        max-width: 100%;
    }

    .contact-wrapper .right-section {
        text-align: left;
        align-self: center;
    }

    .contact-wrapper .right-section-fa {
        text-align: left;
        align-self: center;
    }

    .contact-wrapper .right-section .masage-box {
        display: block;
    }

    /* بخش all-media: لینک‌ها زیر هم یا دو تا دو تا */
    .all-media .links-media {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 600px) {

    .all-media .links-media {
        flex-direction: column;
        align-items: center;
    }

    .footer-container .left-section,
    .footer-container .right-section {
        width: 100%;
        font-size: 18px;
    }
}