/* ============================================================
   AUCHI ALLIED ASSOCIATION COOPERATIVE SOCIETY LTD
   Public Website — Global Stylesheet
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0f1c2e;
    --primary-light: #162236;
    --primary-dark: #0a1320;
    --accent: #c9a84c;
    --accent-hover: #b8963f;
    --accent-glow: rgba(201, 168, 76, 0.15);
    --light-bg: #f8f7f4;
    --section-alt: #f0ede6;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #3a3a4e;
    --text-muted: #6b6b80;
    --text-light: #8899aa;
    --border: #e0ddd5;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --container: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.site-nav.scrolled {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.nav-logo-text span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
}

.nav-login-btn::after {
    display: none !important;
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    color: var(--primary) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.03) 0%, transparent 40%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(201, 168, 76, 0.015) 35px,
            rgba(201, 168, 76, 0.015) 36px);
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 130%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    transform: skewX(-12deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1.08;
    font-weight: 700;
}

.hero h1 em {
    font-style: normal;
    color: var(--white);
    display: block;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    color: #f0d77a;
    margin-bottom: 28px;
    opacity: 1;
    text-shadow:
        0 0 18px rgba(201, 168, 76, 0.55),
        0 0 36px rgba(201, 168, 76, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.35);
    animation: taglineGlow 4s ease-in-out infinite;
}

@keyframes taglineGlow {
    0%, 100% {
        text-shadow:
            0 0 18px rgba(201, 168, 76, 0.55),
            0 0 36px rgba(201, 168, 76, 0.3),
            0 2px 6px rgba(0, 0, 0, 0.35);
    }
    50% {
        text-shadow:
            0 0 22px rgba(232, 201, 106, 0.75),
            0 0 48px rgba(232, 201, 106, 0.45),
            0 2px 6px rgba(0, 0, 0, 0.35);
    }
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* Bold logo as the right-side hero visual */
.hero-logo-wrap {
    position: absolute;
    top: 50%;
    right: 6vw;
    transform: translateY(-50%);
    width: 460px;
    height: 460px;
    max-width: 42vw;
    max-height: 75vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-logo-halo {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%,
            rgba(201, 168, 76, 0.55) 0%,
            rgba(201, 168, 76, 0.18) 40%,
            rgba(201, 168, 76, 0) 70%);
    filter: blur(14px);
    animation: heroHaloPulse 6s ease-in-out infinite;
}

/* Solid circular backdrop so the logo pops against the dark hero */
.hero-logo-disc {
    position: relative;
    width: 88%;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f7f1de 0%, #ece1b8 60%, #d8c98a 100%);
    box-shadow:
        0 25px 70px rgba(201, 168, 76, 0.45),
        0 0 0 1px rgba(201, 168, 76, 0.3),
        inset 0 -8px 30px rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    box-sizing: border-box;
    animation: heroLogoRotate 35s linear infinite;
}

.hero-logo {
    width: 92%;
    height: 92%;
    object-fit: contain;
    display: block;
}

@keyframes heroHaloPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.05); }
}

@keyframes heroLogoRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 960px) {
    .hero-logo-wrap {
        right: -60px;
        opacity: 0.45;
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 900px) {
    /* Switch hero to vertical stack so logo can sit ABOVE the text */
    .hero {
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-logo-wrap {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        width: 220px;
        height: 220px;
        max-width: 60vw;
        max-height: none;
        opacity: 1;
        margin: 32px auto 36px;
        order: -1;
    }

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

    .hero h1 em {
        display: block;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }
    .hero-logo-wrap {
        width: 170px;
        height: 170px;
        margin: 24px auto 28px;
    }
    .hero h1 {
        font-size: 30px;
        line-height: 1.12;
    }
    .hero-tagline {
        font-size: 17px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo,
    .hero-logo-disc,
    .hero-logo-halo,
    .hero-tagline {
        animation: none;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
    background: var(--primary);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(201, 168, 76, 0.015) 35px,
            rgba(201, 168, 76, 0.015) 36px);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 12px;
    position: relative;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border-color: var(--accent);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-navy {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-navy:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 28, 46, 0.3);
    color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-alt {
    background: var(--section-alt);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-gold {
    background: linear-gradient(135deg, var(--accent), #dab954);
    color: var(--primary);
}

.section-gold h2 {
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--primary-dark);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 24px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 10px;
}

/* --- Process Steps --- */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 25%;
    right: 25%;
    height: 2px;
    border-top: 2px dashed var(--border);
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-glow);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

.section-alt .step-number {
    background-color: var(--section-alt);
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- News Cards --- */
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card-body {
    padding: 28px;
}

.news-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.news-card .news-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.feature-item .feature-icon {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

/* --- CTA Banner --- */
.cta-banner {
    text-align: center;
    padding: 80px 0;
}

.cta-banner h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.85;
}

/* --- Tables --- */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.styled-table thead {
    background: var(--primary);
    color: var(--white);
}

.styled-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.styled-table td {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.styled-table tbody tr:hover {
    background: var(--accent-glow);
}

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

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-glow);
}

.faq-question .faq-toggle {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* --- Leadership Cards --- */
.leader-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
}

.leader-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.leader-card .leader-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.leader-card .leader-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Org Chart --- */
.org-chart {
    text-align: center;
    padding: 40px 0;
}

.org-level {
    margin-bottom: 32px;
    position: relative;
}

.org-box {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--accent);
}

.org-connector {
    width: 2px;
    height: 32px;
    background: var(--accent);
    margin: 0 auto;
}

.org-branches {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.org-branches .org-box {
    font-size: 13px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

/* --- Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--section-alt);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

/* --- Footer --- */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-about .footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
}

.footer-about .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col .contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-col .contact-item i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Pie Chart (CSS) --- */
.pie-chart-container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.pie-chart {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0deg 194.4deg,
            #2ecc71 194.4deg 284.4deg,
            #3498db 284.4deg 320.4deg,
            #e74c3c 320.4deg 324deg,
            #f39c12 324deg 342deg,
            #9b59b6 342deg 360deg);
    position: relative;
    flex-shrink: 0;
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: var(--white);
    border-radius: 50%;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pie-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.pie-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible,
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Alerts --- */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 15px;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #1a8f4a;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #c0392b;
}

/* --- Misc --- */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.mt-1 {
    margin-top: 16px;
}

.mt-2 {
    margin-top: 32px;
}

.mt-3 {
    margin-top: 48px;
}

.mb-1 {
    margin-bottom: 16px;
}

.mb-2 {
    margin-bottom: 32px;
}

.mb-3 {
    margin-bottom: 48px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.info-box {
    background: var(--accent-glow);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    padding: 32px;
}

.info-box h3 {
    color: var(--accent);
    margin-bottom: 12px;
}

.checklist li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.timeline {
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-step {
    position: relative;
    padding-bottom: 32px;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: -48px;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 1;
}

.timeline-step h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.timeline-step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- News Page --- */
.filter-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.search-bar {
    max-width: 400px;
    margin: 0 auto 32px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 14px 18px 14px 44px;
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
}

.search-bar i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* --- Contact Page Map --- */
.map-placeholder {
    background: var(--section-alt);
    border-radius: var(--radius);
    padding: 60px 32px;
    text-align: center;
    border: 1px solid var(--border);
}

.map-placeholder i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.current {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}