.contact-page {
    background: #f7f8fb;
    color: #17202f;
    overflow: hidden;
}

.contact-page .container {
    max-width: 1180px;
}

.contact-hero {
    position: relative;
    padding: 86px 0 118px;
    color: #fff;
    background: #17202f;
    isolation: isolate;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(23, 32, 47, .95), rgba(23, 32, 47, .76)),
    url("../../../frontend/slider-landing/network.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.contact-hero__content {
    max-width: 760px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffb36b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: currentColor;
}

.contact-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.contact-hero p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.contact-info-strip {
    position: relative;
    z-index: 2;
    margin-top: -52px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-info-card {
    min-height: 148px;
    padding: 26px;
    border: 1px solid #e7ebf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #fff0ec;
    color: #f7421e;
    font-size: 18px;
}

.contact-info-card h2 {
    margin: 0 0 8px;
    color: #17202f;
    font-size: 20px;
    font-weight: 800;
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: #f7421e;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: start;
}

.contact-support-panel,
.contact-form-panel {
    border: 1px solid #e7ebf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.contact-support-panel {
    padding: 32px;
}

.contact-support-panel h2,
.contact-form-panel h2 {
    margin: 0 0 12px;
    color: #17202f;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-support-panel p,
.contact-form-panel p {
    margin: 0 0 22px;
    color: #667085;
    font-size: 16px;
    line-height: 1.72;
}

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

.contact-help-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #566273;
    font-size: 15px;
    line-height: 1.55;
}

.contact-help-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #21a67a;
}

.contact-response-note {
    margin-top: 28px;
    padding: 20px;
    border-radius: 8px;
    background: #fff5f1;
    color: #8a321e;
    font-size: 15px;
    line-height: 1.65;
}

.contact-form-panel {
    padding: 32px;
}

.contact-alert {
    display: none;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.45;
}

.contact-alert--success {
    border: 1px solid #b7e4c7;
    background: #edfdf3;
    color: #146c43;
}

.contact-alert--error {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #b42318;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-field {
    margin: 0;
    text-align: left;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #17202f;
    font-size: 14px;
    font-weight: 800;
}

.contact-page .form-control {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    background: #fff;
    color: #17202f;
    font-size: 15px;
    box-shadow: none;
}

.contact-page textarea.form-control {
    min-height: 168px;
    resize: vertical;
}

.contact-page .form-control:focus {
    border-color: #f7421e;
    box-shadow: 0 0 0 3px rgba(247, 66, 30, .1);
}

.contact-error {
    min-height: 18px;
    margin-top: 6px;
    color: #d92d20;
    font-size: 13px;
    line-height: 1.35;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 26px;
    border: 0;
    border-radius: 6px;
    background: #f7421e;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.contact-submit:hover {
    background: #df3514;
    color: #fff;
    transform: translateY(-2px);
}

.contact-submit:disabled {
    opacity: .68;
    transform: none;
    cursor: wait;
}

@media (max-width: 991px) {

    .contact-info-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 36px !important;
    }

    .contact-hero {
        padding: 64px 0 96px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 48px 0;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-support-panel,
    .contact-form-panel,
    .contact-info-card {
        padding: 22px;
    }

    .contact-info-strip {
        margin-top: -34px;
    }
}