.contact-page .contact-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.contact-page .contact-hero-bg,
.contact-page .contact-hero-overlay {
    position: absolute;
    inset: 0;
}

.contact-page .contact-hero-bg {
    background:
        url("img/hero-bg-page.jpg")
        center / cover
        no-repeat;
    transform: scale(1.02);
}

.contact-page .contact-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 31, 43, .96) 0%,
            rgba(10, 60, 79, .84) 50%,
            rgba(9, 45, 59, .42) 100%
        );
}

.contact-page .contact-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 105px;
    padding-bottom: 105px;
}

.contact-page .contact-hero-content > * {
    max-width: 820px;
}

.contact-page .contact-hero h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.contact-page .contact-hero-content > p {
    max-width: 690px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.75;
}

.contact-page .contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: none;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.contact-page .contact-breadcrumb,
.contact-page .contact-breadcrumb a,
.contact-page .contact-breadcrumb > span {
    color: rgba(
        255,
        255,
        255,
        0.82
    );
}

.contact-page .contact-breadcrumb a {
    transition: opacity 0.2s ease;
}

.contact-page .contact-breadcrumb a:hover {
    color: rgba(
        255,
        255,
        255,
        0.82
    );

    opacity: 0.72;
}

.contact-page .contact-main-section {
    padding-top: 90px;
}

.contact-page .contact-main-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 65px;
    align-items: start;
}

.contact-page .contact-information {
    position: sticky;
    top: 115px;
}

.contact-page .contact-intro {
    color: var(--muted);
}

.contact-page .contact-detail-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.contact-page .contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    transition:
        transform .25s,
        border-color .25s,
        box-shadow .25s;
}

.contact-page a.contact-detail-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(15, 61, 79, .1);
}

.contact-page .contact-detail-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
}

.contact-page .contact-detail-content {
    min-width: 0;
}

.contact-page .contact-detail-content small,
.contact-page .contact-detail-content strong,
.contact-page .contact-detail-content > span {
    display: block;
}

.contact-page .contact-detail-content small {
    margin-bottom: 3px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-page .contact-detail-content strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 14px;
}

.contact-page .contact-detail-content > span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.contact-page .contact-response-note {
    margin-top: 22px;
    padding: 22px;
    border-radius: 0 14px 14px 0;
    background: var(--primary-soft);
}

.contact-page .contact-response-note strong {
    color: var(--primary);
}

.contact-page .contact-response-note p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-page .contact-form-wrapper {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-alt);
    box-shadow: var(--shadow);
}

.contact-page .contact-form-heading h2 {
    font-size: clamp(32px, 3.4vw, 46px);
}

.contact-page .contact-form-heading p {
    color: var(--muted);
}

.contact-page .contact-alert {
    margin: 25px 0;
    padding: 15px 17px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 600;
}

.contact-page .contact-alert.success {
    border: 1px solid #bce3ca;
    background: #edf9f1;
    color: #27613a;
}

.contact-page .contact-alert.error {
    border: 1px solid #edc5c5;
    background: #fff1f1;
    color: #8b3030;
}

.contact-page .contact-form {
    margin-top: 30px;
}

.contact-page .contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-page .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-page .contact-form-grid label {
    display: grid;
    gap: 7px;
}

.contact-page .contact-form-grid label > span {
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.contact-page .contact-full-field {
    grid-column: 1 / -1;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
    border: 1px solid var(--line);
    background: #fff;
}

.contact-page .contact-form textarea {
    min-height: 155px;
}

.contact-page .contact-form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 23px;
}

.contact-page .contact-form-bottom p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.contact-page .contact-map-section {
    padding: 100px 0;
    background: var(--surface-alt);
}

.contact-page .contact-map-section .row-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.contact-page .contact-map-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 22px;
    background: #dceaf0;
    box-shadow: var(--shadow);
}

.contact-page .contact-map-wrapper iframe {
    display: block;
    min-height: 480px;
}

.contact-page .contact-map-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: min(330px, calc(100% - 60px));
    padding: 27px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 45px rgba(6, 41, 55, .2);
    backdrop-filter: blur(10px);
}

.contact-page .contact-map-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
}

.contact-page .contact-map-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 13px;
}

.contact-page .contact-faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.contact-page .contact-faq-heading {
    position: sticky;
    top: 125px;
}

.contact-page .contact-faq-heading p {
    margin-bottom: 30px;
    color: var(--muted);
}

.contact-page .contact-faq-list {
    display: grid;
    gap: 14px;
}

.contact-page .contact-faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    transition:
        border-color .25s,
        box-shadow .25s;
}

.contact-page .contact-faq-item.open {
    border-color: rgba(21, 85, 112, .28);
    box-shadow: 0 14px 35px rgba(15, 61, 79, .09);
}

.contact-page .contact-faq-question {
    width: 100%;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-weight: 800;
    cursor: pointer;
}

.contact-page .contact-faq-symbol {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
    transition: transform .25s;
}

.contact-page .contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.contact-page .contact-faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 14px;
}

.contact-page .contact-faq-item.open .contact-faq-answer {
    max-height: 280px;
}

.contact-page .contact-faq-item.open .contact-faq-symbol {
    transform: rotate(45deg);
}

.contact-page .contact-bottom-cta {
    padding: 90px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(39, 185, 239, .24),
            transparent 30%
        ),
        var(--primary);
}

.contact-page .contact-bottom-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: center;
}

.contact-page .contact-bottom-inner p {
    max-width: 700px;
    color: rgba(255, 255, 255, .75);
}

.contact-page .contact-bottom-actions {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    flex-wrap: wrap;
}

@media (max-width: 1020px) {
    .contact-page .contact-main-grid,
    .contact-page .contact-faq-layout,
    .contact-page .contact-bottom-inner {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-information,
    .contact-page .contact-faq-heading {
        position: static;
    }

    .contact-page .contact-information {
        max-width: 760px;
    }

    .contact-page .contact-bottom-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .contact-page .contact-hero {
        min-height: 480px;
    }

    .contact-page .contact-hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .contact-page .contact-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .contact-page .contact-hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-page .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-page .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-full-field {
        grid-column: auto;
    }

    .contact-page .contact-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-page .contact-form-bottom .btn {
        width: 100%;
    }

    .contact-page .contact-map-section {
        padding: 75px 0;
    }

    .contact-page .contact-map-wrapper {
        overflow: visible;
        min-height: auto;
        background: transparent;
        box-shadow: none;
    }

    .contact-page .contact-map-wrapper iframe {
        min-height: 380px;
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .contact-page .contact-map-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
        border: 1px solid var(--line);
        box-shadow: none;
    }

    .contact-page .contact-bottom-cta {
        padding: 75px 0;
    }

    .contact-page .contact-bottom-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.contact-page .contact-readonly-field {
    cursor: not-allowed;
    background: rgba(21, 85, 112, 0.06);
    color: rgba(21, 85, 112, 0.78);
}

.contact-page .contact-form label small {
    display: block;
    margin-top: 7px;
    color: rgba(21, 85, 112, 0.58);
    font-size: 11px;
    line-height: 1.5;
}

.contact-page .contact-login-required {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 34px;
    border: 1px solid rgba(21, 85, 112, 0.15);
    border-radius: 18px;
    background: rgba(21, 85, 112, 0.04);
}

.contact-page .contact-login-required-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 16px;
    background: #155570;
    color: #ffffff;
}

.contact-page .contact-login-required-icon svg {
    width: 28px;
    height: 28px;
}

.contact-page .contact-login-required h3 {
    margin: 0 0 10px;
    color: #155570;
    font-size: 25px;
}

.contact-page .contact-login-required p {
    max-width: 520px;
    margin: 0 0 22px;
    color: rgba(21, 85, 112, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.contact-page .contact-alert {
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.contact-page .contact-alert.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.contact-page .contact-form-grid > label {
    min-width: 0;
    align-content: start;
}

.contact-page .contact-form input,
.contact-page .contact-form select {
    width: 100%;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    box-sizing: border-box;
}

.contact-page .contact-service-field {
    position: relative;
    min-width: 0;
    overflow: visible;
    align-self: start;
}

.contact-page .contact-service-field select {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 42px;
}

.contact-page .contact-form-grid {
    min-width: 0;
}

.contact-page .contact-form-grid > * {
    min-width: 0;
}

.contact-page .contact-service-field {
    min-width: 0;
}

.contact-page .contact-field-label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.contact-page .service-search-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

.contact-page .service-select-button {
    width: 100%;
    min-width: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    overflow: hidden;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.contact-page
.service-select-button
#selectedServiceText {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-page .service-select-arrow {
    flex: 0 0 auto;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.contact-page
.service-search-select.open
.service-select-arrow {
    transform: rotate(180deg);
}

.contact-page .service-select-dropdown {
    position: absolute;
    z-index: 100;
    top: calc(100% + 7px);
    left: 0;
    width: 100%;
    max-height: 310px;
    overflow: hidden;
    border: 1px solid rgba(21, 85, 112, 0.18);
    border-radius: 12px;
    background: #ffffff;
    box-shadow:
        0 18px 40px
        rgba(21, 85, 112, 0.18);
}

.contact-page .contact-service-field {
    position: relative;
    min-width: 0;
    align-self: start;
}

.contact-page .service-search-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

.contact-page .service-option-list {
    width: 100%;
    height: 200px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 6px;
    background: #ffffff;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(21, 85, 112, 0.35)
        rgba(21, 85, 112, 0.07);
}

.contact-page .service-option-list::-webkit-scrollbar {
    width: 7px;
}

.contact-page .service-option-list::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(21, 85, 112, 0.07);
}

.contact-page .service-option-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(21, 85, 112, 0.35);
}

.contact-page .service-option-list::-webkit-scrollbar-thumb:hover {
    background: rgba(21, 85, 112, 0.55);
}

.contact-page .service-option {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 11px 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.contact-page .service-option:hover,
.contact-page .service-option.selected {
    color: #155570;
    background: rgba(21, 85, 112, 0.08);
}

.contact-page .service-option[hidden] {
    display: none !important;
}

.contact-page .service-select-dropdown[hidden] {
    display: none !important;
}

.contact-page
.service-select-dropdown[hidden] {
    display: none !important;
}

.contact-page .service-search-wrapper {
    padding: 11px;
    border-bottom:
        1px solid rgba(21, 85, 112, 0.1);
}

.contact-page .service-search-wrapper input {
    width: 100%;
    height: 42px;
    min-height: 42px;
    padding: 0 12px;
    border:
        1px solid rgba(21, 85, 112, 0.18);
    border-radius: 8px;
    outline: none;
    font: inherit;
    font-size: 13px;
}

.contact-page
.service-search-wrapper
input:focus {
    border-color: #155570;
    box-shadow:
        0 0 0 3px
        rgba(21, 85, 112, 0.09);
}

.contact-page .service-option-list {
    max-height: 245px;
    overflow-y: auto;
    padding: 6px;
}

.contact-page .service-option {
    width: 100%;
    overflow: hidden;
    padding: 11px 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.contact-page .service-option:hover,
.contact-page .service-option.selected {
    color: #155570;
    background:
        rgba(21, 85, 112, 0.08);
}

.contact-page .service-option[hidden] {
    display: none !important;
}

.contact-page .service-no-result {
    padding: 18px 12px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}