/* Great Nigeria About page styles */
:root {
    --gnl-green-dark: #0b6623;
    --gnl-green: #149645;
    --gnl-green-light: #d7f4e1;
    --gnl-charcoal: #10212b;
    --gnl-muted: #4b5563;
}

.about-page {
    position: relative;
}

.about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 38px 26px;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--gnl-green-dark) 0%, var(--gnl-green) 100%);
    color: #f7fff9;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 220px at 20% -5%, rgba(255, 255, 255, 0.25) 0, transparent 60%),
        radial-gradient(600px 200px at 85% 100%, rgba(15, 33, 43, 0.25) 0, transparent 70%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.about-hero-heading h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.about-hero-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #f2fbf5;
    margin-bottom: 22px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    transition: all 0.2s ease;
}

.btn.btn-outline:hover {
    background: #ffffff;
    color: var(--gnl-green-dark);
}

.about-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.about-tab {
    border: 1px solid #dce7de;
    background: #ffffff;
    color: var(--gnl-charcoal);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-tab.active {
    background: var(--gnl-green-dark);
    color: #ffffff;
    border-color: var(--gnl-green-dark);
    box-shadow: 0 6px 16px rgba(11, 102, 35, 0.25);
}

.about-tab:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 150, 69, 0.35);
}

.about-panels {
    background: #ffffff;
    border: 1px solid #e6f0e9;
    border-radius: 18px;
    padding: 28px;
}

.about-panel {
    display: none;
}

.about-panel.active {
    display: block;
}

.about-panel h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gnl-charcoal);
    margin-bottom: 12px;
}

.about-panel-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.about-overview-card {
    background: #f4fbf6;
    border: 1px solid #d6eddc;
    border-radius: 16px;
    padding: 20px;
}

.about-overview-card h5 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gnl-green-dark);
}

.about-overview-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--gnl-muted);
}

.about-dynamic-content {
    background: #f8fff9;
    border: 1px solid #e1f3e6;
    border-radius: 16px;
    padding: 22px;
}

.about-dynamic-content :is(h2, h3, h4) {
    margin-top: 0;
}

.about-journey ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.journey-label {
    display: inline-flex;
    background: var(--gnl-green-dark);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-right: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.about-values .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.value-card {
    background: var(--gnl-green-dark);
    color: #e9ffef;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-card strong {
    font-size: 15px;
}

.value-card span {
    font-size: 13px;
    line-height: 1.4;
    color: #d1ffe1;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.module-card {
    background: #f7fcf9;
    border: 1px solid #d8efe0;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 33, 43, 0.12);
}

.module-card h5 {
    margin: 0;
    font-size: 18px;
    color: var(--gnl-charcoal);
}

.module-card p {
    margin: 0;
    color: var(--gnl-muted);
    line-height: 1.55;
}

.module-card.highlight {
    background: linear-gradient(135deg, var(--gnl-green-dark) 0%, #044118 100%);
    color: #eafff1;
    border-color: transparent;
}

.module-card.highlight h5 {
    color: #ffffff;
}

.module-card.highlight p {
    color: #d2ffe1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    padding: 22px;
    background: linear-gradient(135deg, #044118 0%, var(--gnl-green-dark) 100%);
    border-radius: 18px;
    color: #e9ffef;
}

.stat-item {
    text-align: center;
    padding: 14px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #d5ffe2;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.impact-card {
    background: #ffffff;
    border: 1px solid #e0efe4;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(16, 33, 43, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.impact-card h5 {
    margin: 0;
    color: var(--gnl-charcoal);
    font-size: 18px;
}

.impact-card p {
    margin: 0;
    color: var(--gnl-muted);
    line-height: 1.55;
}

.involved-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.step {
    position: relative;
    background: #f6fdf8;
    border: 1px solid #d6efe0;
    border-radius: 18px;
    padding: 28px 20px 22px;
}

.step-count {
    position: absolute;
    top: -18px;
    left: 22px;
    background: var(--gnl-green-dark);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h5 {
    margin: 18px 0 10px;
}

.step p {
    margin: 0;
    color: var(--gnl-muted);
}

.earn-banner {
    background: linear-gradient(135deg, var(--gnl-charcoal) 0%, #052b11 100%);
    color: #e9ffef;
    border-radius: 18px;
    padding: 26px;
    margin-bottom: 12px;
}

.earn-banner h5 {
    margin: 0 0 12px;
    font-size: 20px;
}

.earn-banner p {
    margin: 0;
    color: #c5f5d4;
    line-height: 1.6;
}

.cta-banner {
    background: #f5fcf7;
    border: 1px solid #d8efe0;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.cta-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gnl-charcoal);
}

.cta-banner p {
    margin-bottom: 18px;
    color: var(--gnl-muted);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn.btn-outline {
    border-color: var(--gnl-green-dark);
    color: var(--gnl-green-dark);
}

.cta-buttons .btn.btn-outline:hover {
    background: var(--gnl-green-dark);
    color: #ffffff;
}

@media (max-width: 991px) {
    .about-panels {
        padding: 20px;
    }
    .about-hero {
        padding: 30px 18px;
    }
    .about-hero-heading h3 {
        font-size: 22px;
    }
}


