﻿:root {
    --bg: #0b1220;
    --text: #eaf0ff;
    --muted: #9fb0d0;
    --line: rgba(255,255,255,.08);
    --primary: #6ea8fe;
    --primary2: #3b82f6;
    --shadow: 0 30px 80px rgba(0,0,0,.35);
}

.contact-shell {
    padding: 26px 0 18px;
    color: var(--text);
}

/* HERO */
.contact-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: radial-gradient(1000px 450px at 20% 10%, rgba(110,168,254,.18), transparent 60%), linear-gradient(180deg, rgba(11,18,32,.92), rgba(11,18,32,.75));
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 360px at 80% 0%, rgba(110,168,254,.12), transparent 60%);
    pointer-events: none;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.pill {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
}

.contact-title {
    margin: 12px 0 6px;
    font-weight: 1000;
    letter-spacing: .2px;
    font-size: 30px;
}

.contact-subtitle {
    margin: 0;
    color: rgba(234,240,255,.82);
    line-height: 1.6;
    max-width: 70ch;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btnx {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 900;
    transition: .15s ease;
}

    .btnx:hover {
        transform: translateY(-1px);
    }

.btnx-primary {
    color: var(--text);
    background: linear-gradient(180deg, rgba(110,168,254,.95), rgba(59,130,246,.85));
    border-color: rgba(110,168,254,.55);
}

.btnx-soft {
    color: var(--text);
    background: rgba(255,255,255,.04);
}

.btnx-ghost {
    color: var(--muted);
    background: transparent;
}

    .btnx-ghost:hover {
        color: var(--text);
        border-color: rgba(110,168,254,.35);
        background: rgba(255,255,255,.03);
    }

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.contact-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    padding: 14px;
    transition: .15s ease;
    min-height: 170px;
    display: flex;
    flex-direction: column;
}

    .contact-card:hover {
        transform: translateY(-2px);
        border-color: rgba(110,168,254,.35);
    }

.icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon i {
        font-size: 18px;
        color: rgba(110,168,254,.95);
    }

.contact-card h4 {
    margin: 10px 0 6px;
    font-weight: 1000;
    letter-spacing: .2px;
}

.contact-card p {
    margin: 0 0 6px;
    color: rgba(234,240,255,.82);
    line-height: 1.55;
}

.contact-card a {
    color: rgba(234,240,255,.9);
    text-decoration: none;
}

    .contact-card a:hover {
        text-decoration: underline;
    }

/* Social */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s ease;
}

    .social i {
        font-size: 18px;
        color: rgba(110,168,254,.95);
    }

    .social:hover {
        transform: translateY(-2px);
        border-color: rgba(110,168,254,.35);
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }

/* Mini buttons */
.card-foot {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: flex-start;
}

.btn-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 900;
    transition: .15s ease;
    background: rgba(255,255,255,.03);
}

    .btn-mini:hover {
        transform: translateY(-1px);
    }

.btn-mini-primary {
    color: var(--text);
    background: rgba(110,168,254,.10);
    border-color: rgba(110,168,254,.35);
}

.btn-mini-soft {
    color: var(--text);
    background: rgba(255,255,255,.04);
}

/* Map */
.map-wrap {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    overflow: hidden;
}

.map-head {
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

    .map-head h3 {
        margin: 0;
        font-weight: 1000;
    }

    .map-head p {
        margin: 6px 0 0;
        color: var(--muted);
    }

.map-frame iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}
