.contact-body {
    background:
        radial-gradient(circle at 18% 18%, rgba(226, 177, 95, .1), transparent 25%),
        linear-gradient(180deg, #fff 0%, #f6f8fb 44%, #fff 100%);
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
}

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

.contact-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    padding-top: 82px;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(270deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 31%, rgba(255, 255, 255, .68) 51%, rgba(255, 255, 255, .12) 78%),
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .78));
}

.contact-hero__media {
    position: absolute;
    inset: 0;
}

.contact-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

.contact-hero__grid {
    position: relative;
    z-index: 2;
    min-height: 568px;
    display: grid;
    grid-template-columns: minmax(430px, 610px) 1fr;
    align-items: center;
}

.contact-hero__copy {
    grid-column: 1;
}

.contact-hero__copy h1 {
    margin: 10px 0 0;
    color: var(--navy);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.18;
    font-weight: 900;
}

.contact-hero__copy h1 span {
    color: var(--gold);
}

.contact-hero__copy p {
    width: min(575px, 100%);
    margin: 22px 0 0;
    color: #536174;
    font-size: 18px;
    line-height: 2;
    font-weight: 700;
}

.contact-prooflets {
    display: grid;
    grid-template-columns: repeat(4, minmax(104px, 1fr));
    gap: 10px;
    width: min(600px, 100%);
    margin-top: 34px;
}

.contact-prooflets span {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 7px;
    min-height: 130px;
    padding: 18px 10px;
    color: #536174;
    text-align: center;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(201, 137, 47, .16);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(7, 26, 52, .08);
    backdrop-filter: blur(14px);
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-prooflets span:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(7, 26, 52, .13);
}

.contact-prooflets i,
.location-card i,
.benefit-grid i {
    width: 28px;
    height: 28px;
    color: var(--gold);
    stroke-width: 1.8;
}

.contact-prooflets b {
    display: block;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}

.contact-prooflets small {
    display: block;
    color: #8492a6;
    font-size: 11px;
    line-height: 1.55;
    font-weight: 700;
}

.contact-panel-section {
    position: relative;
    z-index: 3;
    margin-top: -62px;
    padding-bottom: 32px;
}

.contact-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
    gap: 22px;
    align-items: stretch;
}

.contact-form-card,
.contact-methods-card,
.locations-card,
.faq-grid {
    border: 1px solid rgba(201, 137, 47, .13);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(7, 26, 52, .08);
}

.contact-form-card {
    padding: 28px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
}

.contact-form-card h2,
.contact-methods-card h2 {
    margin: 0 0 22px;
    color: var(--navy);
    text-align: right;
    font-size: 26px;
    font-weight: 900;
}

.contact-form-card h2::after,
.contact-methods-card h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 10px;
    background: var(--gold);
    border-radius: 999px;
}

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

.contact-form-grid label {
    position: relative;
    display: block;
    min-width: 0;
}

.contact-form-grid i {
    position: absolute;
    top: 17px;
    right: 15px;
    width: 18px;
    height: 18px;
    color: #8a94a6;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    min-height: 54px;
    padding: 0 46px 0 14px;
    color: var(--navy);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form-grid textarea {
    min-height: 124px;
    padding-top: 15px;
    resize: vertical;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
    background: #fffdf9;
    border-color: rgba(201, 137, 47, .6);
    box-shadow: 0 0 0 4px rgba(201, 137, 47, .1);
}

.form-wide {
    grid-column: 1 / -1;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 56px;
    margin-top: 14px;
    color: #fff;
    font-family: inherit;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), #12345e);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(7, 26, 52, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(7, 26, 52, .24);
}

.contact-submit i {
    width: 18px;
}

.privacy-note {
    margin: 13px 0 0;
    color: #8a94a6;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.6;
}

.form-alert i {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.form-alert--success {
    color: #0f7b4f;
    background: rgba(16, 185, 110, .1);
    border: 1px solid rgba(16, 185, 110, .28);
}

.form-alert--error {
    color: #b42318;
    background: rgba(220, 53, 44, .08);
    border: 1px solid rgba(220, 53, 44, .26);
}

.contact-form-grid label.is-invalid input,
.contact-form-grid label.is-invalid select,
.contact-form-grid label.is-invalid textarea {
    border-color: rgba(220, 53, 44, .6);
    box-shadow: 0 0 0 4px rgba(220, 53, 44, .08);
}

.contact-form-grid label.is-invalid i {
    color: #dc352c;
}

.contact-methods-card {
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(6, 24, 47, .96), rgba(9, 35, 63, .94)),
        url("images/contact/contact-support-ring-banner-v2.webp") center / cover;
}

.contact-methods-card h2 {
    color: #fff;
}

.contact-method-list {
    display: grid;
    gap: 10px;
}

.contact-method {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 13px;
    align-items: center;
    min-height: 72px;
    padding: 11px 13px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
}

.contact-method span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: var(--gold-2);
    border: 1px solid rgba(226, 177, 95, .64);
    border-radius: 50%;
}

.contact-method i {
    width: 24px;
    height: 24px;
}

.contact-method strong {
    display: block;
    color: var(--gold-2);
    font-size: 15px;
    font-weight: 900;
}

.contact-method b {
    display: block;
    overflow-wrap: anywhere;
    color: #fff;
    direction: ltr;
    font-size: 14px;
    font-weight: 800;
}

.contact-method b a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

.contact-method b a:hover,
.contact-method b a:focus-visible {
    color: var(--gold-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.locations-section {
    padding: 24px 0 34px;
}

.locations-card {
    display: grid;
    grid-template-columns: minmax(340px, .92fr) minmax(0, 1fr);
    overflow: hidden;
    background: rgba(255, 255, 255, .98);
}

.locations-map {
    min-height: 330px;
    border-left: 1px solid rgba(201, 137, 47, .14);
}

.locations-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locations-content {
    padding: 30px;
}

.section-heading.compact {
    margin-bottom: 24px;
    text-align: center;
}

.section-heading.compact h2 {
    color: var(--navy);
    font-size: 30px;
    font-weight: 900;
}

.section-heading.compact h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 10px auto 0;
    background: var(--gold);
    border-radius: 999px;
}

.section-heading.compact p {
    margin: 12px 0 0;
    color: #667085;
    font-weight: 800;
}

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

.location-grid--single {
    grid-template-columns: minmax(230px, 360px);
    justify-content: center;
}

.location-card {
    min-height: 190px;
    padding: 24px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    box-shadow: 0 18px 35px rgba(7, 26, 52, .06);
}

.location-card h3 {
    margin: 10px 0 6px;
    color: var(--navy);
    font-size: 21px;
    font-weight: 900;
}

.location-card p,
.location-card span {
    display: block;
    margin: 0 0 8px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
}

.location-card b {
    color: var(--navy);
    font-size: 13px;
}

.contact-benefits {
    padding: 18px 0 12px;
}

.benefits-banner,
.contact-cta__panel {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    box-shadow: 0 24px 65px rgba(7, 26, 52, .2);
}

.benefits-banner {
    min-height: 210px;
    padding: 30px 32px;
}

.benefits-banner > img,
.contact-cta__panel > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 26, 52, .08), rgba(7, 26, 52, .74) 38%, rgba(7, 26, 52, .94));
}

.benefits-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    align-items: center;
}

.benefits-content h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.benefit-grid article {
    min-height: 118px;
    padding: 12px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.benefit-grid article:first-child {
    border-right: 0;
}

.benefit-grid h3 {
    margin: 8px 0 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.benefit-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 800;
}

.contact-faq {
    padding-top: 18px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, .96);
}

.faq-item {
    color: var(--navy);
    font-family: inherit;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(7, 26, 52, .04);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.faq-item[open] {
    background: #fffdf9;
    border-color: rgba(201, 137, 47, .3);
    box-shadow: 0 16px 34px rgba(7, 26, 52, .08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 0 16px;
    font-weight: 900;
    text-align: right;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    min-width: 0;
    line-height: 1.65;
}

.faq-item summary i {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    color: var(--gold);
    transition: transform .2s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {
    margin: -2px 0 0;
    padding: 0 16px 17px;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.9;
}

.contact-cta {
    padding: 0 0 18px;
}

.contact-cta__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    min-height: 172px;
    padding: 34px 42px;
}

.contact-cta__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 26, 52, .08), rgba(7, 26, 52, .74) 51%, rgba(7, 26, 52, .95));
}

.contact-cta__copy,
.contact-cta__actions {
    position: relative;
    z-index: 1;
}

.contact-cta__copy h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
}

.contact-cta__copy p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.contact-cta__actions {
    display: flex;
    gap: 10px;
}

.contact-cta__actions .btn-secondary {
    color: #fff;
    border-color: rgba(226, 177, 95, .6);
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 1100px) {
    .contact-hero::before {
        background:
            linear-gradient(270deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .48) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .8));
    }

    .contact-hero__grid,
    .contact-panel-grid,
    .locations-card,
    .benefits-content,
    .contact-cta__panel {
        grid-template-columns: 1fr;
    }

    .contact-hero__copy {
        grid-column: auto;
        max-width: 650px;
        margin-right: auto;
    }

    .contact-prooflets,
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid article {
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .benefit-grid article:nth-child(-n + 2) {
        border-top: 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .locations-map {
        border-left: 0;
        border-bottom: 1px solid rgba(201, 137, 47, .14);
    }

    .contact-cta__actions {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .contact-hero {
        min-height: auto;
        padding: 52px 0 42px;
    }

    .contact-hero::before {
        background: rgba(255, 255, 255, .84);
    }

    .contact-hero__media img {
        object-position: 31% center;
    }

    .contact-hero__grid {
        min-height: auto;
    }

    .contact-hero__copy {
        text-align: center;
    }

    .contact-kicker {
        justify-content: center;
    }

    .contact-kicker::before {
        display: none;
    }

    .contact-hero__copy h1 {
        font-size: 38px;
    }

    .contact-hero__copy p {
        font-size: 16px;
        line-height: 1.9;
    }

    .contact-prooflets,
    .contact-form-grid,
    .benefit-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel-section {
        margin-top: 0;
    }

    .contact-form-card,
    .contact-methods-card,
    .locations-content,
    .benefits-banner,
    .contact-cta__panel {
        padding: 22px 16px;
    }

    .contact-form-card h2,
    .contact-methods-card h2 {
        text-align: center;
        font-size: 23px;
    }

    .contact-form-card h2::after,
    .contact-methods-card h2::after {
        margin-inline: auto;
    }

    .contact-method {
        grid-template-columns: 48px 1fr;
    }

    .contact-method span {
        width: 46px;
        height: 46px;
    }

    .benefit-grid article,
    .benefit-grid article:nth-child(-n + 2) {
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .benefit-grid article:first-child {
        border-top: 0;
    }

    .contact-cta__actions {
        display: grid;
        justify-self: stretch;
    }
}
