/* Contact Page */
.contact-page {
    background: #f3f3f3;
    overflow-x: hidden;
}

.contact-page .contact-hero-simple {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.contact-page .contact-hero-content h1 {
    margin: 0;
    font-family: var(--vmt-font-heading);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.contact-breadcrumb {
    background: #0f8a93;
    padding: 10px 0;
    border-top: 1px solid #0c747b;
    border-bottom: 1px solid #0c747b;
}

.contact-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}

.contact-breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-breadcrumb .breadcrumb a {
    color: #ffffff;
    font-weight: 700;
}

.contact-content-wrap {
    background: #f3f3f3;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.contact-info h2 {
    margin: 0 0 22px;
    font-family: var(--vmt-font-heading);
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0f8a93;
    text-transform: uppercase;
}

.info-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 12px;
    margin-bottom: 16px;
}

.info-item-separate {
    margin-top: 8px;
}

.info-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f8a93;
    color: #fff;
    border: 1px solid rgba(15, 138, 147, 0.2);
    flex-shrink: 0;
    margin-top: 1px;
}

.info-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.info-content h3 {
    margin: 0 0 4px;
    font-family: var(--vmt-font-heading);
    font-size: 19px;
    line-height: 1.28;
    font-weight: 700;
    color: #0f8a93;
}

.info-content p {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    color: #3d3d3d;
    max-width: 100%;
    text-align: left;
    text-wrap: pretty;
}

.info-content a {
    color: inherit;
}

.contact-form-wrapper {
    background: #037c84;
    border-radius: 10px;
    padding: 30px 28px 26px;
}

.contact-form-wrapper h3 {
    margin: 0 0 16px;
    font-family: var(--vmt-font-heading);
    font-size: 33px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.vmt-contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 0;
    border-radius: 5px;
    font-size: 15px;
    color: #2a2a2a;
}

textarea.form-control {
    height: 120px;
    padding: 12px 14px;
    resize: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 16px;
    color: #d7efef;
    font-size: 14px;
    line-height: 1.35;
}

.form-check input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
}

.btn-submit {
    min-width: 132px;
    height: 38px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    background: #d9172a;
    color: #fff;
    font-family: var(--vmt-font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    align-self: flex-end;
}

.contact-map-section {
    width: 100%;
    background: #f3f3f3;
}

.contact-map-shell {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(3, 65, 70, 0.12);
}

.contact-map-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 12px 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-map-title {
    margin: 0;
    padding: 10px 14px;
    background: linear-gradient(90deg, #08727f 0%, #0a8c96 48%, #18b8c5 100%);
    color: #fff;
    font-family: var(--vmt-font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.contact-map-shell {
    width: 100%;
}

.contact-map-shell iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

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

    .contact-info h2 {
        font-size: 32px;
    }

    .info-content h3 {
        font-size: 18px;
    }

    .info-content p {
        font-size: 16px;
    }

    .contact-form-wrapper h3 {
        white-space: normal;
        font-size: 34px;
    }
    .contact-map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-breadcrumb .container {
        padding: 0 18px;
    }

    .contact-page .contact-hero-simple {
        min-height: 220px;
    }

    .contact-page .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-container {
        padding: 28px 18px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .info-content h3 {
        font-size: 17px;
    }

    .info-content p {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .contact-form-wrapper h3 {
        font-size: 22px;
        line-height: 1.06;
    }

    .btn-submit {
        width: 100%;
        font-size: 20px;
        align-self: stretch;
    }

}
