  :root {
    --green-dark: #064E3B;
    --green-mid: #065F46;
    --green-base: #059669;
    --green-light: #D1FAE5;
    --green-pale: #ECFDF5;
    --gold: #B45309;
    --gold-light: #FEF3C7;
    --ink: #111827;
    --ink-2: #374151;
    --ink-3: #6B7280;
    --line: #E5E7EB;
    --bg: #F9FAFB;
    --white: #FFFFFF;
    --radius: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.06);
  }
.page-header {
    background: var(--green-dark);
    padding: 3.5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(5, 150, 105, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.header-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6EE7B7;
    font-weight: 500;
    margin-bottom: 0.75rem;
    position: relative;
}

.header-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.header-sub {
    font-size: 14px;
    color: #A7F3D0;
    max-width: 400px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    position: relative;
}

.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ECFDF5;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    margin-bottom: 20px;
}

.email-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.email-pill svg {
    opacity: 0.75;
}

/* ── LAYOUT ── */
.page-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* ── SECTION LABEL ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.section-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-base);
    flex-shrink: 0;
}

.section-label-text {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green-mid);
}

.section-label-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ── CENTRAL CARDS ── */
.central-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 3rem;
}

.person-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
    animation: fadeUp 0.5s ease both;
}

.person-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.person-card:nth-child(1) {
    animation-delay: 0.05s;
}

.person-card:nth-child(2) {
    animation-delay: 0.12s;
}

.person-card:nth-child(3) {
    animation-delay: 0.19s;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.person-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
    line-height: 1.3;
}

.person-role {
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 14px;
}

.person-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 14px;
}

.person-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink-2);
}

.contact-row svg {
    flex-shrink: 0;
    color: var(--green-base);
}

.contact-row a {
    color: var(--green-mid);
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

/* ── ZONAL TABLE ── */
.table-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    /* overflow: hidden; */
    animation: fadeUp 0.5s 0.25s ease both;
}

.zonal-table {
    width: 100%;
    border-collapse: collapse;
}

.zonal-table thead tr {
    background: var(--green-dark);
}

.zonal-table thead th {
    padding: 13px 16px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A7F3D0;
    white-space: nowrap;
}

.zonal-table thead th:first-child {
    width: 52px;
    text-align: center;
}

.zonal-table tbody tr {
    border-bottom: 1px solid var(--line);
    transition: background 0.15s;
}

.zonal-table tbody tr:last-child {
    border-bottom: none;
}

.zonal-table tbody tr:hover {
    background: var(--green-pale);
}

.zonal-table tbody td {
    padding: 13px 16px;
    font-size: 13.5px;
    color: var(--ink-2);
    vertical-align: middle;
}

.zonal-table tbody td:first-child {
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--ink-3);
}

.branch-name {
    font-weight: 600;
    color: var(--ink);
}

.phone-mono {
    font-family: 'DM Mono', monospace;
    font-size: 12.5px;
    color: var(--ink-2);
}

.zone-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: var(--green-light);
    color: var(--green-dark);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.designation-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--ink-3);
}

.designation-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-base);
    display: inline-block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FOOTER ── */
.page-footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 12px;
    color: var(--ink-3);
    border-top: 1px solid var(--line);
    margin-top: 1rem;
}

.complaint-button-div {
    text-align: center;
    margin-bottom: 2rem;
}

.complaint-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--green-base);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.complaint-button:hover {
    background: var(--green-mid);
    box-shadow: var(--shadow-card);
}



@media (max-width: 600px) {
    .central-grid {
        grid-template-columns: 1fr;
    }

    .zonal-table thead th:nth-child(2),
    .zonal-table tbody td:nth-child(2) {
        display: none;
    }

    .page-header {
        padding: 2.5rem 1.25rem 3.5rem;
    }
}
