@charset "utf-8";

/* Contact Us page — page-14 */

.contact-page main {
    background: #fff
}

.contact-hero {
    position: relative;
    background: #eee;
    overflow: hidden
}

.contact-hero__media {
    aspect-ratio: 1920 / 650;
    max-height: 650px
}

.contact-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.contact-crumb {
    padding: 14px 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    background: #fff;
    border-bottom: 1px solid #eee
}

.contact-crumb a {
    color: var(--text-muted)
}

.contact-crumb a:hover {
    color: var(--color)
}

.contact-panel {
    padding: 48px 20px 56px
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
    gap: 48px 56px;
    align-items: start
}

.contact-info__title {
    margin: 0 0 32px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.2
}

.contact-info__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.contact-info__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 28px
}

.contact-info__item:last-child {
    margin-bottom: 0
}

.contact-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color);
    background: rgba(var(--color-rgb), .08);
    border-radius: 50%
}

.contact-info__label {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: var(--fontbold6);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.contact-info__value {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--fontcolor);
    word-break: break-word
}

.contact-info__value a {
    color: inherit;
    transition: color .2s linear
}

.contact-info__value a:hover {
    color: var(--color)
}

.contact-form-wrap {
    padding: 32px 28px 36px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px
}

.contact-form__title {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor)
}

.contact-form__lead {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted)
}

.contact-form__field {
    margin-bottom: 18px
}

.contact-form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: var(--fontbold5);
    color: var(--fontcolor)
}

.contact-form__req {
    color: #e11d48
}

.contact-form__input,
.contact-form__textarea {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--fontcolor);
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: border-color .2s linear
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--color);
    outline: none
}

.contact-form__textarea {
    min-height: 140px;
    resize: vertical
}

.contact-form__submit {
    display: inline-block;
    min-width: 160px;
    margin-top: 6px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: var(--fontbold6);
    color: #fff;
    background: #10B981;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s linear
}

.contact-form__submit:hover {
    background: #059669
}

.contact-map {
    padding: 0 20px 56px;
    background: #fff
}

.contact-map__inner {
    max-width: 1600px;
    margin: 0 auto
}

.contact-map__frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #e5e7eb
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    height: 450px;
    border: none
}

.contact-map__hint {
    position: absolute;
    left: 16px;
    bottom: 16px;
    margin: 0;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, .92);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    pointer-events: none
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .contact-panel {
        padding: 32px 20px 40px
    }

    .contact-form-wrap {
        padding: 24px 18px 28px
    }

    .contact-map {
        padding-bottom: 40px
    }

    .contact-map iframe {
        height: 320px;
        min-height: 280px
    }
}
