.home-contact {
    position: relative;
    background: linear-gradient(0deg, rgba(11, 58, 115, 0.88), rgba(11, 58, 115, 0.88)), linear-gradient(135deg, var(--home-blue), var(--home-blue-dark));
    color: #fff;
    padding: 7rem 0;
}

.home-contact__wrap {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 9rem;
    align-items: start;
}

.home-contact__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.home-contact__desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.home-contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.home-contact__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-contact__list li strong {
    color: #fff;
    font-weight: 700;
}

.home-contact__list svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.home-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.home-contact__field {
    display: block;
    margin-bottom: 2.25rem;
}

.home-contact__field input,
.home-contact__field select,
.home-contact__field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    padding: 1rem;
    font-size: 1rem;
    color: #fff;
}

.home-contact__field input::placeholder,
.home-contact__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.home-contact__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    background-size: 0.625rem auto;
    padding-right: 1.5rem;
}

.home-contact__field select option {
    color: var(--home-text);
}

.home-contact__field textarea {
    resize: vertical;
    min-height: 3rem;
}

.home-contact__submit {
    align-self: flex-start;
}
.home-contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}
.home-contact__info {
    /* width cố định chỉ nên là giới hạn tối đa, không thì tràn ngang khi màn hình hẹp hơn 609px */
    width: 100%;
    max-width: 38.05556rem;
}

@media (max-width: 1024px) {
    .home-contact__wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-contact__info {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .home-contact {
        padding: 3.5rem 0;
    }

    .home-contact__row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .home-contact__title {
        font-size: 1.5rem;
    }

    .home-contact__form {
        gap: 1.25rem;
    }
}
