/* Contact and network HTML sections
   HTML roots: .sc-contact-*
   Source-controlled styles for handcrafted CMS HTML compositions. */
.sc-contact-hero {
    max-width: var(--max-width);
    min-height: min(760px, calc(100vh - 90px));
    margin: 0 auto;
    padding: clamp(84px, 10vw, 132px) 30px 72px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
    color: #fff;
}

.sc-contact-hero__text h1 {
    max-width: 620px;
    margin: 0 0 22px;
    color: inherit;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 800;
}

.sc-contact-hero__text p {
    max-width: 610px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.72;
}

.sc-contact-hero__actions,
.sc-contact-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sc-contact-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.85fr) minmax(300px, 1.15fr);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.sc-contact-card__info {
    padding: clamp(26px, 3vw, 38px);
    background: #001a33;
    color: #fff;
}

.sc-contact-card__info h2 {
    margin: 0 0 22px;
    color: inherit;
    font-size: 24px;
    font-weight: 800;
}

.sc-contact-card__list {
    display: grid;
    gap: 16px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.sc-contact-card__list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.45;
}

.sc-contact-card__list i {
    color: var(--gold);
    line-height: 1.45;
}

.sc-contact-card__form {
    padding: clamp(26px, 3vw, 38px);
    background: #fff;
    color: var(--navy);
}

.sc-contact-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sc-contact-card__field,
.sc-contact-card__textarea,
.sc-contact-card__select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--navy);
    background: #fff;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font: inherit;
}

.sc-contact-card__textarea {
    grid-column: 1 / -1;
    min-height: 116px;
    resize: vertical;
}

.sc-contact-card__submit {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    border: 0;
}

.sc-contact-support,
.sc-contact-global {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.sc-contact-section-title {
    margin: 0 0 42px;
    color: var(--navy);
    text-align: center;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
}

.sc-contact-support__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sc-contact-support__card {
    min-height: 280px;
    padding: 34px;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 60px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
}

.sc-contact-support__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    color: #392a0c;
    background: var(--gold-gradient);
    border-radius: 16px;
    font-size: 24px;
}

.sc-contact-support__card h3 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 21px;
    font-weight: 800;
}

.sc-contact-support__card ul {
    margin: 0;
    padding-left: 18px;
    color: #526174;
    line-height: 1.9;
}

.sc-contact-support__action {
    margin-top: 38px;
    text-align: center;
}

.sc-contact-global {
    position: relative;
    text-align: center;
}

.sc-contact-global::before {
    content: "";
    position: absolute;
    inset: -40px 0;
    background: url("/_content/SharedComponents/demo-assets/world-map-light.svg") center 70% / 32% no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.sc-contact-global__inner {
    position: relative;
    z-index: 1;
}

.sc-contact-global h2 {
    max-width: 920px;
    margin: 0 auto 22px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.25;
    font-weight: 760;
}

.sc-contact-global p {
    margin: 0 0 34px;
    color: #66758a;
    font-size: 18px;
}

.sc-contact-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.sc-contact-flags img {
    width: 52px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 26, 51, 0.22);
    transition: transform 0.25s ease;
}

.sc-contact-flags img:hover {
    transform: translateY(-6px) scale(1.08);
}

@media (max-width: 1100px) {
.sc-contact-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

.sc-contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
.sc-contact-hero,
    .sc-contact-support,
    .sc-contact-global {
        padding-inline: 18px;
    }

.sc-contact-card__grid,
    .sc-contact-support__grid {
        grid-template-columns: 1fr;
    }
}
