@import "../component-loading/style.css";

.contact {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-template-rows: auto 1fr;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
    margin-top: -135px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;

    >iframe {
        display: block;
        width: 100%;
        height: 100%;
    }
}

.contact-info {
    background-color: var(--color-gray-7);
    padding: 56px 80px;
}

.contact-info__title {
    margin-bottom: 60px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.contact-info-item__icon {
    flex-shrink: 0;
}

.contact-info-item__text {
    color: var(--color-primary-1);
}

.contact-form {
    grid-area: 1 / 2 / 3 / -1;
    background-color: white;
    padding: 56px 80px;

}

.contact-form__title {
    margin-bottom: 60px;
}

.contact-form-wpcf7 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wpcf7-text,
.wpcf7-textarea {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: var(--color-gray-1);
    border: 1px solid var(--color-gray-3);
    padding: 10px 16px;
    margin-top: 12px;
    width: 100%;
}

.wpcf7-text {
    border-radius: 999px;
}

.wpcf7-textarea {
    border-radius: 10px;
}

.codedropz-upload-handler {
    margin-top: 12px;
    border: 1px dashed var(--color-gray-3);
    border-radius: 10px;
}

.codedropz-upload-container {
    padding: 40px;

}

.codedropz-upload-inner {
    h3,
    span,
    a {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
        letter-spacing: 0.8px;
        margin: 0;
        color: inherit;
    }
}

.wpcf7-submit {
    margin-top: 36px;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.7px;
    margin-top: 8px;
}

.wpcf7-spinner {
    display: none;
}

@media screen and (width < 1024px) {
    .contact {
        grid-template-columns: 50% 50%;
    }

    .contact-info {
        padding: 40px 24px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-item__icon {
        width: 48px;
        height: 48px;
    }

    .contact-form {
        padding: 40px 24px;
    }
}

@media screen and (width < 768px) {
    .contact {
        grid-template-columns: 100%;
        >iframe {
            aspect-ratio: 16 / 9;
        }
    }
    .contact-info__title {
        margin-bottom: 40px;
    }
    .contact-info-item {
        margin-top: 24px;
    }

    .contact-form {
        grid-area: auto;
        order: -1;
    }
    .contact-form__title {
        margin-bottom: 40px;
    }

    .wpcf7-text,
    .wpcf7-textarea {
        font-size: 14px;
        letter-spacing: 0.7px;
        line-height: 1.8;
        padding: 6px 10px;
    }

    .codedropz-upload-container {
        padding: 24px;

    }
    .codedropz-upload-inner {
        h3,
        span,
        a {
            font-size: 14px;
            letter-spacing: 0.7px;
            line-height: 1.8;
        }
    }

    .wpcf7-not-valid-tip {
        font-size: 12px;
        letter-spacing: 0.6px;
        line-height: 1.8;
        margin-top: 6px;
    }
}

@media screen and (width < 576px) {
    .contact > iframe {
        aspect-ratio: 2 / 3;
    }
}