/* Kgodiso Foundation - Main Stylesheet */
/* Brand Color Scheme: Deep Green, Warm Brown, Golden Sand */

:root {
    --primary-deep-green: #3E4F45;
    --primary-dark-green: #2d3a32;
    --primary-light-green: #5a6d63;
    --secondary-warm-brown: #9C5A2F;
    --secondary-light-brown: #b8744a;
    --accent-golden: #D4A23A;
    --accent-golden-dark: #bf9425;
    --neutral-grey: #A9A19A;
    --neutral-light-grey: #E5E5E5;
    --text-charcoal: #222222;
    --text-dark-grey: #444444;
    --text-medium-grey: #777777;
    --bg-soft-beige: #F2E6DF;
    --bg-white: #FFFFFF;
    --bg-light: #f9fafb;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-charcoal);
    background-color: var(--bg-soft-beige);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(62, 79, 69, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.1rem 0;
}

.navbar {
    flex: 1;
    min-width: 0;
    margin-left: auto;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    background: var(--primary-deep-green);
    border: 0;
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(34, 34, 34, 0.16);
    gap: 1rem;
    padding: 0.45rem 0.85rem 0.45rem 0.15rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep-green);
    text-decoration: none;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-charcoal);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-deep-green);
}

.nav-links a.active {
    color: var(--secondary-warm-brown);
    border-bottom: 2px solid var(--secondary-warm-brown);
    padding-bottom: 0.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--secondary-warm-brown) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-deep-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-warm-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 90, 47, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-warm-brown);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--accent-golden);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 162, 58, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Explore button (bubble) */
.btn-explore {
    display:inline-flex; align-items:center; gap:0.5rem;
    background: linear-gradient(180deg,var(--accent-golden),var(--accent-golden-dark));
    color: white; padding:0.45rem 0.85rem; border-radius:999px; font-weight:700; box-shadow:0 8px 20px rgba(212,162,58,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration:none;
}
.btn-explore:hover { transform:translateY(-4px) scale(1.02); box-shadow:0 16px 30px rgba(212,162,58,0.22); }
.btn-explore:active { transform:translateY(-1px); }

/* Light button (secondary-inverse) */
.btn-light {
    background: white;
    color: var(--primary-dark-green);
    border: 1px solid rgba(34,34,34,0.06);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(34,34,34,0.08); }

/* Modal action card */
.action-card { display:flex; gap:1rem; align-items:flex-start; padding:0.75rem; border-radius:8px; background: linear-gradient(180deg, rgba(245,245,245,0.6), rgba(255,255,255,0.6)); border:1px solid rgba(62,79,69,0.04); }
.action-card .thumbnail { width:64px; height:64px; border-radius:8px; background:var(--neutral-light-grey); display:flex; align-items:center; justify-content:center; color:var(--text-medium-grey); font-weight:700; }
.action-card .action-body { flex:1; }
.action-card .action-title { font-weight:700; color:var(--primary-deep-green); margin-bottom:0.25rem; }
.action-card .action-sub { color:var(--text-medium-grey); font-size:0.95rem; margin-bottom:0.5rem; }
.action-card .action-buttons { display:flex; gap:0.5rem; }
.status-editor-card { align-items: stretch; }
.status-editor {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr auto;
    align-items: end;
}
.status-editor-label {
    grid-column: 1 / -1;
    color: var(--text-medium-grey);
    font-size: 0.88rem;
    font-weight: 700;
}
.status-editor select {
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(62,79,69,0.15);
    background: var(--bg-white);
    color: var(--text-dark-grey);
    font: inherit;
}
.status-editor select:focus {
    outline: none;
    border-color: var(--secondary-warm-brown);
    box-shadow: 0 0 0 4px rgba(212, 162, 58, 0.14);
}
.status-editor .status-save { white-space: nowrap; }
.modal .modal-actions .btn { padding:0.6rem 0.9rem; font-size:0.95rem; }

/* primary full-width style override */
.modal .btn-primary { border-radius:10px; padding:0.9rem 1rem; font-size:1rem; }

/* Cards */
.card {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 2px 8px rgba(62, 79, 69, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-left 0.3s;
    border-left: 4px solid transparent;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(62, 79, 69, 0.15);
    border-left-color: var(--secondary-warm-brown);
}

.card h3 {
    color: var(--primary-deep-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.kpi { padding: 0.6rem 0.75rem; border-radius: 8px; background: linear-gradient(180deg, #fff, #fff); box-shadow: 0 2px 6px rgba(0,0,0,0.04); display:flex; flex-direction:column; align-items:flex-start; gap:0.25rem; }

.kpi-value { font-size: 1.25rem; font-weight:800; color:var(--primary-deep-green); }

.kpi-label { color:var(--text-medium-grey); font-size:0.85rem; }

.kpi-toggle { background:transparent; border:0; color:var(--text-medium-grey); cursor:pointer; font-size:0.9rem; padding:0.25rem 0.5rem; }
.kpi-toggle:hover { color:var(--primary-deep-green); }

/* Confirm modal */
.confirm-modal { position: fixed; inset: 0; display:flex; align-items:center; justify-content:center; z-index:11000; }
.confirm-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.45); }
.confirm-box { position:relative; z-index:11001; width:420px; max-width:94%; background:var(--bg-white); border-radius:10px; padding:1.25rem; box-shadow:0 12px 40px rgba(0,0,0,0.2); }
.confirm-box h4 { margin-bottom:0.5rem; color:var(--primary-deep-green); }
.confirm-box p { color:var(--text-dark-grey); margin-bottom:1rem; }
.confirm-actions { display:flex; gap:0.5rem; justify-content:flex-end; }
.confirm-actions .btn { min-width:96px; }

/* Button icon spacing */
.btn svg { vertical-align:middle; margin-right:0.45rem; height:1rem; width:1rem; }
label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-charcoal);
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-light-grey);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--bg-soft-beige);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-deep-green);
    box-shadow: 0 0 0 3px rgba(62, 79, 69, 0.1);
}

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

/* Footer */
footer {
    background-color: var(--primary-deep-green);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-golden);
    font-weight: 700;
}

.footer-section p {
    color: #d4d4d4;
    font-size: 0.95rem;
}

.footer-section a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-golden);
}

/* Admin modal for details */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.modal-content {
    position: relative;
    z-index: 10000;
    max-width: 820px;
    width: 94%;
    padding: 1.5rem;
}
.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    border: 0;
    font-size: 1.6rem;
    cursor: pointer;
}
.modal dl { display: grid; grid-template-columns: 180px 1fr; gap: 0.5rem 1rem; }
.modal dt { font-weight: 700; color: var(--primary-deep-green); }
.modal dd { margin: 0 0 0.5rem 0; color: var(--text-dark-grey); }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.28rem 0.6rem; border-radius: 999px; font-weight:700; font-size:0.85rem; }
.badge--approved { background: rgba(16,185,129,0.12); color: var(--success); border: 1px solid rgba(16,185,129,0.18); }
.badge--pending { background: rgba(212,162,58,0.08); color: var(--accent-golden); border: 1px solid rgba(212,162,58,0.12); }
.badge--declined { background: rgba(239,68,68,0.08); color: var(--danger); border: 1px solid rgba(239,68,68,0.12); }
.badge--contacted { background: rgba(59,130,246,0.08); color: #2563eb; border: 1px solid rgba(59,130,246,0.12); }
.badge--new { background: rgba(99,102,241,0.06); color: #6b21a8; border: 1px solid rgba(99,102,241,0.08); }

/* Modal layout improvements */
.modal-content { padding: 1.5rem 1.25rem; border-radius: 12px; }
.modal .modal-header { display:flex; align-items:center; gap:1rem; margin-bottom:1rem; }
.modal .modal-header .meta { color: var(--text-medium-grey); font-size:0.95rem; }
.modal .modal-body { max-height:60vh; overflow:auto; padding-right:0.5rem; }
.modal .modal-actions { display:flex; gap:0.5rem; align-items:center; margin-top:0.75rem; }
.modal .modal-primary { width:100%; margin-top:0.5rem; }

/* Small inline icon */
.icon-sm { width:18px; height:18px; display:inline-block; vertical-align:middle; }


.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: #b0b0b0;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
    border-radius: 0.25rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left-color: var(--success);
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left-color: var(--danger);
}

.alert-warning {
    background-color: #fef3c7;
    color: #78350f;
    border-left-color: var(--warning);
}

.alert-info {
    background-color: #dbeafe;
    color: #0c2340;
    border-left-color: var(--primary-deep-green);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        display: block;
        margin: 0.5rem 0;
    }
}

/* FAQ / Chat widget (floating) */
.kf-widget { position: fixed; right: 16px; bottom: 16px; z-index: 12000; font-family: inherit; }
.kf-widget .kf-toggle { width:58px; height:58px; border-radius:999px; background: linear-gradient(180deg,var(--accent-golden),var(--accent-golden-dark)); color: #1a1a1a; border:0; box-shadow: 0 10px 30px rgba(34,34,34,0.18); display:flex; align-items:center; justify-content:center; font-size:1.35rem; cursor:grab; transition:transform .12s ease, box-shadow .12s ease, filter .12s ease; position:relative; }
.kf-widget .kf-toggle:active { cursor:grabbing; }
.kf-widget .kf-toggle:hover { filter: brightness(1.03); box-shadow: 0 14px 34px rgba(34,34,34,0.22); }
.kf-widget .kf-drag-icon { position:absolute; top:-8px; right:-6px; width:22px; height:22px; border-radius:999px; background:var(--bg-white); color:var(--primary-deep-green); display:flex; align-items:center; justify-content:center; font-size:0.7rem; box-shadow:0 4px 12px rgba(0,0,0,0.12); }
.kf-widget .kf-toggle-icon { transform: translateY(1px); }
.kf-widget .kf-toggle[aria-pressed="true"] { transform: scale(0.98); box-shadow: 0 6px 18px rgba(34,34,34,0.12); }
.kf-widget .kf-panel { position:fixed; width:352px; max-width:calc(100vw - 32px); height:500px; background:var(--bg-white); border-radius:14px; box-shadow: 0 18px 60px rgba(16,24,32,0.28); overflow:hidden; display:flex; flex-direction:column; transform-origin: bottom right; transition: transform .18s ease, opacity .18s ease; opacity:0; transform: translateY(8px) scale(.98); pointer-events:none; }
.kf-widget .kf-panel[aria-hidden="false"] { opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
.kf-widget .kf-header { padding:12px 12px 12px 14px; background: linear-gradient(90deg,var(--primary-deep-green),var(--secondary-warm-brown)); color: white; font-weight:700; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.kf-widget .kf-header-title { font-size:1rem; letter-spacing:0.01em; }
.kf-widget .kf-close { width:34px; height:34px; border-radius:999px; border:0; background:rgba(255,255,255,0.14); color:white; font-size:1.2rem; line-height:1; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; }
.kf-widget .kf-close:hover { background:rgba(255,255,255,0.22); }
.kf-widget .kf-suggestions { padding:12px; border-bottom:1px solid rgba(0,0,0,0.04); background: linear-gradient(180deg, rgba(250,250,250,0.98), rgba(245,245,245,0.98)); }
.kf-widget .kf-hint { font-weight:700; color:var(--text-medium-grey); margin-bottom:6px; }
.kf-widget .kf-list { display:flex; flex-direction:column; gap:6px; }
.kf-widget .kf-item { background:transparent; border:1px solid rgba(0,0,0,0.05); padding:9px 10px; border-radius:10px; text-align:left; cursor:pointer; font-weight:600; color:var(--primary-dark-green); }
.kf-widget .kf-item:hover { background: rgba(62,79,69,0.03); }
.kf-widget .kf-body { padding:12px; overflow:auto; flex:1; }
.kf-widget .kf-question { font-weight:700; margin-bottom:8px; color:var(--primary-deep-green); }
.kf-widget .kf-answer { color:var(--text-dark-grey); line-height:1.45; }
.kf-widget .kf-actions { padding:10px; border-top:1px solid rgba(0,0,0,0.04); display:flex; justify-content:flex-end; }
.kf-widget .kf-send-message { background:var(--primary-deep-green); color:white; border-radius:999px; padding:9px 14px; border:0; cursor:pointer; font-weight:700; }
.kf-widget .kf-send-message:hover { background:var(--secondary-warm-brown); }
.kf-widget .kf-lead-form label { display:block; margin-bottom:8px; }
.kf-widget .kf-lead-form input, .kf-widget .kf-lead-form textarea { background:#fff; border:1px solid rgba(34,34,34,0.06); }
.kf-widget .kf-thanks { text-align:center; padding:24px; font-weight:700; color:var(--primary-deep-green); }
.kf-widget .kf-mode-message .kf-suggestions { display:none; }
.kf-widget .kf-mode-faq .kf-suggestions { display:none; }
.kf-widget .kf-mode-faq .kf-body { padding-top: 4px; }
.kf-widget .kf-detail-topbar { display:flex; align-items:center; justify-content:flex-start; margin-bottom:10px; }
.kf-widget .kf-detail-topbar .kf-back { background:transparent; border:0; color:var(--primary-deep-green); font-weight:800; cursor:pointer; padding:0; }
.kf-widget .kf-form-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.kf-widget .kf-back { background:transparent; border:0; color:var(--primary-deep-green); font-weight:800; cursor:pointer; padding:0; }
.kf-widget .kf-cancel { background:transparent; border:0; color:var(--text-medium-grey); font-size:1.35rem; line-height:1; cursor:pointer; width:34px; height:34px; border-radius:999px; }
.kf-widget .kf-cancel:hover { background:rgba(0,0,0,0.04); }
.kf-widget .kf-form-intro { color:var(--text-dark-grey); font-size:0.96rem; margin-bottom:12px; }
.kf-widget .kf-form-actions { display:flex; justify-content:flex-end; margin-top:12px; }
.kf-widget .kf-submit { background:var(--accent-golden); color:#1b1b1b; border:0; border-radius:999px; padding:10px 14px; font-weight:800; cursor:pointer; }
.kf-widget .kf-submit:hover { background:var(--accent-golden-dark); }

@media (max-width: 520px){
    .kf-widget { right:12px; bottom:12px; }
    .kf-widget .kf-panel { width:calc(100vw - 24px); height:430px; }
}

/* Live-site inspired homepage refresh */
:root {
    --primary-blue: var(--primary-deep-green);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-white);
}

.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(62, 79, 69, 0.1);
    padding: 0.35rem 0;
    backdrop-filter: none;
}

.navbar {
    background: var(--primary-deep-green);
    border: 0;
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(34, 34, 34, 0.16);
    gap: 1rem;
    padding: 0.45rem 0.85rem 0.45rem 0.15rem;
}

.brand,
.footer-brand {
    align-items: center;
    color: var(--bg-white);
    display: inline-flex;
    font-weight: 800;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 104px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
    transition: transform 0.25s ease, filter 0.25s ease;
    transform-origin: left center;
}

.brand:hover .brand-logo {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2));
}

.nav-links {
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
}

.nav-links a {
    border-radius: 999px;
    color: var(--bg-white);
    display: inline-flex;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.75rem 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(156, 90, 47, 0.35);
    border-bottom: 0;
    color: var(--accent-golden);
    padding-bottom: 0.75rem;
}

/* User menu */
.nav-user { list-style: none; }
.user-menu { position: relative; }
.user-toggle { background: transparent; border: 0; color: var(--bg-white); padding: 0.5rem 0.75rem; border-radius: 8px; cursor: pointer; }
.user-dropdown { position: absolute; right: 0; top: 44px; background: var(--bg-white); color: var(--text-charcoal); border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); display: none; min-width: 160px; z-index: 50; }
.user-dropdown a { display: block; padding: 0.6rem 0.9rem; color: inherit; text-decoration: none; }
.user-dropdown a:hover { background: rgba(62,79,69,0.03); }
.user-menu.open .user-dropdown { display: block; }

.btn.btn-login {
    background: var(--secondary-warm-brown);
    color: var(--bg-white);
    padding: 0.78rem 1.15rem;
}

.btn.btn-login:hover {
    background: var(--accent-golden);
    color: var(--text-charcoal);
}

.nav-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    flex: 0 0 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
}

.nav-toggle span {
    background: var(--bg-white);
    border-radius: 999px;
    display: block;
    height: 2px;
    margin: 3px 0;
    width: 18px;
}

.home-hero {
    background: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--secondary-warm-brown) 100%);
    min-height: 580px;
    padding: 7rem 0 6rem;
}

.hero-content {
    margin: 0 auto;
    max-width: 900px;
}

.home-hero h1 {
    color: var(--accent-golden);
    font-size: 4.75rem;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.hero-tagline {
    color: var(--bg-white);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.22;
    margin: 0 auto 1rem;
    max-width: 850px;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    margin: 0 auto 2.25rem;
    max-width: 760px;
}

/* Social Circle dashboard section */
.social-circle-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(212, 162, 58, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(62, 79, 69, 0.12), transparent 34%),
        linear-gradient(180deg, #eef4f0 0%, #f7faf8 100%);
}

.social-circle-shell {
    position: relative;
    padding: 1rem;
}

.social-circle-shell.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.social-circle-shell.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.social-circle-card {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, rgba(8, 43, 31, 0.92), rgba(27, 62, 50, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(15, 25, 21, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.social-circle-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: stretch;
}

.social-circle-carousel {
    position: relative;
    min-height: 560px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-carousel-frame {
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.social-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.social-carousel-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    opacity: 0.65;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.9s ease;
}

.social-carousel-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.social-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.social-carousel-slide::after {
    content: ';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 15, 0.04), rgba(8, 18, 15, 0.24));
    pointer-events: none;
}

.social-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.social-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.social-carousel-arrow.prev { left: 14px; }
.social-carousel-arrow.next { right: 14px; }

.social-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 8px;
    z-index: 2;
}

.social-carousel-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.social-carousel-dots button.is-active {
    width: 26px;
    background: var(--accent-golden);
    transform: scale(1.02);
}

.social-circle-content {
    padding: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.15rem;
}

.social-live-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.social-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 0 0 rgba(212, 162, 58, 0.35);
    animation: livePulse 2.2s infinite;
}

.social-live-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #68ff95;
    box-shadow: 0 0 14px rgba(104, 255, 149, 0.8);
}

.social-story-label,
.social-timestamp {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.social-circle-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.1vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.social-circle-copy {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 56ch;
}

.social-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.reaction-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 999px;
    padding: 0.72rem 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.reaction-pill i {
    color: var(--accent-golden);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.reaction-pill:hover,
.reaction-pill:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16), 0 0 28px rgba(212, 162, 58, 0.12);
    background: rgba(255, 255, 255, 0.14);
}

.reaction-pill:hover i,
.reaction-pill:focus-visible i {
    transform: scale(1.12);
    filter: drop-shadow(0 0 10px rgba(212, 162, 58, 0.55));
}

.reaction-pill.is-saved i {
    color: #f6dc8f;
}

.reaction-pill.is-liked {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(104, 255, 149, 0.32);
}

.reaction-pill.is-liked i {
    color: #68ff95;
    filter: drop-shadow(0 0 10px rgba(104, 255, 149, 0.5));
}

.social-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.social-btn {
    border-radius: 999px;
    padding-inline: 1.25rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.social-btn:hover,
.social-btn:focus-visible {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(212, 162, 58, 0.14);
}

.social-circle-bg,
.social-circle-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.social-circle-bg-1,
.social-circle-bg-2 {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.45;
    animation: floatGlow 12s ease-in-out infinite;
}

.social-circle-bg-1 {
    top: -40px;
    left: -40px;
    background: rgba(212, 162, 58, 0.22);
}

.social-circle-bg-2 {
    right: -50px;
    bottom: -60px;
    background: rgba(104, 175, 132, 0.18);
    animation-delay: -4s;
}

.social-circle-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    animation: particleRise 9s linear infinite;
}

.social-circle-particles span:nth-child(1) { left: 18%; bottom: 12%; animation-delay: 0s; }
.social-circle-particles span:nth-child(2) { left: 33%; bottom: 30%; animation-delay: 1.8s; }
.social-circle-particles span:nth-child(3) { left: 68%; bottom: 18%; animation-delay: 3.2s; }
.social-circle-particles span:nth-child(4) { left: 80%; bottom: 35%; animation-delay: 4.6s; }
.social-circle-particles span:nth-child(5) { left: 54%; bottom: 8%; animation-delay: 6s; }

@keyframes floatGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(16px, 18px, 0) scale(1.05); }
}

@keyframes particleRise {
    0% { transform: translateY(0) scale(0.7); opacity: 0; }
    20% { opacity: 0.55; }
    80% { opacity: 0.35; }
    100% { transform: translateY(-120px) scale(1); opacity: 0; }
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 162, 58, 0.28); }
    50% { box-shadow: 0 0 0 10px rgba(212, 162, 58, 0); }
}

.hero-actions,
.center-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
}

.btn-secondary {
    background: var(--secondary-warm-brown);
    color: var(--bg-white);
}

.btn-light {
    background: var(--bg-white);
    color: var(--primary-deep-green);
}

.btn-gold {
    background: var(--accent-golden);
    color: var(--text-charcoal);
}

.btn-light:hover,
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(34, 34, 34, 0.16);
}

.section {
    padding: 5rem 0;
}

.section-white {
    background: var(--bg-white);
}

.section-beige {
    background: var(--bg-soft-beige);
}

.split-layout {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.split-layout h2,
.section-heading h2,
.final-cta h2 {
    color: var(--primary-deep-green);
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.split-layout p,
.section-heading p,
.partner-card p,
.volunteer-card p,
.value-card p,
.final-cta p {
    color: var(--text-dark-grey);
    font-size: 1.04rem;
}

.split-layout p + p {
    margin-top: 1rem;
}

.eyebrow {
    color: var(--secondary-warm-brown);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mission-box {
    background: var(--bg-white);
    border-left: 6px solid var(--secondary-warm-brown);
    border-radius: 8px;
    box-shadow: 0 16px 35px rgba(62, 79, 69, 0.12);
    padding: 2rem;
}

.mission-box h3,
.partner-card h3 {
    color: var(--primary-deep-green);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.section-heading {
    margin: 0 auto 2.5rem;
    max-width: 820px;
    text-align: center;
}

.section-heading.light h2,
.section-heading.light p {
    color: var(--bg-white);
}

.impact-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.partner-card {
    background: var(--bg-white);
    border: 1px solid rgba(62, 79, 69, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(34, 34, 34, 0.08);
    min-height: 190px;
    padding: 1.75rem;
    text-align: center;
}

.metric-icon {
    display: block;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.metric-card strong {
    color: var(--accent-golden);
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-card span:last-child {
    color: var(--primary-deep-green);
    font-weight: 800;
}

.values-section {
    background: var(--primary-deep-green);
}

.values-grid,
.partner-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
    background: var(--secondary-warm-brown);
    border-radius: 8px;
    min-height: 210px;
    padding: 2rem;
}

.value-card h3,
.value-card p {
    color: var(--bg-white);
}

.value-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.partner-grid {
    margin-bottom: 2rem;
}

.volunteer-section {
    background: linear-gradient(135deg, var(--secondary-warm-brown) 0%, var(--primary-deep-green) 100%);
}

.volunteer-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 2rem;
}

.volunteer-card {
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--accent-golden);
    border-radius: 8px;
    min-height: 220px;
    padding: 1.5rem;
}

.volunteer-card h3,
.volunteer-card p {
    color: var(--bg-white);
}

.volunteer-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.8rem;
}

.final-cta {
    background: var(--primary-deep-green);
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: var(--bg-white);
}

.final-cta p {
    margin: 0 auto 1.75rem;
    max-width: 720px;
}

.site-footer {
    background: #0e0e0e;
    border-top: 5px solid var(--accent-golden);
    margin-top: 0;
    padding: 3.5rem 0 1.25rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-golden);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section {
    color: var(--text-medium-grey);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-medium-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-golden);
}

.footer-section p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-items {
    margin-bottom: 1.5rem;
}

.footer-contact-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-links a {
    align-items: center;
    background: rgba(212, 162, 58, 0.15);
    border: 1px solid rgba(212, 162, 58, 0.3);
    border-radius: 50%;
    color: var(--accent-golden);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background: var(--accent-golden);
    color: #0e0e0e;
}

.footer-divider {
    border-top: 1px solid rgba(212, 162, 58, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: var(--text-medium-grey);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom p:first-child {
    margin-bottom: 0.25rem;

/* Footer icon sizing and styling */
.footer-contact-icon svg,
.footer-social-links svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.footer-contact-items p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.45rem 0;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-right: 0.5rem;
    color: inherit;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
}

.footer-social-links a svg {
    width: 18px;
    height: 18px;
}

/* Hover and interaction styles for footer icons */
.footer-social-links a {
    transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
    transform: translateY(-3px) scale(1.06);
    background: rgba(255,255,255,0.09);
    color: var(--accent-golden);
}

.footer-social-links a:focus {
    outline: 2px solid rgba(255,255,255,0.12);
    outline-offset: 2px;
}

/* Slightly larger icons for better legibility */
.footer-contact-icon svg,
.footer-social-links svg {
    width: 20px;
    height: 20px;
}

/* FAQ chat widget styles */
.kf-widget { position: fixed; right: 18px; bottom: 18px; z-index: 9999; font-family: inherit; }
.kf-toggle { background: var(--primary-deep-green); color: #fff; border: 0; width:48px; height:48px; border-radius: 50%; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.kf-panel { width: 320px; max-width: calc(100vw - 48px); background: var(--bg-white); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,0.18); overflow: hidden; margin-bottom: 8px; display: none; }
.kf-panel[aria-hidden="false"] { display: block; }
.kf-header { background: var(--primary-deep-green); color: #fff; padding: 12px 14px; font-weight: 700; }
.kf-suggestions { padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.kf-list { display:flex; flex-direction:column; gap:8px; }
.kf-item { background: rgba(0,0,0,0.03); border:0; padding:8px; border-radius:8px; text-align:left; cursor:pointer; }
.kf-body { padding: 12px 14px; max-height: 260px; overflow:auto; }
.kf-question { font-weight:700; margin-bottom:6px; }
.kf-answer { color: var(--text-dark-grey); }
.kf-actions { padding: 10px 14px; border-top: 1px solid rgba(0,0,0,0.04); display:flex; justify-content:flex-end; }
.kf-send-message { background: var(--secondary-warm-brown); color:#fff; border:0; padding:8px 12px; border-radius:8px; cursor:pointer; }
.kf-lead-form input,.kf-lead-form textarea { width:100%; padding:8px; border:1px solid #e6e6e6; border-radius:6px; }
.kf-lead-form label { display:block; font-size:0.9rem; margin-bottom:8px; }
.kf-thanks { padding: 12px; font-weight:700; }
}

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-links a {
    align-items: center;
    background: rgba(212, 162, 58, 0.16);
    border: 1px solid rgba(212, 162, 58, 0.45);
    border-radius: 50%;
    color: var(--accent-golden);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    text-transform: uppercase;
    width: 38px;
}

.social-links a:hover {
    background: var(--accent-golden);
    color: var(--text-charcoal);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--secondary-warm-brown) 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-golden);
}

.contact-hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 3rem 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: none;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-details-panel {
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 24px;
    background: #fefcf8;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 162, 58, 0.18);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    padding: 2rem;
    border-radius: 8px;
    background-color: #ffffff;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(62, 79, 69, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: var(--primary-deep-green);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-card a {
    color: var(--secondary-warm-brown);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary-deep-green);
}

.contact-form-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
}

.contact-form-shell {
    max-width: 620px;
    margin: 0 auto;
}

.contact-form-shell .contact-form-section {
    box-shadow: 0 14px 32px rgba(62, 79, 69, 0.14);
    border: 1px solid rgba(212, 162, 58, 0.26);
}

.contact-form-shell .contact-form-section::before {
    content: ';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-warm-brown), var(--accent-golden));
}

.contact-form-section h2 {
    color: var(--primary-deep-green);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.8px solid rgba(212, 162, 58, 0.55);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--text-charcoal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-warm-brown);
    box-shadow: 0 0 0 4px rgba(212, 162, 58, 0.14);
    transform: translateY(-1px);
}

.contact-form .btn {
    align-self: center;
    margin-top: 0.35rem;
    min-width: 160px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Admin Dashboard Styles */
.admin-dashboard .admin-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.75rem;
    align-items: start;
}
.admin-sidebar {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 28px rgba(34,34,34,0.06);
    border: 1px solid rgba(62,79,69,0.04);
}
.admin-profile { text-align: center; margin-bottom: 1rem; }
.admin-avatar { width: 72px; height:72px; border-radius:999px; object-fit:cover; display:block; margin:0 auto 0.5rem; }
.admin-nav ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.25rem; }
.admin-nav a { display:block; padding:0.6rem 0.8rem; color:var(--text-dark-grey); text-decoration:none; border-radius:8px; font-weight:600; }
.admin-nav a.active, .admin-nav a:hover { background: rgba(62,79,69,0.04); color:var(--primary-deep-green); }
.admin-main { min-height: 320px; }
.admin-header h1 { font-size:1.75rem; color:var(--primary-deep-green); margin-bottom:0.25rem; }
.admin-header .muted { color:var(--text-medium-grey); margin-bottom:1rem; }
.admin-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:1rem; margin:1rem 0 2rem; }
.admin-card { padding:1.25rem; text-align:left; }
.admin-card h3 { margin-bottom:0.5rem; }
.admin-recent h2 { margin-bottom:1rem; color:var(--primary-deep-green); }
.admin-table { width:100%; border-collapse: collapse; font-size:0.95rem; }
.admin-table th, .admin-table td { padding:0.75rem 0.85rem; text-align:left; border-bottom:1px solid rgba(62,79,69,0.06); }
.admin-table thead th { background: rgba(0,0,0,0.02); font-weight:700; }

/* Admin Analytics */
.admin-analytics-page {
    padding: 2.5rem 0 4rem;
}

.analytics-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.4rem 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(62, 79, 69, 0.96), rgba(156, 90, 47, 0.94));
    color: var(--bg-white);
    box-shadow: 0 20px 44px rgba(34, 34, 34, 0.14);
}

.analytics-kicker {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-golden);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.analytics-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.analytics-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

.analytics-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    font-weight: 700;
    white-space: nowrap;
}

.analytics-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.analytics-metric-card,
.analytics-panel {
    background: var(--bg-white);
    border: 1px solid rgba(62, 79, 69, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(34, 34, 34, 0.07);
}

.analytics-metric-card {
    padding: 1.15rem 1.1rem;
    position: relative;
    overflow: hidden;
}

.analytics-metric-card::after {
    content: ';
    position: absolute;
    inset: auto -18px -18px auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(212, 162, 58, 0.12);
}

.analytics-metric-card .metric-label {
    display: inline-flex;
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-medium-grey);
}

.analytics-metric-card strong {
    display: block;
    font-size: clamp(1.9rem, 2.2vw, 2.65rem);
    line-height: 1;
    color: var(--primary-deep-green);
}

.analytics-metric-card p {
    margin-top: 0.6rem;
    color: var(--text-medium-grey);
    font-size: 0.94rem;
}

.accent-green { border-top: 5px solid var(--primary-deep-green); }
.accent-brown { border-top: 5px solid var(--secondary-warm-brown); }
.accent-gold { border-top: 5px solid var(--accent-golden); }
.accent-neutral { border-top: 5px solid var(--neutral-grey); }
.accent-rose { border-top: 5px solid #cc6f7a; }

.analytics-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.analytics-grid-main {
    grid-template-columns: 1.7fr 1fr;
}

.analytics-grid-breakdowns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.analytics-grid-insights {
    grid-template-columns: 1fr 1fr;
}

.analytics-panel {
    padding: 1.25rem;
}

.analytics-panel-wide {
    min-height: 420px;
}

.analytics-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.analytics-panel-head h2,
.analytics-panel h3 {
    color: var(--primary-deep-green);
    margin-bottom: 0.25rem;
}

.analytics-panel-head p,
.insight-panel p,
.info-panel li {
    color: var(--text-medium-grey);
}

.chart-wrap {
    position: relative;
    min-height: 280px;
}

.chart-wrap-lg {
    min-height: 360px;
}

.chart-wrap-sm {
    min-height: 240px;
}

.breakdown-card h3 {
    margin-bottom: 0.75rem;
}

.insight-list {
    display: grid;
    gap: 0.8rem;
}

.insight-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #faf7f3, #ffffff);
    border: 1px solid rgba(62, 79, 69, 0.06);
}

.insight-list span {
    color: var(--text-dark-grey);
    font-weight: 600;
}

.insight-list strong {
    color: var(--secondary-warm-brown);
    font-size: 1.1rem;
}

.info-panel ul {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
}

.info-panel li + li {
    margin-top: 0.6rem;
}

@media (max-width: 1100px) {
    .analytics-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .analytics-grid-main,
    .analytics-grid-insights {
        grid-template-columns: 1fr;
    }

    .analytics-grid-breakdowns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .analytics-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .analytics-metrics-grid,
    .analytics-grid-breakdowns {
        grid-template-columns: 1fr;
    }

    .analytics-panel,
    .analytics-hero {
        padding: 1rem;
    }

    .chart-wrap-lg {
        min-height: 300px;
    }
}

@media (max-width: 900px) {
    .admin-dashboard .admin-wrapper { grid-template-columns: 1fr; }
    .admin-sidebar { order: 2; }
}

/* Success Stories Page Styles */
.success-stories-hero {
    background: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--secondary-warm-brown) 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.success-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-golden);
}

.success-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.success-stories-section {
    padding: 3rem 0;
    background-color: var(--bg-white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-soft-beige);
    box-shadow: 0 4px 12px rgba(62, 79, 69, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(62, 79, 69, 0.15);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--neutral-light-grey);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-content h3 {
    color: var(--primary-deep-green);
    font-size: 1.2rem;
    line-height: 1.4;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.36em;
}

.story-emphasis {
    color: var(--secondary-warm-brown);
    font-style: italic;
    font-size: 0.9rem;
}

.story-description {
    color: var(--text-dark-grey);
    font-size: 0.95rem;
    flex: 1;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background-color: rgba(62, 79, 69, 0.1);
    color: var(--primary-deep-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

body.no-scroll {
    overflow: hidden;
}

.story-card {
    min-height: 100%;
}

.story-learn-more {
    align-self: flex-start;
    margin-top: auto;
}

.story-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 1000;
}

.story-modal.is-open {
    display: flex;
}

.story-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 31, 27, 0.72);
    backdrop-filter: blur(6px);
}

.story-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(92vh, 920px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 28px;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.story-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.6rem;
    height: 2.6rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-deep-green);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.story-modal-media {
    background: #111713;
}

.story-carousel {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
}

.story-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
}

.story-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
}

.story-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary-deep-green);
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.story-carousel-prev {
    left: 1rem;
}

.story-carousel-next {
    right: 1rem;
}

.story-carousel-count {
    position: absolute;
    left: 1rem;
    bottom: 4.3rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(17, 23, 19, 0.72);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.story-carousel-dots {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.story-carousel-dot {
    width: 0.7rem;
    height: 0.7rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.story-carousel-dot.is-active {
    width: 1.6rem;
    background: var(--accent-golden);
}

.story-modal-content {
    padding: 2.25rem;
    overflow: visible;
}

.story-modal-content h2 {
    color: var(--primary-deep-green);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1.25;
}

.story-date {
    color: var(--secondary-warm-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-modal-description {
    color: var(--text-dark-grey);
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.75rem;
}

.story-modal-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    background: rgba(62, 79, 69, 0.09);
    color: var(--primary-deep-green);
    font-size: 0.82rem;
    font-weight: 600;
}

.story-modal-close-button {
    align-self: flex-start;
}

@media (max-width: 1060px) {
    .nav-links a {
        font-size: 0.88rem;
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .impact-grid,
    .volunteer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-modal-dialog {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }

    .story-carousel {
        min-height: 320px;
    }
}

@media (max-width: 820px) {
    .site-header .container,
    .header-inner {
        flex-wrap: nowrap;
    }

    .header-inner {
        gap: 0.5rem;
    }

    .navbar {
        width: auto;
        flex: 1 1 auto;
        border-radius: 22px;
        flex-wrap: wrap;
        position: relative;
        padding: 0.4rem 0.65rem 0.4rem 0.2rem;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .nav-links {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0.35rem;
        padding: 0.75rem 0 0.25rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li,
    .nav-links a {
        width: 100%;
    }

    .nav-links a {
        justify-content: center;
    }

    .home-hero {
        min-height: auto;
        padding: 5rem 0;
    }

    .home-hero h1 {
        font-size: 3.1rem;
    }

    .hero-tagline {
        font-size: 1.35rem;
    }

    .split-layout h2,
    .section-heading h2,
    .final-cta h2 {
        font-size: 2.15rem;
    }

    .metric-card strong {
        font-size: 2.45rem;
    }

    .hero-actions .btn,
    .center-actions .btn {
        display: inline-flex;
        margin: 0;
        width: auto;
    }

    .split-layout,
    .values-grid,
    .partner-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .brand-logo {
        height: 80px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .contact-hero-content h1,
    .success-hero-content h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-details-panel {
        padding: 1.25rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-modal {
        padding: 0.75rem;
    }

    .story-modal-content {
        padding: 1.5rem;
    }

    .story-modal-content h2 {
        font-size: 1.55rem;
    }

    .story-carousel {
        min-height: 0;
        height: 34vh;
        max-height: 260px;
    }

    .story-carousel-nav {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1.1rem;
    }

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

    .home-hero h1 {
        font-size: 2.65rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .split-layout h2,
    .section-heading h2,
    .final-cta h2 {
        font-size: 1.9rem;
    }

    .impact-grid,
    .volunteer-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        display: inline-flex;
        justify-content: center;
        margin: 0;
        width: 100%;
    }
}

/* React source page translations */
.page-hero {
    background: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--secondary-warm-brown) 100%);
    color: var(--bg-white);
    padding: 4.5rem 0;
    text-align: center;
}

.page-hero.compact {
    border-radius: 24px;
    margin: 0 1rem 2rem;
}

.page-hero h1,
.section-heading h1 {
    color: inherit;
    font-size: 3.1rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-hero p,
.section-heading p {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.page-section {
    padding: 4.5rem 0;
}

.page-beige {
    background: var(--bg-soft-beige);
}

.page-light {
    background: #f9fafb;
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.auth-gate,
.form-panel,
.wide-panel,
.contact-strip,
.support-panel {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(34, 34, 34, 0.08);
    padding: 2rem;
}

.feature-card {
    min-height: 220px;
    text-align: center;
}

.feature-card.left-accent {
    background: var(--bg-soft-beige);
    border-left: 4px solid var(--accent-golden);
    text-align: left;
}

.feature-icon {
    color: var(--accent-golden);
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-card h2,
.feature-card h3,
.wide-panel h2,
.wide-panel h3,
.form-panel h2,
.form-panel h3,
.auth-gate h2,
.support-panel h3 {
    color: var(--primary-deep-green);
    margin-bottom: 0.8rem;
}

.lift-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lift-card:hover {
    box-shadow: 0 18px 38px rgba(34, 34, 34, 0.12);
    transform: translateY(-6px);
}

.value-tile {
    background: var(--bg-white);
    border-radius: 8px;
    border-top: 5px solid var(--secondary-warm-brown);
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.08);
    min-height: 160px;
    padding: 1.5rem;
    text-align: center;
}

.value-tile strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.value-tile.brown {
    border-top-color: var(--secondary-warm-brown);
}

.value-tile.brown strong {
    color: var(--secondary-warm-brown);
}

.value-tile.gold {
    border-top-color: var(--accent-golden);
}

.value-tile.gold strong {
    color: var(--accent-golden);
}

.value-tile.green {
    border-top-color: var(--primary-deep-green);
}

.value-tile.green strong {
    color: var(--primary-deep-green);
}

.wide-panel {
    margin: 0 0 4rem;
}

.wide-panel > h2 {
    font-size: 2.35rem;
    text-align: center;
}

.process-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
}

.process-item {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.process-item span {
    align-items: center;
    background: var(--secondary-warm-brown);
    border-radius: 50%;
    color: var(--bg-white);
    display: inline-flex;
    flex: 0 0 42px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
}

.impact-grid.compact {
    margin-top: 0;
}

.partners-showcase {
    margin-bottom: 4rem;
    text-align: center;
}

.partners-showcase h2 {
    color: var(--primary-deep-green);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.partner-timeline {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 2rem;
    position: relative;
}

.partner-timeline::before {
    background: linear-gradient(to right, var(--primary-deep-green), var(--accent-golden), var(--secondary-warm-brown));
    content: "";
    height: 3px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 40px;
}

.partner-node {
    position: relative;
    z-index: 1;
}

.partner-node img {
    background: var(--bg-soft-beige);
    border: 4px solid var(--accent-golden);
    border-radius: 50%;
    height: 80px;
    margin: 0 auto 1.4rem;
    object-fit: contain;
    padding: 0.45rem;
    width: 80px;
}

.partner-node div {
    background: var(--bg-white);
    border-radius: 8px;
    border-top: 4px solid var(--secondary-warm-brown);
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.08);
    padding: 1.5rem;
}

.partner-node h3 {
    color: var(--primary-deep-green);
    margin-bottom: 0.4rem;
}

.auth-gate {
    margin: 0 auto 3rem;
    max-width: 720px;
    text-align: center;
}

.auth-gate .btn-light {
    border: 2px solid var(--secondary-warm-brown);
}

.form-panel {
    margin: 0 auto 3rem;
    max-width: 900px;
}

.form-panel.narrow {
    max-width: 720px;
}

.form-panel h2 {
    color: var(--accent-golden);
}

.form-panel h3 {
    font-size: 1.45rem;
    margin-top: 1.7rem;
}

.form-grid {
    display: grid;
    gap: 1.25rem;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


@media (max-width: 520px) {
    .social-circle-shell { padding: 0.5rem; }
    .social-circle-carousel { min-height: 260px; }
    .social-carousel-arrow { width: 40px; height: 40px; }
    .reaction-pill { width: 100%; justify-content: center; }
    .social-community-row { align-items: flex-start; }
}

@media (max-width: 820px) {
    .social-circle-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .social-circle-carousel {
        min-height: 340px;
        order: 1;
    }

    .social-circle-content {
        padding: 0.5rem 0.25rem 0.25rem;
        order: 2;
    }

    .social-circle-card {
        border-radius: 22px;
    }

    .social-action-row .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

.radio-stack {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.radio-stack label {
    align-items: center;
    background: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0.9rem 1rem;
}

.radio-stack input {
    accent-color: var(--secondary-warm-brown);
    width: auto;
}

.contact-strip {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
}

.contact-strip span {
    color: var(--text-medium-grey);
    display: block;
    margin-bottom: 0.35rem;
}

.support-panel {
    background: var(--primary-deep-green);
    color: var(--bg-white);
    margin-top: 3rem;
}

.support-panel h3,
.support-panel span {
    color: var(--accent-golden);
}

.auth-page {
    background: #f9fafb;
    padding: 4.5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(34, 34, 34, 0.08);
    margin: 0 auto;
    max-width: 460px;
    padding: 2rem;
}

.auth-card h1 {
    color: var(--accent-golden);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-link {
    color: var(--text-medium-grey);
    margin-top: 1.5rem;
    text-align: center;
}

.auth-link a {
    color: var(--accent-golden);
    font-weight: 800;
}

@media (max-width: 820px) {
    .feature-grid.three,
    .feature-grid.four,
    .process-grid,
    .partner-timeline,
    .contact-strip,
    .form-grid.two {
        grid-template-columns: 1fr;
    }

    .partner-timeline::before {
        display: none;
    }

    .page-hero h1,
    .section-heading h1 {
        font-size: 2.35rem;
    }
}
