.contact-section {
    padding: 80px 60px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* for maps */
.contact-top-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* auto sliding photos contact us page */
.contact-top-slider {
    margin-top: 180px;
    flex: 1;
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slider-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 0 0 100%;
}

/* END === auto sliding photos contact us page */

/* LEFT TEXT */
.contact-top {
    flex: 1.2;
    margin-top: 60px;
}

.contact-top h1 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-top p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* RIGHT MAP */
.contact-top-map {
    margin-top: 30px;
    flex: 1;
}

.contact-top-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Top Section */
.contact-top {
    max-width: 800px;
    margin-bottom: 80px;
}

.contact-top h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-top p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    /* margin-bottom: 30px; */
}

/* .dealer-link {
    font-size: 16px;
    text-decoration: underline;
    color: black;
} */

/* Grid Section */
.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 120px;
    align-items: flex-start;
    margin-bottom: 50px;
    margin-right: 20px;
    margin-left: 20px;
}

.branch-card {
    background: #f5f5f5;
    padding: 40px;
    transition: 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
}

/* Columns */
.contact-col h2 {
    margin-top: -0px;
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-col h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-col p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.contact-col a {
    display: inline-block;
    font-size: 16px;
    color: black;
    text-decoration: underline;
    margin-bottom: 15px;
}

.underline {
    text-decoration: underline;
}

#inquiry {
    scroll-margin-top: 120px;
}

@media (max-width: 992px) {

    .contact-section {
        padding: 0px 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 120px;
    }

    .contact-top h1 {
        font-size: 32px;
    }

    .contact-top p {
        font-size: 16px;
    }
    .branch-card {
        padding: 30px;
    }

    .contact-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 70px;
    }

    .contact-top-left h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .contact-top-left p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-top-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-top-slider {
        margin-top: -90px;
        height: 220px;
    }

    .contact-top-map {
        margin-top: -90px;
        margin-bottom: 40px;
        margin-right: 25px;
    }

    .contact-top-map iframe {
        width: 108%;
    }
}