/* ==========================================================
CONTACT PAGE
========================================================== */

.contact-page {
    overflow: hidden;
}

/* ==========================================================
COMMON
========================================================== */

.container {
    width: min(1200px, 92%);
    margin: auto;
}

section {
    padding: 90px 0;
}

h1,
h2,
h3,
h4 {
    color: #12266B;
    line-height: 1.2;
    margin: 0;
}

p {
    line-height: 1.8;
    color: #555;
}

/* ==========================================================
HERO
========================================================== */

.contact-hero {

    background: #f8f7f4;
    background-image: url('../images/hero-cover.png');
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 120px 0;

}

.contact-hero .container {
    display: flex;
    align-items: start;
    background: #fff;
    padding: 64px;
    border-left: 4px solid #12266B;
    max-width: 698px;
    margin: 64px;

}

.contact-subtitle {

    display: inline-block;
    color: #b18e49;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;

}

.contact-hero h1 {

    font-size: 48px;
    font-family: "Newsreader", serif;
    max-width: 900px;
    /* margin:auto; */
    text-align: left;
}

.contact-hero p {

    max-width: 700px;
    margin-block: 30px;
    /* margin:30px auto 0; */
    font-size: 18px;
    text-align: left;

}

/* ==========================================================
CONTACT
========================================================== */

.contact-grid {

    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;

}

.contact-left h2,
.contact-right h2 {

    font-size: 40px;
    margin-bottom: 35px;

}

.contact-card {

    background: #f9f7f2;
    padding: 40px;
    border-radius: 12px;

}

.contact-item {

    margin-bottom: 35px;

}

.contact-item:last-child {

    margin-bottom: 0;

}

.contact-item h4 {

    font-size: 20px;
    margin-bottom: 10px;

}

.contact-item a {

    color: #12266B;
    font-weight: 700;
    text-decoration: none;

}

.contact-item a:hover {

    color: #b18e49;

}

.testimonial-box {

    margin-top: 40px;
    background: #12266B;
    color: #fff;
    padding: 40px;
    border-radius: 12px;

}

.testimonial-box blockquote {

    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: #fff;

}

.testimonial-box strong {

    display: block;
    margin-top: 20px;
    color: #fff;

}

/* ==========================================================
FORM
========================================================== */

.contact-right {

    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.contact-right p {

    margin: 20px 0 35px;

}

.contact-right .gform_wrapper {

    margin: 0;

}

.contact-right input,

.contact-right textarea,

.contact-right select {

    width: 100% !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 16px !important;

}

.contact-right textarea {

    min-height: 180px !important;

}

.contact-right .gform_button {

    width: 100%;
    background: #12266B !important;
    color: #fff !important;
    border: none !important;
    padding: 18px !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-size: 18px !important;
    transition: .3s;

}

.contact-right .gform_button:hover {

    background: #b18e49 !important;

}

/* ==========================================================
MAPS
========================================================== */

.showroom-maps {

    background: #fafafa;

}

.maps-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

}

.map-item {

    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

}

.map-item h3 {

    padding: 25px;

}

.map-item iframe {

    display: block;

}

.map-item p {

    padding: 25px 25px 10px;

}

.map-item a {

    display: inline-block;
    padding: 0 25px 25px;
    color: #12266B;
    text-decoration: none;
    font-weight: 700;

}

/* ==========================================================
RESPONSIVE
========================================================== */

@media(max-width:1024px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .maps-grid {

        grid-template-columns: 1fr;

    }

    .contact-right {

        padding: 35px;

    }

}

@media(max-width:768px) {

    section {

        padding: 70px 0;

    }

    .contact-hero {

        padding: 80px 0;

    }

    .contact-hero h1 {

        font-size: 42px;

    }

    .contact-left h2,
    .contact-right h2 {

        font-size: 32px;

    }

    .contact-card {

        padding: 25px;

    }

    .contact-right {

        padding: 25px;

    }

}

@media(max-width:480px) {

    .contact-hero h1 {

        font-size: 34px;

    }

    .contact-hero p {

        font-size: 16px;

    }

    .contact-item h4 {

        font-size: 18px;

    }

    .testimonial-box {

        padding: 25px;

    }

    .testimonial-box blockquote {

        font-size: 18px;

    }

}