.contact {
    padding: 6rem 4rem;
    line-height: 1.5;
}

.contact__header__img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
}

.contact__header {
    padding: 5%;
    text-align: center;
}

.contact__header h1 {
    font-size: 4rem;
    font-weight: 600;
}

.contact__header p {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact__card__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact__card {
    border: 1px solid rgba(122, 122, 122, 0.37);
    border-radius: 10px;
    background-color: #fff;
    height: 250px;
    width: 280px;
    padding: 2%;
    display: flex;
    flex-direction: column;
}

.contact__card i {
    font-size: 2rem;
    color: #000;
    margin-bottom: 30px;
    border: 1px solid rgba(122, 122, 122, 0.37);
    padding: 10px;
    width: 60px;
    border-radius: 5px;
}


.contact__card__content h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact__card__content p {
    font-size: 0.9rem;
}

.contact__card__content span {
    font-size: 1rem;
    text-decoration: underline;
    font-weight: 600;
}

.contact__map__wrapper {
    margin-top: 5%;
    text-align: center;
}

.contact__map__wrapper h1 {
    font-weight: 600;
}

.contact__map__wrapper p {
    font-size: 0.9rem;
    margin-bottom: 2%;
}

#map {
    height: 60vh;
    width: 100%;
    border-radius: 20px;
}

.contact__enquiry__form__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
    height: 600px;
}

.contact__enquiry__form__container img {
    height: 100%;
    width: 40%;
    object-fit: cover;
    border-radius: 10px;
}

.contact__enquiry__form__wrapper {
    width: 50%;
    height: 100%;
}

.contact__enquiry__form__wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
}

.contact__enquiry__form__wrapper p {
    margin-bottom: 5%;
}

.contact__enquiry__form input, .contact__enquiry__form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #e4e4e4;
    border: none;
}

.contact__enquiry__form button {
    width: 100%;
    padding: 10px;
    border: 1px solid #cacaca;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
}

.contact__enquiry__form button:hover {
    color: white;
    background-color: red;
}


@media (max-width: 720px) {
    .contact {
        padding: 4rem 2rem;
    }

    .contact__header__img {
        height: 300px;
        object-fit: cover;
    }

    .contact__header h1 {
        font-size: 2.5rem;
    }

    .contact__header p {
        font-size: 1rem;
    }

    .contact__card__wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact__card {
        width: 100%;
        height: auto;
        padding: 5%;
        align-items: center;
        text-align: center;
    }

    .contact__card i {
        font-size: 1.5rem;
        margin-bottom: 20px;
        width: 50px;
    }

    .contact__card__content h2 {
        font-size: 1rem;
    }

    .contact__card__content span,
    .contact__card__content p {
        font-size: 0.9rem;
    }

    .contact__map__wrapper p {
        font-size: 0.8rem;
    }

    #map {
        height: 50vh;
        border-radius: 10px;
    }

    .contact__enquiry__form__container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .contact__enquiry__form__container img {
        width: 100%;
        height: 300px;
    }

    .contact__enquiry__form__wrapper {
        width: 100%;
    }

    .contact__enquiry__form__wrapper h2 {
        font-size: 1.5rem;
    }

    .contact__enquiry__form__wrapper p {
        font-size: 0.9rem;
    }

    .contact__enquiry__form input, .contact__enquiry__form textarea {
        padding: 8px;
    }

    .contact__enquiry__form button {
        padding: 10px;
        font-size: 1rem;
    }
}

