/* ================================================================
   support.css — Pro-SMV Support page
   Cinematic dark design system: navy, gold, warm parchment.
   wwwroot/css/support.css
   ================================================================ */

/* ── Page shell ── */
.pss-page {
    min-height: calc(100vh - 56px);
    background: #f4f3ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Inter','Segoe UI',sans-serif;
}

/* ── Grid — centered, single card for now ── */
.pss-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
    max-width: 960px;
}

/* ================================================================
   SUPPORT CARD
   ================================================================ */
.pss-card {
    background: #ffffff;
    border-radius: 20px;
    border: 0.5px solid rgba(10,14,26,0.08);
    box-shadow: 0 8px 32px rgba(10,14,26,0.08);
    width: 100%;
    max-width: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* ── Coloured header band ── */
.pss-card-head {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #1a2454 0%, #0a0e1a 60%, #1a2454 100%);
    position: relative;
    flex-shrink: 0;
}

    .pss-card-head::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 40px;
        background: #ffffff;
        border-radius: 40px 40px 0 0;
    }

    /* Gold ring decorations on header */
    .pss-card-head::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 0.5px solid rgba(245,187,22,0.2);
        box-shadow: 0 0 0 24px rgba(245,187,22,0.05);
        pointer-events: none;
    }

/* ── Avatar / photo ── */
.pss-photo-wrap {
    margin-top: -50px;
    z-index: 2;
    position: relative;
}

.pss-photo-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5BB16, #d99c00);
    padding: 3px;
    box-shadow: 0 6px 20px rgba(245,187,22,0.3);
}

.pss-photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f4f3ef;
    border: 3px solid #ffffff;
}

    .pss-photo-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ── Body ── */
.pss-body {
    padding: 14px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

/* Name */
.pss-name {
    font-size: 18px;
    font-weight: 600;
    color: #0a0e1a;
    letter-spacing: -0.3px;
    margin: 0;
    text-align: center;
}

/* Role pill */
.pss-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(26,36,84,0.07), rgba(245,187,22,0.08));
    border: 0.5px solid rgba(26,36,84,0.12);
    font-size: 11px;
    font-weight: 600;
    color: #1a2454;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

    .pss-role-pill i {
        font-size: 13px;
        color: #F5BB16;
    }

/* ── Contact list ── */
.pss-contact-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pss-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8f7f4;
    border: 0.5px solid rgba(10,14,26,0.06);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

    .pss-contact-row:hover {
        background: #f0ede6;
        border-color: rgba(245,187,22,0.3);
        transform: translateX(3px);
    }

.pss-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pss-contact-icon i {
        font-size: 16px;
    }

    .pss-contact-icon.is-email {
        background: rgba(99,102,241,0.1);
        color: #6366f1;
    }

    .pss-contact-icon.is-phone {
        background: rgba(16,185,129,0.1);
        color: #10b981;
    }

.pss-contact-body {
    min-width: 0;
}

.pss-contact-label {
    font-size: 9.5px;
    color: rgba(10,14,26,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 1px;
}

.pss-contact-value {
    font-size: 12.5px;
    color: #0a0e1a;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Social row ── */
.pss-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pss-social {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 0.5px solid rgba(10,14,26,0.08);
}

    .pss-social:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(10,14,26,0.12);
    }

    .pss-social.is-facebook {
        background: #1877f2;
        color: #fff;
    }

    .pss-social.is-linkedin {
        background: #0a66c2;
        color: #fff;
    }

    .pss-social.is-twitter {
        background: #0a0e1a;
        color: #fff;
    }

    .pss-social.is-whatsapp {
        background: #25d366;
        color: #fff;
    }

/* ── Responsive ── */
@media (max-width: 480px) {
    .pss-page {
        padding: 24px 12px;
        align-items: flex-start;
    }

    .pss-card {
        max-width: 100%;
    }

    .pss-body {
        padding: 12px 18px 22px;
    }
}
