html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: #fff;
    color: #666a6e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
}

.page-frame {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

.site-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 74px 32px 28px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
}

.brand-mark img {
    width: clamp(190px, 22vw, 275px);
    height: auto;
    display: block;
}

.language-switcher {
    position: absolute;
    top: 22px;
    right: clamp(18px, 6vw, 92px);
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.language-link {
    display: inline-flex;
    min-width: 58px;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #d8dee2;
    background: #fff;
    color: #667076;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0;
    transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.language-link:hover,
.language-link.active {
    border-color: #1f7a4b;
    color: #1f7a4b;
    box-shadow: 0 8px 20px rgba(31, 122, 75, .1);
}

.flag {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 14px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}

.flag-tr {
    background: #e30a17;
}

.flag-tr::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: -3px 0 0 1px #fff;
}

.flag-tr::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
}

.flag-en {
    background:
        linear-gradient(90deg, transparent 0 42%, #fff 42% 58%, transparent 58%),
        linear-gradient(0deg, transparent 0 36%, #fff 36% 64%, transparent 64%),
        linear-gradient(90deg, transparent 0 45%, #c8102e 45% 55%, transparent 55%),
        linear-gradient(0deg, transparent 0 42%, #c8102e 42% 58%, transparent 58%),
        #012169;
}

.hero {
    position: relative;
    width: min(calc(100% - 128px), 1288px);
    aspect-ratio: 1920 / 770;
    margin: 0 auto;
    overflow: hidden;
    background: #d8dee2;
    cursor: default;
    pointer-events: none;
}

.hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.hero-label {
    position: absolute;
    left: 50%;
    top: 55%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    min-width: min(340px, calc(100% - 32px));
    max-width: calc(100% - 32px);
    padding: 14px 28px;
    background: rgba(255, 255, 255, .96);
    color: #666;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
    cursor: pointer;
    pointer-events: auto;
    transition: color .2s ease, box-shadow .2s ease;
}

.hero-label:hover,
.hero-label:focus-visible {
    color: #1f7a4b;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.hero-label:focus-visible {
    outline: 3px solid #1f7a4b;
    outline-offset: 4px;
}

.content-section {
    width: min(calc(100% - 48px), 1080px);
    margin: 0 auto;
    text-align: center;
}

.about-section {
    padding: 96px 0 128px;
}

.contact-section {
    padding: 0 0 74px;
}

.section-title {
    margin: 0;
    color: #646464;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.section-divider {
    width: min(430px, 72vw);
    height: 1px;
    margin: 14px auto 42px;
    background: #cfd3d6;
}

.about-section p,
.contact-intro {
    max-width: 1180px;
    margin: 0 auto;
    color: #666a6e;
    font-size: 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 482px) minmax(300px, 482px);
    gap: clamp(26px, 5vw, 58px);
    align-items: start;
    justify-content: center;
    margin: 42px auto 0;
}

.contact-form {
    width: 100%;
    margin: 0;
}

.form-field {
    margin-bottom: 18px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 1px solid #cfd6dc;
    border-radius: 0;
    background: #fff;
    color: #4f555a;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input {
    height: 49px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 136px;
    resize: vertical;
    padding: 14px 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1f7a4b;
    box-shadow: 0 0 0 3px rgba(31, 122, 75, .13);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
    opacity: 1;
}

.field-validation,
.field-validation-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.35;
}

.form-alert {
    width: min(100%, 482px);
    margin: 22px auto 0;
    padding: 12px 14px;
    border: 1px solid;
    text-align: left;
    font-size: 14px;
}

.form-alert:empty {
    display: none;
}

.form-alert.success {
    border-color: #b9ddca;
    background: #f0faf4;
    color: #17663d;
}

.form-alert.error,
.validation-summary-errors {
    border-color: #f3b3ad;
    background: #fff5f4;
    color: #b42318;
}

.send-button {
    display: inline-flex;
    min-width: 124px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin: 12px auto 0;
    border: 0;
    background: transparent;
    color: #b1b1b1;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color .2s ease;
}

.send-button:hover,
.send-button:focus-visible {
    color: #1f7a4b;
}

.map-panel {
    width: 100%;
    text-align: left;
}

.map-panel iframe {
    display: block;
    width: 100%;
    height: 338px;
    border: 1px solid #cfd6dc;
    background: #edf1f2;
}

.map-link {
    display: inline-flex;
    margin-top: 12px;
    color: #667076;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
}

.map-link:hover,
.map-link:focus-visible {
    color: #1f7a4b;
}

.contact-details {
    display: grid;
    gap: 2px;
    margin: 24px auto 0;
    color: #62666a;
    font-size: 17px;
    font-style: normal;
    line-height: 1.5;
}

.contact-details strong {
    font-weight: 700;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 900px) {
    .site-header {
        padding-top: 76px;
    }

    .hero {
        width: calc(100% - 40px);
        aspect-ratio: 16 / 8;
    }

    .about-section {
        padding: 68px 0 92px;
    }

    .section-title {
        font-size: 21px;
    }

    .about-section p,
    .contact-intro {
        font-size: 16px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 560px);
    }
}

@media (max-width: 560px) {
    body {
        background: #fff;
    }

    .page-frame {
        border-radius: 0;
    }

    .site-header {
        padding: 64px 18px 24px;
    }

    .language-switcher {
        top: 16px;
        right: 16px;
    }

    .language-link {
        min-width: 50px;
        height: 32px;
    }

    .brand-mark img {
        width: min(218px, 72vw);
    }

    .hero {
        width: calc(100% - 24px);
        aspect-ratio: 4 / 3;
    }

    .hero-label {
        top: 58%;
        padding: 12px 18px;
        font-size: 14px;
    }

    .content-section {
        width: calc(100% - 32px);
    }

    .about-section {
        padding: 52px 0 72px;
    }

    .contact-section {
        padding-bottom: 48px;
    }

    .section-divider {
        margin-bottom: 30px;
    }

    .contact-form {
        margin-top: 0;
    }

    .contact-layout {
        margin-top: 30px;
        gap: 28px;
    }

    .map-panel iframe {
        height: 280px;
    }

    .contact-details {
        font-size: 15px;
    }
}
