﻿.contactWrap {
    max-width: 1180px;
    margin: 18px auto;
    padding: 0 14px;
}

.contactHero {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgb(113 27 178 / 22%);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    padding: 18px;
    margin-bottom: 14px;
}

.contactBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.86);
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .3px;
}

.contactTitle {
    margin: 10px 0 6px;
    color: #fff;
    font-weight: 950;
    font-size: 28px;
    line-height: 1.15;
}

.contactSub {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-weight: 750;
    line-height: 1.5;
}

.contactGrid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 14px;
}

@media(max-width: 980px) {
    .contactGrid {
        grid-template-columns: 1fr;
    }
}

.contactCard {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    padding: 18px;
}

.cardTitle {
    margin: 0 0 14px;
    color: #fff;
    font-weight: 950;
    font-size: 20px;
}

.infoList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.infoItem {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    padding: 12px;
}

.infoKey {
    color: rgba(255,255,255,.60);
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 6px;
}

.infoVal {
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.mapWrap {
    width: 100%;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
}

@media(max-width: 680px) {
    .mapWrap {
        height: 320px;
    }
}

.mapActions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.mapBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgb(245, 41, 6);
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

    .mapBtn:hover {
        filter: brightness(1.06);
    }


.map-link-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-radius: 16px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
}

    .map-link-box:hover {
        background: #ececec;
    }

.contact-page {
    padding: 40px 0 60px;
}
.contact-card {
    background: #ffffff38;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

    .contact-card h2 {
        margin-bottom: 18px;
    }

    .contact-card p {
        margin: 0 0 12px;
        line-height: 1.7;
    }

    .contact-card a {
        color: #0a58ca;
        text-decoration: none;
    }