/*=============== CONTACT HERO ===============*/
.contact__hero {
    position: relative;
    padding-block: 21.5rem 161.5px;
    background: radial-gradient(119.15% 192.88% at 98.4% 2.36%,
            rgba(226, 191, 80, 0.64) 0%,
            rgba(255, 230, 167, 0.05) 50%,
            rgba(227, 227, 227, 0.2) 100%);

    .contact__hero__container {
        .contact__hero__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            z-index: 5;

            h1 {
                font-size: 40px;
                font-weight: var(--font-medium);
                color: var(--yellow);
            }

            p {
                font-size: 1rem;
                font-weight: var(--font-regular);
                color: #414944;
            }
        }
    }

    &::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: -25%;
        width: 711px;
        height: 711px;
        z-index: 0;
        background-image: url(../image/bg5.webp);
        background-position: center;
    }

    &::before {
        content: "";
        position: absolute;
        top: -45%;
        right: -20%;
        width: 711px;
        height: 711px;
        z-index: 0;
        background-image: url(../image/bg5.webp);
        background-position: center;
    }

}


/*=============== CONTACT SOCIAL ===============*/
.contact__social {
    padding-block: 11.75rem;

    .contact__social__container {
        display: flex;
        justify-content: center;
        align-items: center;

        .contact__social__content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 92px;
            max-width: 946px;
            width: 100%;

            .gruop__links {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 40px;
                width: 100%;

                .item {
                    padding-block: 24px 31px;
                    padding-inline: 1rem;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    max-width: 445px;
                    width: 100%;
                    background: #FFFFFF;
                    box-shadow: 0px 25px 50px -12px #191C1D0D;
                    border-radius: 14px;

                    .icon {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 56px;
                        height: 56px;
                        color: white;
                        border-radius: 50%;
                        font-size: 30px;
                        margin-bottom: 16px;
                    }

                    span {
                        font-size: 20px;
                        font-weight: var(--font-semi-bold);
                    }

                    p {
                        font-size: 14px;
                        font-weight: var(--font-regular);
                        color: #666666;
                    }

                    a {
                        max-width: 203px;
                        width: 100%;
                        height: 36px;
                        border-radius: 999px;
                        margin-top: 12px;
                        color: white;
                        font-size: 14px;
                        font-weight: var(--font-regular);
                    }

                    &:nth-child(1) {
                        .icon {
                            background-color: var(--green);
                        }

                        span {
                            color: var(--green);
                        }

                        a {
                            background-color: var(--green);
                            box-shadow:
                                0px 4px 6px -4px #24533F33,
                                0px 10px 15px -3px #24533F33;
                        }
                    }

                    &:nth-child(2) {
                        .icon {
                            background-color: var(--yellow);
                        }

                        span {
                            color: var(--yellow);
                        }

                        a {
                            background-color: var(--yellow);
                            box-shadow: 0px 4px 6px -4px #D4AF374D,
                                0px 10px 15px -3px #D4AF374D;
                        }
                    }
                }
            }

            .group__social {
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                box-shadow: 0px 25px 50px -12px #191C1D0D;
                background-color: white;
                border-radius: 14px;
                padding: 32px;
                width: 100%;
                gap: 32px;

                h3 {
                    font-size: 24px;
                    font-weight: var(--font-semi-bold);
                    color: var(--dark);
                }

                .socials {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;

                    .item {
                        padding-block: 24px;
                        padding-inline: 33.5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        max-width: 199px;
                        width: 100%;
                        gap: 6px;
                        background: var(--background);
                        border-radius: 12px;

                        .icon {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            font-size: 25px;
                        }

                        span {
                            font-size: 12px;
                            font-weight: var(--font-semi-bold);
                            color: var(--dark);
                        }

                        a {
                            max-width: 100%;
                            width: 100%;
                            height: 32px;
                            border-radius: 999px;
                            color: #666666;
                            background-color: #ACB3B733;
                            font-size: 12px;
                            font-weight: var(--font-bold);
                            margin-top: 9px;
                        }

                        &:nth-child(1) {
                            .icon {
                                color: #1877F2;
                            }
                        }

                        &:nth-child(2) {
                            .icon {
                                width: 32px;
                                height: 32px;
                                border-radius: 5px;
                                background: radial-gradient(160.06% 65.62% at 28.12% 84.37%, #E57714 0%, #CD225C 35.67%, #AE3FED 100%);
                                color: white;
                            }
                        }

                        &:nth-child(3) {
                            .icon {
                                color: #FF0000;
                            }
                        }

                        &:nth-child(4) {
                            .icon {
                                text-shadow:
                                    -1px -1px 0 #00F2EA,
                                    1px 1px 0 #FF004F;
                                color: #000000;
                            }
                        }
                    }
                }
            }

            .form {
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                box-shadow: 0px 25px 50px -12px #191C1D0D;
                background-color: #FFFFFF01;
                border-radius: 24px;
                padding-block: 24px;
                padding-inline: 32px;
                width: 100%;
                gap: 34px;
                border: 1px solid #C1C8C226;

                h3 {
                    font-size: 22px;
                    font-weight: 800;
                    color: var(--dark);
                }

                form {
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    flex-direction: column;
                    gap: 18px;
                    width: 100%;

                    .group__form {
                        display: flex;
                        justify-content: start;
                        align-items: start;
                        flex-direction: column;
                        gap: 8px;
                        width: 100%;

                        label {
                            font-size: 12px;
                            font-weight: var(--font-medium);
                            color: var(--dark);
                            text-transform: uppercase;
                        }

                        .input {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            background-color: #6666660F;
                            padding: 17px 16px;
                            border-radius: 8px;
                            gap: 16px;
                            width: 100%;

                            i {
                                font-size: 16px;
                                color: #666666;
                            }

                            input {
                                background-color: transparent;
                                width: 100%;
                                height: 100%;
                                color: #666666;
                                font-size: 12px;
                                font-weight: var(--font-regular);
                            }

                        }

                        textarea {
                            width: 100%;
                            background-color: #6666660F;
                            padding: 17px 16px;
                            border-radius: 8px;
                            gap: 16px;
                            border: none;
                            outline: none;
                            resize: none;
                            height: 138px;
                        }

                    }

                    button {
                        width: 100%;
                        height: 48px;
                        border-radius: 8px;
                        background-color: var(--yellow);
                        color: white;
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        cursor: pointer;
                    }
                }
            }
        }
    }
}



/*=============== RESPONSIVE ===============*/
@media (max-width: 991px) {

    /*=============== CONTACT HERO ===============*/
    .contact__hero {
        padding-block: 18rem 106px;
    }


    /*=============== CONTACT SOCIAL ===============*/
    .contact__social {
        padding-block: 58px 11rem;

        .contact__social__container {

            .contact__social__content {
                gap: 45px;


                .group__social {

                    .socials {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 16px;

                        .item {
                            max-width: 100%;

                            a {
                                width: 136px;
                            }
                        }
                    }
                }

                .form {
                    margin-top: 47px;
                }
            }
        }
    }
}

@media (max-width: 768px) {

    /*=============== CONTACT HERO ===============*/
    .contact__hero {

        .contact__hero__container {
            .contact__hero__content {

                h1 {
                    font-size: 36px;
                }

                p {
                    font-size: 14px;
                }
            }
        }

    }


    /*=============== CONTACT SOCIAL ===============*/
    .contact__social {
        padding-block: 58px 89px;

        .contact__social__container {

            .contact__social__content {


                .group__social {

                    .socials {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 16px;

                        .item {
                            max-width: 100%;

                            a {
                                width: 136px;
                            }
                        }
                    }
                }

                .form {
                    margin-top: 47px;
                }
            }
        }
    }
}

@media (max-width: 576px) {

    /*=============== CONTACT HERO ===============*/
    .contact__hero {
        padding-block: 12.25rem 64px;

        .contact__hero__container {
            .contact__hero__content {

                h1 {
                    font-size: 26px;
                    text-shadow: 0px 2px 0px #EAC54E70;
                }

                p {
                    font-size: 13px;
                    width: 80%;
                }
            }
        }

    }


    /*=============== CONTACT SOCIAL ===============*/
    .contact__social {
        padding-block: 58px 119px;

        .contact__social__container {

            .contact__social__content {

                .gruop__links {
                    flex-direction: column;

                }

                .group__social {

                    .socials {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 16px;

                        .item {
                            max-width: 123.5px;

                            a {
                                width: 88px;
                                height: 28px;
                            }
                        }
                    }
                }

                .form {
                    margin-top: 47px;
                }
            }
        }
    }
}