/* ══════════════════════════════════════
   NCP LEADERSHIP PAGE
══════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
    background: var(--green-dk);
    padding: 80px 40px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 15% 50%, rgba(243,27,29,0.09) 0%, transparent 70%),
        radial-gradient(ellipse 45% 80% at 85% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.hero-ring-1 {
    position: absolute; top: -80px; right: 120px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
}
.hero-ring-2 {
    position: absolute; bottom: -60px; right: 80px;
    width: 180px; height: 180px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}
.ph-inner {
    position: relative;
    max-width: 1100px; margin: 0 auto;
}
.ph-inner h1 {
    font-family: 'Tiro Bangla', serif;
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}
.ph-inner h1 .accent { color: var(--red); }
.ph-inner .page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
    font-weight: 400;
}

/* Pill badge */
.page-hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px; padding: 6px 16px; margin-bottom: 20px;
    font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
}
.page-hero-pill .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80; flex-shrink: 0;
    animation: lsPulse 2s infinite;
}
@keyframes lsPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.5; transform:scale(1.4); }
}

/* ── Team Section ── */
.ls-team-sec {
    background: #f0ede8;
    padding: 80px 40px;
}
.ls-team-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Empty */
.ls-empty-state {
    text-align: center; padding: 80px 20px; color: #aaa;
}
.ls-empty-state p { margin-top: 16px; font-size: 16px; color: #999; }

/* ── Card Grid ── */
.ls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 280px));
    gap: 24px;
    justify-content: center;
}

/* ── Card ── */
.ls-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}
.ls-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

/* Avatar — fixed height so 1 card doesn't go giant */
.ls-card-avatar {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.ls-card-avatar img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s;
}
.ls-card:hover .ls-card-avatar img { transform: scale(1.04); }
.ls-card-avatar span {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; font-weight: 900;
    color: rgba(255,255,255,0.88);
    font-family: 'Tiro Bangla', serif;
    letter-spacing: -0.02em;
}
.ls-card-ring {
    position: absolute; bottom: -24px; right: -24px;
    width: 80px; height: 80px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

/* Card body */
.ls-card-body {
    padding: 16px 18px 4px;
    flex: 1;
}
.ls-card-name {
    font-family: 'Tiro Bangla', serif;
    font-size: 17px; font-weight: 900;
    color: var(--green-dk); margin-bottom: 4px;
    line-height: 1.3;
}
.ls-card-role {
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--red); margin-bottom: 8px;
}
.ls-card-city {
    display: flex; align-items: center; gap: 4px;
    font-size: 11.5px; color: #999;
}

/* View button */
.ls-card-view {
    margin: 12px 18px 18px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    background: transparent;
    border: 1.5px solid rgba(2,108,51,0.2);
    border-radius: 100px;
    font-size: 12px; font-weight: 700;
    color: var(--green); cursor: pointer;
    transition: all 0.2s; width: fit-content;
}
.ls-card:hover .ls-card-view { background: var(--green); border-color: var(--green); color: #fff; }

/* ══════════════════════════════════════
   MODAL — Immersive Design
══════════════════════════════════════ */
.ls-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(1,20,10,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s, visibility 0.28s;
}
.ls-modal-overlay.open {
    opacity: 1; visibility: visible;
}
.ls-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%; max-width: 460px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    transform: scale(0.94) translateY(14px);
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
}
.ls-modal-overlay.open .ls-modal {
    transform: scale(1) translateY(0);
}

/* Colored banner at top */
.ls-modal-banner {
    height: 110px;
    position: relative;
    flex-shrink: 0;
}
.ls-modal-banner-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.18);
}

/* Close button */
.ls-modal-close {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,0.25);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; z-index: 10;
    transition: background 0.2s;
}
.ls-modal-close:hover { background: rgba(0,0,0,0.45); }

/* Avatar overlapping banner → card */
.ls-modal-avatar-wrap {
    display: flex; justify-content: center;
    margin-top: -46px;
    position: relative; z-index: 2;
}
.ls-modal-avatar {
    width: 92px; height: 92px; border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; font-weight: 900; color: rgba(255,255,255,0.9);
    font-family: 'Tiro Bangla', serif;
    flex-shrink: 0;
}
.ls-modal-avatar img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: top center; display: block;
}

/* Name & title area */
.ls-modal-identity {
    text-align: center;
    padding: 14px 28px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.ls-modal-name {
    font-family: 'Tiro Bangla', serif;
    font-size: 22px; font-weight: 900;
    color: var(--green-dk); margin-bottom: 5px;
    line-height: 1.25;
}
.ls-modal-title {
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--red);
}

/* Info body */
.ls-modal-body { padding: 18px 28px 28px; }
.ls-modal-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid #f5f5f5;
}
.ls-modal-label {
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: #bbb; min-width: 72px; padding-top: 2px;
    flex-shrink: 0;
}
.ls-modal-val { font-size: 14px; color: #444; line-height: 1.5; }
.ls-modal-bio {
    margin-top: 16px; font-size: 14px;
    color: #555; line-height: 1.8;
}

/* ══════════════════════════════════════
   FOOTER — consistent dark theme
══════════════════════════════════════ */
