/* ══════════════════════════════════════════════════════════════════
   Sukanya Trust — Premium Design System
   Theme: Royal Blue
   (Google Fonts loaded via <link> in _Layout.cshtml)
   ══════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --primary:       #1A3C6E;
    --primary-dark:  #0D2240;
    --primary-light: #2856A0;
    --gold:          #C8900A;
    --gold-light:    #E8B53C;
    --gold-dark:     #9B6D05;
    --bg:            #F4F7FC;
    --card-bg:       #FFFFFF;
    --text:          #1A2B42;
    --text-muted:    #4E6A82;
    --success:       #1B6B3A;
    --danger:        #C0392B;
    --radius:        14px;
    --shadow:        0 8px 40px rgba(26,60,110,0.13);
    --shadow-sm:     0 4px 18px rgba(26,60,110,0.09);
    --transition:    all 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; }

/* ── Navbar ────────────────────────────────────────────────────── */
.sk-navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 2px 20px rgba(13,34,64,.40);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.sk-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: 0.02em;
}
.sk-navbar .brand-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(150deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.30);
    box-shadow: 0 4px 14px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.25);
    position: relative;
    overflow: hidden;
    gap: 1px;
}
.sk-navbar .brand-logo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: rgba(255,255,255,.12);
    border-radius: 12px 12px 0 0;
}
.sk-navbar .brand-logo-icon {
    font-size: 1.3rem;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}
.sk-navbar .brand-logo-label {
    font-size: .38rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--primary-dark);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.sk-navbar .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
}
.sk-navbar .brand-name-line1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: .01em;
    display: block;
}
.sk-navbar .brand-name-line2 {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: .04em;
    display: block;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .sk-navbar .brand-name-line1 { font-size: .78rem; }
    .sk-navbar .brand-name-line2 { display: none; }
    .sk-navbar .brand-logo       { width: 42px; height: 42px; border-radius: 11px; }
    .sk-navbar .brand-logo-icon  { font-size: 1.1rem; }
}
.sk-navbar .nav-link {
    color: rgba(255,255,255,.82) !important;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}
.sk-navbar .nav-link:hover,
.sk-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,.12);
}

/* ── Hero ──────────────────────────────────────────────────────── */
.sk-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    padding: 3.5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sk-hero-badge {
    display: inline-block;
    background: rgba(200,144,10,.22);
    border: 1px solid rgba(200,144,10,.45);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.95rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}
.sk-hero h1 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.sk-hero h1 span { color: var(--gold-light); }
.sk-hero p {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Page Header (inner pages) ─────────────────────────────────── */
.sk-page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 2rem 0 1.75rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sk-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sk-page-header h2 { font-weight: 700; font-size: 1.5rem; margin-bottom: .25rem; position: relative; }
.sk-page-header p  { color: rgba(255,255,255,.72); font-size: .9rem; margin: 0; position: relative; }

/* ── Option Cards (Home) ───────────────────────────────────────── */
.sk-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.sk-option-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.2rem 1.8rem 1.8rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.sk-option-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.sk-option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26,60,110,.18);
    border-color: rgba(200,144,10,.35);
    color: var(--text);
    text-decoration: none;
}
.sk-option-card:hover::after { transform: scaleX(1); }

.sk-option-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}
.sk-option-icon.reg   { background: linear-gradient(135deg,#E8EEF8,#C8D8F0); color: var(--primary); }
.sk-option-icon.ren   { background: linear-gradient(135deg,#E8F5E9,#C8E6C9); color: #1B5E20; }
.sk-option-icon.ladli { background: linear-gradient(135deg,#FFF8E1,#FFECB3); color: #795B00; }
.sk-option-icon.dah   { background: linear-gradient(135deg,#E8EEF8,#C8D8F0); color: #1A3C6E; }

.sk-option-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; line-height: 1.3; }
.sk-option-card p  { font-size: .83rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.5; }
.sk-option-card .sk-badge {
    font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    padding: .28rem .75rem; border-radius: 50px; margin-bottom: 1.25rem;
}

/* ── Step Indicator ────────────────────────────────────────────── */
.sk-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 0;
}
.sk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 130px;
    position: relative;
}
.sk-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(50% + 18px);
    right: calc(-50% + 18px);
    height: 2px;
    background: rgba(255,255,255,.25);
    z-index: 0;
}
.sk-step.done:not(:last-child)::after,
.sk-step.active:not(:last-child)::after { background: rgba(255,255,255,.6); }

.sk-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .83rem;
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.6);
    z-index: 1;
    transition: var(--transition);
    border: 2px solid transparent;
}
.sk-step.done   .sk-step-num { background: rgba(255,255,255,.9); color: var(--primary); border-color: #fff; }
.sk-step.active .sk-step-num { background: var(--gold); color: var(--primary-dark); border-color: var(--gold-light); box-shadow: 0 0 0 5px rgba(200,144,10,.25); }

.sk-step-label {
    font-size: .68rem;
    font-weight: 600;
    margin-top: .4rem;
    color: rgba(255,255,255,.55);
    text-align: center;
    letter-spacing: .03em;
    text-transform: uppercase;
    white-space: nowrap;
}
.sk-step.done   .sk-step-label { color: rgba(255,255,255,.85); }
.sk-step.active .sk-step-label { color: var(--gold-light); }

/* ── Cards ─────────────────────────────────────────────────────── */
.sk-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.sk-card-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 1.35rem 1.75rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}
.sk-card-header .header-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.sk-card-header h5 { margin: 0; font-weight: 700; font-size: 1rem; }
.sk-card-header p  { margin: 0; font-size: .8rem; color: rgba(255,255,255,.7); }
.sk-card-body { padding: 2rem 1.75rem; }

/* ── Form Controls ─────────────────────────────────────────────── */
.sk-form-label {
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .45rem;
}
.sk-form-control {
    border: 2px solid #C8D8F0;
    border-radius: 10px;
    padding: .65rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    width: 100%;
}
.sk-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,60,110,.10);
    background: #fff;
}
.sk-form-control.input-validation-error { border-color: var(--danger); }
.sk-form-control:focus.input-validation-error { box-shadow: 0 0 0 4px rgba(26,60,110,.10); }

.field-validation-error {
    color: var(--danger);
    font-size: .78rem;
    font-weight: 500;
    display: block;
    margin-top: .3rem;
}
.validation-summary-errors ul { list-style: none; padding: 0; margin: 0; }

/* ── Buttons ───────────────────────────────────────────────────── */
.sk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    padding: .7rem 1.75rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}
.sk-btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    box-shadow: 0 4px 18px rgba(26,60,110,.30);
}
.sk-btn-primary:hover {
    background: linear-gradient(135deg, #061428, var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26,60,110,.40);
    color: #fff;
    text-decoration: none;
}
.sk-btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--primary-dark);
    box-shadow: 0 4px 18px rgba(200,144,10,.35);
    font-weight: 700;
}
.sk-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,144,10,.48);
    color: var(--primary-dark);
    text-decoration: none;
}
.sk-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.sk-btn-outline:hover { background: var(--primary); color: #fff; }

.sk-btn-lg   { padding: .85rem 2.2rem; font-size: 1rem; border-radius: 12px; }
.sk-btn-full { width: 100%; }

/* ── Associate Banner ──────────────────────────────────────────── */
.sk-assoc-banner {
    background: linear-gradient(135deg, #EEF3FD, #D8E5FA);
    border: 1px solid #B8CFEE;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.5rem;
}
.sk-assoc-banner .assoc-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.sk-assoc-banner .assoc-info { flex: 1; }
.sk-assoc-banner .assoc-info small  { font-size: .72rem; font-weight: 600; color: var(--primary); letter-spacing: .07em; text-transform: uppercase; }
.sk-assoc-banner .assoc-info strong { display: block; font-size: .95rem; font-weight: 700; color: var(--primary-dark); }

/* ── Daughter Row ──────────────────────────────────────────────── */
.daughter-row {
    background: #F0F4FB;
    border: 1.5px solid #C8D8F0;
    border-radius: 12px;
    padding: 1.2rem 1.25rem 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    transition: var(--transition);
}
.daughter-row:hover { border-color: var(--primary); }
.daughter-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .85rem;
}
.daughter-row-title { font-size: .8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; }
.btn-remove-daughter { background: none; border: none; cursor: pointer; color: var(--danger); padding: .2rem; border-radius: 6px; transition: var(--transition); }
.btn-remove-daughter:hover { background: #E8EEF8; }

/* ── Payment Amount Box ────────────────────────────────────────── */
.sk-payment-amount {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
}
.sk-payment-amount .amount-label { font-size: .78rem; font-weight: 600; letter-spacing: .10em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.sk-payment-amount .amount-value { font-size: 2.8rem; font-weight: 800; line-height: 1.15; }
.sk-payment-amount .amount-value span { font-size: 1.4rem; font-weight: 600; vertical-align: super; margin-right: .15rem; }
.sk-payment-amount .amount-desc  { font-size: .85rem; color: rgba(255,255,255,.72); margin-top: .35rem; }

/* ── Summary Table ─────────────────────────────────────────────── */
.sk-summary-table { width: 100%; }
.sk-summary-table tr td { padding: .45rem 0; vertical-align: top; }
.sk-summary-table tr td:first-child { color: var(--text-muted); font-size: .83rem; font-weight: 500; width: 40%; padding-right: 1rem; }
.sk-summary-table tr td:last-child  { font-weight: 600; font-size: .9rem; }

/* ── Confirmation / Success ────────────────────────────────────── */
.sk-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B6B3A, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(27,107,58,.3);
}
.sk-confirm-card {
    background: linear-gradient(135deg, #F2FBF5, #E4F5E9);
    border: 1.5px solid #A8D5B5;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
}
.sk-confirm-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px dashed #B8D5C0; }
.sk-confirm-row:last-child { border-bottom: none; }
.sk-confirm-row .label { color: #4A7A5A; font-size: .82rem; font-weight: 500; }
.sk-confirm-row .value { font-weight: 700; font-size: .92rem; color: var(--primary-dark); }

/* ── Search Type Toggle ────────────────────────────────────────── */
.sk-toggle-group {
    display: flex;
    gap: .5rem;
    background: #E8EEF8;
    border-radius: 10px;
    padding: .3rem;
    margin-bottom: 1rem;
}
.sk-toggle-btn {
    flex: 1;
    text-align: center;
    padding: .55rem .5rem;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
}
.sk-toggle-btn.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(26,60,110,.12);
}

/* ── Member Found Card ─────────────────────────────────────────── */
.sk-member-card {
    background: linear-gradient(135deg, #EEF3FD, #D8E5FA);
    border: 1.5px solid #B8CFEE;
    border-radius: 12px;
    padding: 1.3rem 1.5rem;
    margin-bottom: 1.5rem;
}
.sk-member-card .member-name { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .2rem; }
.sk-member-card .member-code { font-size: .78rem; font-weight: 600; color: var(--primary); background: rgba(26,60,110,.10); display: inline-block; padding: .18rem .7rem; border-radius: 50px; }
.sk-member-meta { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .8rem; margin-top: .85rem; }
.sk-member-meta .meta-item small { display: block; font-size: .69rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.sk-member-meta .meta-item span  { font-size: .88rem; font-weight: 600; color: var(--text); }

/* ── Alert ─────────────────────────────────────────────────────── */
.sk-alert {
    border-radius: 10px;
    padding: .85rem 1.1rem;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: .65rem;
}
.sk-alert-danger  { background: #FDE8E8; color: #922B21; border: 1px solid #F5B7B1; }
.sk-alert-success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.sk-alert-info    { background: #FFF8E1; color: #795B00; border: 1px solid #FFE082; }

/* ── Razorpay secure note ──────────────────────────────────────── */
.rzp-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .75rem;
}
.rzp-secure-note i { color: var(--success); }

/* ── Footer ────────────────────────────────────────────────────── */
.sk-footer {
    background: var(--primary-dark);
    margin-top: auto;
}

/* Top section */
.sk-footer-top {
    padding: 3rem 0 2.5rem;
}

/* Brand row */
.sk-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .75rem;
}
.sk-footer-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-top:-10px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-dark);
 
}
.sk-footer-org-name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    letter-spacing: .01em;
}
.sk-footer-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.58);
    line-height: 1.7;
    margin: 0;
    max-width: 380px;
}

/* Trust badges */
.sk-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.sk-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(200,144,10,.15);
    border: 1px solid rgba(200,144,10,.30);
    padding: .28rem .75rem;
    border-radius: 50px;
    letter-spacing: .04em;
}
.sk-footer-badge i { font-size: .65rem; }

/* Section headings */
.sk-footer-heading {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1.1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(200,144,10,.25);
    display: flex;
    align-items: center;
}

/* Service links */
.sk-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.sk-footer-links li a {
    font-size: .83rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.sk-footer-links li a i {
    font-size: .6rem;
    color: var(--gold);
    opacity: .7;
    transition: var(--transition);
}
.sk-footer-links li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}
.sk-footer-links li a:hover i { opacity: 1; }

/* Trust info list */
.sk-footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.sk-footer-info li {
    font-size: .82rem;
    color: rgba(255,255,255,.62);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.sk-footer-info li i {
    width: 20px;
    font-size: .8rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Divider */
.sk-footer-divider { padding: 0; }
.sk-footer-divider-line {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200,144,10,.35) 30%,
        rgba(200,144,10,.35) 70%,
        transparent 100%);
}

/* Bottom section */
.sk-footer-bottom {
    padding: 1.1rem 0;
    background: rgba(0,0,0,.25);
}
.sk-footer-copy {
    font-size: .77rem;
    color: rgba(255,255,255,.50);
    font-weight: 400;
}
.sk-footer-copy strong { color: rgba(255,255,255,.75); font-weight: 600; }

.sk-footer-dev {
    font-size: .77rem;
    color: rgba(255,255,255,.50);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .2rem;
    justify-content: flex-end;
}
.sk-footer-dev i { color: var(--gold); font-size: .72rem; }
.sk-footer-dev a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.sk-footer-dev a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 576px) {
    .sk-footer-top       { padding: 2rem 0 1.5rem; }
    .sk-footer-org-name  { font-size: .85rem; }
    .sk-footer-dev       { justify-content: center; margin-top: .15rem; }
}

/* ── Section spacing ───────────────────────────────────────────── */
.section-pad    { padding: 3rem 0; }
.section-pad-sm { padding: 2rem 0; }

/* ── Utility ───────────────────────────────────────────────────── */
.text-gold       { color: var(--gold); }
.text-primary-sk { color: var(--primary); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 576px) {
    .sk-card-body      { padding: 1.5rem 1.15rem; }
    .sk-hero           { padding: 2.5rem 0 2rem; }
    .sk-member-meta    { grid-template-columns: 1fr; }
    .sk-step-label     { font-size: .6rem; }
    .sk-assoc-banner   { flex-wrap: wrap; }
}
