/* ============================================================
   NikahNoor.com — style.css
   Theme: Black · White · Pink
   ============================================================ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    /* Core palette */
    --pink:         #E8577A;
    --pink-light:   #FDEEF2;
    --pink-mid:     #F4A8BB;
    --pink-dark:    #C03459;
    --black:        #0D0D0D;
    --black-soft:   #1A1A1A;
    --charcoal:     #2D2D2D;
    --grey-700:     #4A4A4A;
    --grey-500:     #7A7A7A;
    --grey-300:     #C5C5C5;
    --grey-100:     #F2F2F2;
    --white:        #FFFFFF;
    --off-white:    #FAFAFA;

    /* Semantic aliases */
    --color-primary:        var(--pink);
    --color-primary-hover:  var(--pink-dark);
    --color-primary-bg:     var(--pink-light);
    --color-text:           var(--black);
    --color-text-muted:     var(--grey-500);
    --color-bg:             var(--white);
    --color-surface:        var(--off-white);
    --color-border:         #E8E8E8;
    --color-error:          #D93025;
    --color-success:        #1A8C4E;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;
    --shadow-sm:    0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:    0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
    --shadow-lg:    0 12px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);

    /* Transitions */
    --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink-dark); }

img { max-width: 100%; display: block; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--grey-700); }

.text-muted  { color: var(--color-text-muted); }
.text-pink   { color: var(--pink); }
.text-center { text-align: center; }

/* ── Layout containers ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.container--narrow {
    max-width: 520px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: .875rem 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar__logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -.02em;
}

.navbar__logo span { color: var(--pink); }

.navbar__links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}

.navbar__links a {
    color: var(--grey-700);
    font-size: .9rem;
    font-weight: 500;
    padding: .4rem .85rem;
    border-radius: 99px;
    transition: all var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active { background: var(--pink-light); color: var(--pink); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.6rem;
    border: none;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,87,122,.35);
}
.btn--primary:hover {
    background: var(--pink-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(192,52,89,.4);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--pink);
    border: 1.5px solid var(--pink);
}
.btn--outline:hover { background: var(--pink-light); }

.btn--dark {
    background: var(--black);
    color: var(--white);
}
.btn--dark:hover { background: var(--charcoal); color: var(--white); }

.btn--ghost {
    background: transparent;
    color: var(--grey-500);
    border: 1.5px solid var(--color-border);
}
.btn--ghost:hover { background: var(--grey-100); color: var(--black); }

.btn--google {
    background: var(--white);
    color: var(--black-soft);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    width: 100%;
    font-size: 1rem;
}
.btn--google:hover { background: var(--grey-100); box-shadow: var(--shadow-md); }
.btn--google img { width: 20px; height: 20px; }

.btn--sm  { padding: .45rem 1rem; font-size: .85rem; }
.btn--lg  { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.card--elevated { box-shadow: var(--shadow-md); }
.card--pink-top { border-top: 3px solid var(--pink); }

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

label {
    font-size: .875rem;
    font-weight: 500;
    color: var(--charcoal);
}

label .required { color: var(--pink); margin-left: .15rem; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--color-text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(232,87,122,.15);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea { resize: vertical; min-height: 100px; }

.input-hint { font-size: .8rem; color: var(--grey-500); }
.input-error { font-size: .8rem; color: var(--color-error); }

.field-error { border-color: var(--color-error) !important; }
.field-error:focus { box-shadow: 0 0 0 3px rgba(217,48,37,.15) !important; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--grey-300);
    font-size: .85rem;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
    padding: .85rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: .9rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}
.alert--error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert--success { background: #F0FDF4; color: #14532D; border: 1px solid #BBF7D0; }
.alert--info    { background: var(--pink-light); color: var(--pink-dark); border: 1px solid var(--pink-mid); }

/* ── Auth pages ──────────────────────────────────────────── */
.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
}

.auth-panel--form {
    background: var(--white);
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
}

.auth-panel--visual {
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.auth-panel--visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(232,87,122,.45) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(232,87,122,.25) 0%, transparent 60%);
}

.auth-visual__quote {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.auth-visual__sub { position: relative; z-index: 1; color: rgba(255,255,255,.55); font-size: .9rem; }

.auth-header { margin-bottom: 2rem; }
.auth-header__logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; }
.auth-header__logo span { color: var(--pink); }
.auth-header h1 { font-size: 1.7rem; margin-bottom: .35rem; }
.auth-header p { color: var(--grey-500); font-size: .95rem; }

@media (max-width: 768px) {
    .auth-layout { grid-template-columns: 1fr; }
    .auth-panel--visual { display: none; }
    .auth-panel--form { padding: 2rem 1.5rem; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   ONBOARDING WIZARD
   ═══════════════════════════════════════════════════════════ */
.wizard-layout {
    min-height: 100vh;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
}

.wizard-header {
    background: var(--white);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.wizard-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.wizard-header__logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.wizard-header__logo span { color: var(--pink); }

/* Progress bar */
.wizard-progress {
    flex: 1;
    max-width: 420px;
}

.wizard-progress__labels {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--grey-500);
    margin-bottom: .35rem;
    font-weight: 500;
}

.wizard-progress__bar {
    height: 6px;
    background: var(--grey-100);
    border-radius: 99px;
    overflow: hidden;
}

.wizard-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-mid), var(--pink));
    border-radius: 99px;
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

.wizard-progress__step-label {
    font-size: .8rem;
    color: var(--pink);
    font-weight: 500;
    margin-top: .3rem;
    text-align: center;
}

/* Step indicators (dots) */
.wizard-steps {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.wizard-step-dot {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .3rem;
    position: relative;
}

.wizard-step-dot:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(50% + 16px);
    top: 14px;
    width: calc(100% - 32px);
    height: 2px;
    background: var(--grey-100);
    z-index: 0;
}

.wizard-step-dot.done:not(:last-child)::after { background: var(--pink-mid); }

.step-dot__circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--grey-300);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 600;
    color: var(--grey-300);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.wizard-step-dot.active .step-dot__circle {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(232,87,122,.2);
}

.wizard-step-dot.done .step-dot__circle {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
}

/* Wizard body */
.wizard-body {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.wizard-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 640px;
    overflow: hidden;
}

.wizard-card__header {
    background: var(--black);
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.wizard-card__header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(232,87,122,.2);
}

.wizard-card__step-num {
    font-size: .8rem;
    font-weight: 600;
    color: var(--pink-mid);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.wizard-card__header h2 {
    color: var(--white);
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.wizard-card__header p {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    margin-top: .3rem;
    position: relative;
    z-index: 1;
}

.wizard-card__body { padding: 2rem 2.5rem; }

.wizard-card__footer {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--off-white);
}

/* Photo upload zone */
.upload-zone {
    border: 2px dashed var(--grey-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--grey-100);
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.upload-zone input[type="file"] { display: none; }

.upload-zone__icon {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.upload-zone p { font-size: .9rem; margin-bottom: .35rem; }
.upload-zone small { font-size: .78rem; color: var(--grey-500); }

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: .75rem;
    margin-top: .75rem;
}

.upload-preview__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.upload-preview__item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Verified badge ──────────────────────────────────────── */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--pink);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 99px;
    letter-spacing: .03em;
}

.badge-verified svg { width: 12px; height: 12px; }

/* ── Profile card (browse) ───────────────────────────────── */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.profile-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-mid);
}

.profile-card__photo {
    aspect-ratio: 3/4;
    background: var(--grey-100);
    position: relative;
    overflow: hidden;
}

.profile-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.profile-card__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
}

.profile-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.profile-card__meta { color: rgba(255,255,255,.75); font-size: .8rem; margin-top: .1rem; }

.profile-card__body { padding: 1rem; }

.profile-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .75rem; }

.tag {
    font-size: .72rem;
    font-weight: 500;
    padding: .2rem .65rem;
    border-radius: 99px;
    background: var(--grey-100);
    color: var(--grey-700);
}

.tag--pink { background: var(--pink-light); color: var(--pink-dark); }

.profile-card__actions { display: flex; gap: .5rem; }
.profile-card__actions .btn { flex: 1; font-size: .82rem; padding: .55rem .75rem; }

/* ═══════════════════════════════════════════════════════════
   ADMIN DASHBOARD
   ═══════════════════════════════════════════════════════════ */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--black);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.admin-sidebar__logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    padding: .5rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: .5rem;
}

.admin-sidebar__logo span { color: var(--pink); }

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem 1.5rem;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 0;
    transition: all var(--transition);
    border-left: 3px solid transparent;
    text-decoration: none;
}

.admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,.06); }

.admin-nav-item.active {
    color: var(--white);
    border-left-color: var(--pink);
    background: rgba(232,87,122,.12);
}

.admin-main {
    background: var(--off-white);
    overflow-y: auto;
}

.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-page { padding: 2rem; }

.admin-page__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.admin-page__sub { color: var(--grey-500); font-size: .9rem; margin-bottom: 2rem; }

/* Stats cards */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }

.stat-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.stat-card__label { font-size: .8rem; color: var(--grey-500); font-weight: 500; margin-bottom: .4rem; }
.stat-card__value { font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.stat-card--pink .stat-card__value { color: var(--pink); }

/* Verification queue table */
.admin-table-wrap {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

.admin-table thead {
    background: var(--grey-100);
}

.admin-table th {
    padding: .875rem 1.25rem;
    text-align: left;
    font-size: .75rem;
    font-weight: 600;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--color-border);
}

.admin-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
    color: var(--charcoal);
}

.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: var(--off-white); }

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: 99px;
    text-transform: capitalize;
}

.status-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
}

.status-badge--pending  { background: #FFFBEB; color: #92400E; }
.status-badge--approved { background: #F0FDF4; color: #14532D; }
.status-badge--rejected { background: #FEF2F2; color: #991B1B; }

/* Verification detail modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal__header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal__title { font-size: 1.15rem; font-weight: 600; }
.modal__close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--grey-100);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.modal__close:hover { background: var(--grey-300); }

.modal__body { padding: 2rem; }
.modal__footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: .75rem;
    justify-content: flex-end;
    background: var(--off-white);
}

.id-docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.id-doc {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.id-doc__label {
    padding: .5rem .75rem;
    background: var(--grey-100);
    font-size: .78rem;
    font-weight: 600;
    color: var(--grey-700);
    border-bottom: 1px solid var(--color-border);
}

.id-doc img { width: 100%; height: 160px; object-fit: cover; }

/* ── Admin responsive ────────────────────────────────────── */
@media (max-width: 900px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

/* ── Utility classes ─────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Page animations ─────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp .4s cubic-bezier(.4,0,.2,1) both; }
.animate-in--delay-1 { animation-delay: .1s; }
.animate-in--delay-2 { animation-delay: .2s; }
.animate-in--delay-3 { animation-delay: .3s; }

/* ── Responsive overrides ────────────────────────────────── */
@media (max-width: 640px) {
    .wizard-card__header,
    .wizard-card__body,
    .wizard-card__footer { padding-left: 1.25rem; padding-right: 1.25rem; }
    .wizard-body { padding: 1.5rem .75rem; }
    .id-docs-grid { grid-template-columns: 1fr; }
    .modal__body, .modal__header, .modal__footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}
