.contact-page {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 82px 0 105px;
    background: radial-gradient(circle at 8% 16%, rgba(191, 179, 140, .16), transparent 27%), radial-gradient(circle at 94% 84%, rgba(191, 179, 140, .13), transparent 28%), #f7f5ef;
}

.contact-page::before,
.contact-page::after {
    position: absolute;
    width: 290px;
    height: 290px;
    content: "";
    border: 1px solid rgba(191, 179, 140, .2);
    border-radius: 50%;
}

.contact-page::before { top: -175px; left: -115px; }
.contact-page::after { right: -120px; bottom: -185px; }
.contact-page .container { position: relative; z-index: 1; }

.contact-page__heading {
    width: min(700px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.contact-page__heading > span {
    display: inline-block;
    margin-bottom: 12px;
    color: #9e9169;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-page__heading h2 {
    color: #484747;
    font-family: var(--headingFont);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
}

.contact-page__heading p {
    margin-top: 15px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.contact-page .tf__contact_form_area {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

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

.contact-page .tf__contact_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 360px;
    margin: 0;
    padding: 38px 28px 32px;
    border: 1px solid rgba(191, 179, 140, .45);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(72, 71, 71, .09);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-page .tf__contact_info:hover {
    border-color: rgba(169, 155, 111, .72);
    box-shadow: 0 20px 50px rgba(72, 71, 71, .14);
    transform: translateY(-4px);
}

.contact-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    border-radius: 18px;
    place-items: center;
    color: #fff;
    background: #bfb38c;
    box-shadow: 0 10px 24px rgba(191, 179, 140, .3);
}

.contact-card__icon i { font-size: 22px; }

.contact-page .tf__contact_info h3 {
    margin: 0;
    color: #484747;
    font-family: var(--headingFont);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-page .tf__contact_info h4 {
    margin: 14px 0 25px;
    color: #777;
    font-family: var(--paraFont);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.contact-card__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 10px 13px;
    border: 1px solid #d6cfba;
    border-radius: 10px;
    color: #655f4d;
    background: #fbfaf7;
    font-size: 12px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.contact-card__action span,
.contact-card__action i {
    width: auto;
    height: auto;
    display: inline;
    margin: 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    font-size: inherit;
    line-height: inherit;
    position: static;
}

.contact-card__action span::after {
    display: none;
}

.contact-card__action:hover,
.contact-card__action:focus-visible {
    border-color: #a99b6f;
    color: #484747;
    background: #eee9dc;
}

.contact-card__action--primary {
    border-color: #484747;
    color: #fff;
    background: #484747;
    font-size: 14px;
    font-weight: 600;
}

.contact-card__action--primary:hover,
.contact-card__action--primary:focus-visible {
    color: #302f2d;
    background: #cfc39c;
}

.contact-card__action:focus-visible {
    outline: 3px solid rgba(191, 179, 140, .35);
    outline-offset: 3px;
}

@media (max-width: 991.98px) {
    .contact-page { padding: 64px 0 82px; }
    .contact-page .tf__contact_info_area {
        grid-template-columns: 1fr;
        width: min(680px, 100%);
        margin: auto;
    }
    .contact-page .tf__contact_info { min-height: 0; }
}

@media (max-width: 575.98px) {
    .contact-page { padding: 48px 12px 64px; }
    .contact-page__heading { margin-bottom: 30px; }
    .contact-page .tf__contact_info { padding: 32px 22px 26px; border-radius: 20px; }
    .contact-card__action { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page .tf__contact_info { transition: none; }
    .contact-page .tf__contact_info:hover { transform: none; }
}
