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

:root {
    --bg: #ffffff;
    --bg2: #f4f8f4;
    --surface: #ffffff;
    --surface2: #e8f2e8;
    --border: rgba(0, 100, 0, 0.12);
    --text: #0d1f0d;
    --text-muted: #4a6b4a;
    --accent: #006400;
    --accent2: #2d8a2d;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFF;
    color: #555;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.mlft {
    margin-left: 10px;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.bcgwth {
    background: rgba(255, 255, 255, 0.9);
}

img.flwth {
    width: 100%;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 120px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: #444;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    font-weight: 600;
    ;
}

.nav-links a:hover {
    color: #008218;
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.mobile-menu.open {
    display: flex;
}

/* ── Top-level plain link ── */
.mob-link {
    display: block;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

.mob-link:hover {
    background: var(--bg2);
    color: var(--accent);
    padding-left: 26px;
}

.mob-link--cta {
    background: var(--accent);
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    border-bottom: none;
    border-radius: 8px;
    margin: 12px 16px 16px;
    padding: 14px 20px;
    box-shadow: 0 4px 16px rgba(0, 100, 0, 0.25);
    transition: background 0.2s, transform 0.15s !important;
}

.mob-link--cta:hover {
    background: #004d00 !important;
    transform: translateY(-1px);
    padding-left: 20px !important;
}

.mob-group {
    border-bottom: 1px solid var(--border);
}

.mob-group-toggle,
.mob-subgroup-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    position: relative;
}

.mob-group-toggle.open::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}

.mob-group-toggle:hover,
.mob-subgroup-toggle:hover {
    background: var(--bg2);
    color: var(--accent);
}

.mob-group-toggle.open,
.mob-subgroup-toggle.open {
    color: var(--accent);
    background: rgba(0, 100, 0, 0.04);
}

.mob-chevron {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.15s;
    flex-shrink: 0;
}

.mob-group-toggle.open .mob-chevron,
.mob-subgroup-toggle.open .mob-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

/* ── Accordion body ── */
.mob-group-body {
    display: none;
    flex-direction: column;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.mob-group-body.open {
    display: flex;
}

.mob-group-body a {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    padding: 12px 20px 12px 28px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

/* .mob-group-body a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background 0.15s;} */
.mob-group-body a:hover {
    background: rgba(0, 100, 0, 0.06);
    color: var(--accent);
    padding-left: 34px;
}

/* .mob-group-body a:hover::before { background: var(--accent);} */

/* ── Nested subgroup ── */
.mob-subgroup {
    border-top: 1px solid var(--border);
}

.mob-subgroup-toggle {
    padding: 12px 20px 12px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg2);
}

.mob-subgroup-toggle.open {
    background: rgba(0, 100, 0, 0.06);
}

.mob-group-body--sub {
    background: rgba(0, 100, 0, 0.03);
    border-top: 1px solid var(--border);
}

.mob-group-body--sub a {
    padding-left: 44px;
    font-size: 0.845rem;
}

.mob-group-body--sub a:hover {
    padding-left: 50px;
}


/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

#TheMainText .btn-Section a {
    display: block;
    background: rgba(0, 130, 24, 0.5);
    color: #FFF;
    padding: 13px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    margin-bottom: 20px;
}

#TheMainText .btn-Section a:hover {
    background: #00A86B;
    transform: translateY(-2px);
    color: #FFF;
}

#TheMainText table {
    width: 100%;
    text-align: left;
    margin: 2rem 0;
}

#TheMainText table thead {
    background-color: rgba(0, 130, 24, 0.4);
    border-bottom: 1px solid #FFF;
}

#TheMainText table thead tr th {
    color: #444;
    border: 1px solid #FFF;
}

#TheMainText table thead tr th:last-child {
    border-right: none;
}

#TheMainText table thead tr th {
    text-align: left;
    padding: 0.5rem 0.5rem;
    font-weight: 600;
}

#TheMainText table tbody {
    border-top: none;
    border-bottom: none;
}

#TheMainText table tbody tr {
    background-color: rgba(0, 130, 24, 0.08);
}

#TheMainText table tbody tr:nth-child(even) {
    background-color: rgba(0, 130, 24, 0.05);
}

#TheMainText table tbody tr td {
    text-align: left;
    padding: 0.3rem 1rem;
    border: 1px solid #FFF;
    vertical-align: text-top;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    transition: color 0.2s;
    background: #00975F;
    color: #FFF;
}

.btn-ghost:hover {
    background: #C6FFCF;
    color: #005A12;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: rgba(0, 100, 0, 0.3);
    background: rgba(0, 100, 0, 0.05);
}

.btn-lg {
    padding: 13px 28px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── SECTION COMMON ── */
.section {
    padding: 96px 0;
}

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #008218;
    margin-bottom: 16px;
}

.section-title {
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-sub {
    color: #222;
    font-size: 1rem;
    margin-bottom: 32px;
}

.section-sub.center {
    text-align: center;
    margin: 0 auto 40px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.link:hover {
    text-decoration: underline;
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 160px 0 96px;
    text-align: center;
    overflow: hidden;
}

/* page-hero is NOT the homepage hero — always left-align */
.page-hero,
.page-hero * {
    text-align: left;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 100, 0, 0.08);
    border: 1px solid rgba(0, 100, 0, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    text-align: left;
}

.hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 40px;
}

/* 
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px;}

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;}

.stat { display: flex; flex-direction: column; align-items: center;}

.stat-num { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;}

.stat-label { font-size: 0.8rem; color: var(--text-muted);}

.stat-divider { width: 1px; height: 36px; background: var(--border);}

.hero-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse at center, rgba(0, 100, 0, 0.08) 0%, transparent 70%); pointer-events: none;} */


.hero-actions {
    display: inline-block;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    text-align: left;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0, 100, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}


/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 12px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 100px;
}

/* ── FOLLOWERS ── */
.followers {
    background: var(--bg2);
}

.followers-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--accent);
    font-weight: 700;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: var(--surface2);
}

.av1 {
    background: linear-gradient(135deg, #006400, #2d8a2d);
}

.av2 {
    background: linear-gradient(135deg, #004d00, #006400);
}

.av3 {
    background: linear-gradient(135deg, #2d8a2d, #52b052);
}

.av4 {
    background: linear-gradient(135deg, #006400, #3da03d);
}

.av5 {
    background: linear-gradient(135deg, #003300, #006400);
}

.av6 {
    background: linear-gradient(135deg, #004d00, #2d8a2d);
}

.av7 {
    background: linear-gradient(135deg, #3da03d, #006400);
}

.av8 {
    background: linear-gradient(135deg, #006400, #004d00);
}

.av9 {
    background: linear-gradient(135deg, #2d8a2d, #003300);
}

.avatar-caption {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.avatar-caption strong {
    color: var(--text);
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: border-color 0.2s;
}

.pricing-card:hover {
    border-color: rgba(0, 100, 0, 0.25);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(0, 100, 0, 0.06), var(--surface));
}

.plan-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features li:has(✗) {
    opacity: 0.4;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--bg2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-author div:last-child {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── FAQ ── */
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 18px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.faq-a.open {
    max-height: 200px;
    padding-bottom: 16px;
}

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
}

.blog-card:hover {
    border-color: rgba(0, 100, 0, 0.25);
}

.blog-img {
    height: 180px;
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── CTA ── */
.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.cta-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 100, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}



/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .followers-inner,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 120px 0 64px;
    }

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

    .gallery-item.wide {
        grid-column: span 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* .loader-logo { font-family: 'Inter', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent);} */
.loader-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent);
}

.loader-bar-track {
    width: 180px;
    height: 3px;
    background: rgba(0, 100, 0, 0.12);
    border-radius: 100px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 100px;
    animation: loadProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

/* ══════════════════════════════════════
   ANIMATIONS & INTERACTIONS
══════════════════════════════════════ */

/* ── Scroll progress bar ── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ── Nav scrolled state ── */
.nav.scrolled {
    box-shadow: 0 4px 32px rgba(0, 100, 0, 0.1);
    background: rgba(255, 255, 255, 0.97);
}

.nav {
    transition: background 0.3s, box-shadow 0.3s;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero cursor spotlight ── */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 40%),
            rgba(0, 100, 0, 0.07) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: background 0.05s;
}

/* ── Hero badge pulse ── */
.hero-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 100, 0, 0.15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 100, 0, 0);
    }
}

/* ── Gradient text shimmer ── */
.gradient-text {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ── Gallery item transitions ── */
.gallery-item {
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s ease;
    will-change: transform;
}

.gallery-item:hover {
    box-shadow: 0 20px 48px rgba(0, 100, 0, 0.2);
    z-index: 2;
}

/* ── Avatar float animation ── */
.av-float {
    animation: floatAv 4s ease-in-out infinite;
}

@keyframes floatAv {

    0%,
    100% {
        transform: translateY(0);
    }

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

.avatar {
    transition: transform 0.2s, box-shadow 0.2s;
}

.avatar:hover {
    transform: scale(1.12) translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0, 100, 0, 0.25);
    z-index: 2;
}

/* ── Pricing card transitions ── */
.pricing-card {
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s ease,
        border-color 0.2s;
    will-change: transform;
}

.pricing-card:hover {
    box-shadow: 0 16px 48px rgba(0, 100, 0, 0.12);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 56px rgba(0, 100, 0, 0.2);
}

/* ── Testimonial card transitions ── */
.testimonial-card {
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s ease,
        border-color 0.2s;
    will-change: transform;
}

.testimonial-card:hover {
    border-color: rgba(0, 100, 0, 0.25);
    box-shadow: 0 12px 36px rgba(0, 100, 0, 0.1);
}

/* ── Blog card hover ── */
.blog-card {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        border-color 0.2s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 100, 0, 0.12);
}

.blog-img {
    transition: transform 0.4s ease;
    overflow: hidden;
}

.blog-card:hover .blog-img {
    transform: scale(1.04);
}

/* ── Button ripple ── */
.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.2s,
        box-shadow 0.2s;
}

.btn-primary::after,
.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::after,
.btn-outline:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 100, 0, 0.3);
}

.btn-ghost {
    transition: color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
    transform: translateX(3px);
}

/* ── FAQ active state ── */
.faq-q.active {
    color: var(--accent);
}

.faq-icon {
    transition: transform 0.25s ease;
}

.faq-q.active .faq-icon {
    transform: rotate(45deg);
}

/* ── Section label entrance ── */
.section-label {
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s ease 0.2s;
}

.reveal.revealed .section-label::after,
.section-label.revealed::after {
    width: 100%;
}

/* ── Nav link underline slide ── */
.nav-links a {
    position: relative;
}

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

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

/* ── Footer link hover ── */
.footer-col a {
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer-col a:hover {
    transform: translateX(4px);
}

/* ── CTA section pulse glow ── */
.cta-glow {
    animation: ctaGlow 5s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

/* ── Stat number pop ── */
.stat-num {
    display: inline-block;
    transition: transform 0.2s;
}

.stat:hover .stat-num {
    transform: scale(1.15);
    color: var(--accent);
}

/* ── Feature list item hover ── */
.feature-list li {
    transition: transform 0.2s, color 0.2s;
    cursor: default;
}

.feature-list li:hover {
    transform: translateX(6px);
    color: var(--text);
}

/* ── Smooth page entrance ── */
@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body:not(.page-inner) {
    animation: pageFadeIn 0.4s ease 1.4s both;
}

/* ══════════════════════════════════════
   MIGRATED SITE — NEW COMPONENTS
══════════════════════════════════════ */

/* ── Nav logo ── */
.nav-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    /* overflow above and below the 64px nav bar */
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.nav-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav-logo-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.nav-logo-text small {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.72rem;
}

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

/* ── Dropdown nav ── */
.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item>a.Activenow,
a.ActivenowR {
    color: #008218;
    font-weight: 800;
}

.nav-item>a i {
    margin-left: 5px;
    font-size: 0.8rem;
    color: #CCC;
}

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 100, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    padding: 8px 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    color: #333;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    text-transform: capitalize;
}

.dropdown a i:first-child {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.15s;
}

.dropdown a:hover {
    background: var(--bg2);
    color: var(--accent);
}

.dropdown a:hover i:first-child {
    opacity: 1;
}

/* ── Hero slideshow ── */
.hero:not(.page-hero) {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding: 0;
    text-align: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 40, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}




/* ── SLIDE LAYOUT ── */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 80px 0 48px;
}

.slide-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.slide-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-left h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    text-align: left;
}

.slide-left h1 span {
    font-weight: 500;
    background: linear-gradient(135deg, #CCFF99, #A3D900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-left h1 span {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

.Wht {
    color: #FFF;
}

@media screen and (max-width: 601px) {
    .slide-left h1 {
        font-size: 3rem;
        font-weight: 700;
    }
}

/* ── RIGHT panel ── */
.slide-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

.hero-slide.active .slide-right {
    opacity: 1;
}

.stats-panel-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 1);
    padding-left: 2px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide.active .stats-panel-label {
    opacity: 0.8;
    transform: translateY(0);
}

/* ── STATS GRID ── */
.slide-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    perspective: 1000px;
}

/*
.slide-stats .slide-stat:nth-child(5) { grid-column: span 2;}
*/
/* ── DRAMATIC 3D FLIP REVEAL ── */
.slide-stat {
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    cursor: default;
    position: relative;
    overflow: hidden;
    /* start: flipped back on X axis */
    opacity: 0;
    transform: perspective(1000px) rotateX(-110deg) translateY(60px) scale(0.8);
    transform-origin: top center;
    transition:
        opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s, border-color 0.3s, box-shadow 0.3s;
    will-change: transform, opacity;
}

/* cascade: each card flips in slowly, one after another */
.hero-slide.active .slide-stat:nth-child(1) {
    transition-delay: 0.5s;
}

.hero-slide.active .slide-stat:nth-child(2) {
    transition-delay: 1.0s;
}

.hero-slide.active .slide-stat:nth-child(3) {
    transition-delay: 1.5s;
}

.hero-slide.active .slide-stat:nth-child(4) {
    transition-delay: 2.0s;
}

.hero-slide.active .slide-stat:nth-child(5) {
    transition-delay: 2.5s;
}

.hero-slide.active .slide-stat:nth-child(6) {
    transition-delay: 3.0s;
}

.hero-slide.active .slide-stat:nth-child(7) {
    transition-delay: 3.5s;
}

.hero-slide.active .slide-stat:nth-child(8) {
    transition-delay: 4.0s;
}

.hero-slide.active .slide-stat {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}

/* shimmer sweep */
.slide-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.06) 60%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.slide-stat:hover::before {
    transform: translateX(100%);
}

/* green left accent bar */
.slide-stat::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, transparent, #00cc44, transparent);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-stat:hover::after {
    transform: scaleY(1);
}

.slide-stat:hover {
    background: rgba(0, 70, 0, 0.6);
    border-color: rgba(0, 220, 80, 0.35);
    transform: perspective(800px) rotateX(0) translateX(-5px) scale(1.02) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 200, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s;
}

.slide-stat:hover .stat-icon-wrap {
    background: rgba(0, 160, 40, 0.55);
    border-color: rgba(0, 220, 80, 0.4);
    transform: scale(1.18) rotate(-8deg);
}

.slide-stat i {
    font-size: 1.3rem;
    color: #FDFDFD;
    transition: color 0.25s;
}

.slide-stat:hover i {
    color: #7dffaa;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sstat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
    transition: color 0.25s, transform 0.25s;
    text-align: left;
}

.slide-stat:hover .sstat-num {
    color: #a8ffb0;
    transform: scale(1.05);
}

.sstat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.105em;
    color: #A6DD00;
    line-height: 1.3;
    transition: color 0.25s;
    text-align: left;
}

.slide-stat:hover .sstat-label {
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
    background: rgba(0, 100, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-title {
    color: #fff;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions .btn-ghost {
    /* color: rgba(255, 255, 255, 0.8);*/
}

/* ── Slide responsive ── */
@media (max-width: 900px) {
    .slide-content {
        padding: 90px 0 32px;
    }

    .slide-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slide-right {
        opacity: 0;
        transition: opacity 0.4s ease 0.2s;
    }

    .hero-slide.active .slide-right {
        opacity: 1;
    }

    .slide-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /*.slide-stats .slide-stat:nth-child(5) {     grid-column: span 2; }*/

    .sstat-num {
        font-size: 1.1rem;
    }

    .slide-stat {
        padding: 12px 14px;
    }
}

@media (max-width: 600px) {
    .slide-content {
        padding: 80px 0 24px;
    }

    .slide-stats {
        gap: 6px;
    }

    .sstat-num {
        font-size: 1rem;
    }

    .stat-icon-wrap {
        width: 34px;
        height: 34px;
    }

    .slide-stat i {
        font-size: 0.9rem;
    }

    .sstat-label {
        font-size: 0.58rem;
    }
}

/* ══════════════════════════════════════
   MIGRATED SITE — SECTION STYLES
══════════════════════════════════════ */

/* ── Two-col layout ── */
.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── bg-alt ── */
.bg-alt {
    background: var(--bg2);
}

.bg-alt3 {
    background: #D5E3D5;
}

.bg-alt2 {
    background: #005A12;
    padding: 2rem;
}

.Qls {
    margin-top: -200px;
    background: #005A12;
    position: relative;
    padding: 30px 50px 50px 50px;
}

.Qls .section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 40px;
    color: #C6FFCF;
}

/* ── History callout ── */
.history-callout {
    background: var(--bg2);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ── Stats sidebar ── */
.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-item-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.stat-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 100, 0, 0.08);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.stat-item-card:hover .stat-item-icon {
    background: rgba(0, 100, 0, 0.14);
    transform: scale(1.08) rotate(-4deg);
}

.stat-item-icon i {
    font-size: 1rem;
    color: var(--accent);
}

.stat-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.stat-item-card .label {
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-item-card .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.01em;
}

/* ── Vision/Mission ── */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}

.vision-box,
.mission-box {
    background: #fff;
    border: 1px solid var(--border);
    padding: 36px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 100, 0, 0.1);
    border-color: var(--accent);
}

.vm-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.vision-box h3,
.mission-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.vision-box p,
.mission-box p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.sub-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ── Values grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: default;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 100, 0, 0.12);
    border-color: var(--accent);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
}

/* ── Departments grid ── */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dept-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.dept-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 100, 0, 0.1);
    border-color: var(--accent);
}

.dept-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.dept-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dept-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.amicaall-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.2s;
}

.amicaall-box:hover {
    border-color: var(--accent);
}

.amicaall-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.amicaall-box p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ── Quick links ── */
.quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.qlink-card {
    background: #A6DD00;
    border: 1px solid var(--border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    text-align: center;
}

.qlink-card img {
    width: 80%;
    max-width: 100px;
    margin: 20px auto;
}

.qlink-card i {
    font-size: 1.6rem;
    color: #00975F;
}

.qlink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 100, 0, 0.12);
    border-color: var(--accent);
    background: #C6FFCF;
}

.qlink-card.highlight {
    background: #C6FFCF;
    border-color: #A6DD00;
    color: #000;
}

.qlink-card.highlight i {
    color: #fff;
}

.qlink-card.highlight:hover {
    background: #A6DD00;
    box-shadow: 0 10px 28px rgba(0, 100, 0, 0.25);
    color: #005A12;
}

/* ── Rates ── */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.rate-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 100, 0, 0.1);
}

.rate-icon {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.rate-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.rate-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.rates-warning {
    background: #fff8e1;
    border: 1px solid #f0c040;
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #7a5c00;
    font-size: 0.9rem;
}

.rates-warning i {
    color: #f0a000;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Publications ── */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pub-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.pub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 100, 0, 0.1);
    border-color: var(--accent);
}

.pub-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.pub-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pub-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── Blog / News ── */
.blog-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* ── Gallery (image bg) ── */
.gallery-item {
    background-size: cover !important;
    background-position: center !important;
}

/* ── Map ── */
.map-section {
    padding: 0;
}

.map-section .container {
    padding: 48px 24px 24px;
}

.map-embed iframe {
    display: block;
    width: 100%;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #005A12;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: #333;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #A6DD00;
}

.contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-socials a:hover {
    color: #fff;
}

#contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#contact-socials .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}

#contact-socials .social-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

#contact-socials a.social-btn.wa {
    background: #25d366;
    color: #fff;
}

#contact-socials a.social-btn.fb {
    background: #1877f2;
    color: #fff;
}

#contact-socials a.social-btn.tk {
    background: #010101;
    color: #fff;
}

#contact-socials a.social-btn.lnk {
    background: #0a66c2;
    color: #fff;
}

.contact-form {
    background: #D5E3D5;
    border: 1px solid var(--border);
    padding: 36px;
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #005A12;
    margin-bottom: 8px;
}

.input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    color: #000;
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.08);
}

textarea.input {
    resize: vertical;
}

.sent-message {
    color: #FFF;
    background: #A3D900;
    text-align: center;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.error-message {
    color: #000;
    background: #FFCFBF;
    text-align: center;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.form-msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-msg.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-msg.error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ── Back to top ── */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #004d00;
}

/* ── Footer ── */

/* ── FOOTER ── */
.footer {
    border-top: 2px solid #008218;
    padding: 30px 0 32px;
    background: #005A12;
    color: #FFF;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #FFF;
    font-size: 0.875rem;
    margin-top: 12px;
    max-width: 240px;
}

.footer-links {
    display: contents;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #769D00;
}

.footer-col a,
.footer-bottom a {
    color: #DFFFBF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-col a:hover,
.footer-bottom a:hover {
    color: #FFF;
}

.footer-bottom {
    border-top: #C6FFCF 1px solid;
    padding-top: 24px;
}

.footer-bottom p {
    color: #FFF;
    font-size: 0.9rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
}


/* ── Loader logo img ── */
.loader-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.97);
    }
}

/* ── Assets section ── */
.assets-section {
    background: linear-gradient(135deg, #003300 0%, #006400 50%, #004d00 100%);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
}

.assets-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.assets-header {
    text-align: center;
    margin-bottom: 56px;
}

.assets-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 12px;
}

.assets-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.asset-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 16px 24px;
    text-align: center;
    cursor: default;
    transition: background 0.25s, border-color 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.asset-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.asset-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.asset-card:hover::after {
    transform: scaleX(1);
}

.asset-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    transition: color 0.2s, transform 0.2s;
}

.asset-card:hover .asset-icon {
    color: #fff;
    transform: scale(1.15);
}

.asset-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.asset-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quicklinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .assets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {

    .two-col,
    .vision-mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dept-grid,
    .pub-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .assets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .asset-num {
        font-size: 1.7rem;
    }

    .asset-card {
        padding: 20px 10px 18px;
    }
}

@media (max-width: 600px) {

    .dept-grid,
    .pub-grid,
    .quicklinks-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .assets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Inner pages — push content below fixed nav ── */
body.page-inner .page-hero {
    padding-top: 64px;
}




/* ── Page Hero Banner ── */
.ph-wrap {
    position: relative;
    height: 600px;
    padding-top: 64px;
    overflow: hidden;
}

.ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}

.bred-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 40, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* very light vignette so the crumb is readable */
.ph-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

/* breadcrumb pill — top right */
.ph-crumb {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    /* background: rgba(0, 0, 0, 0.38); */
    /* background: rgba(46, 125, 50, 0.70); */
    background: #008218;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    font-size: 0.8rem;
    animation: phFadeIn 0.5s ease 0.1s both;
    text-transform: uppercase;
    font-weight: 800;
}

.ph-crumb a {
    color: #A6DD00;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.ph-crumb a:hover {
    color: #fff;
}

.ph-sep {
    color: rgba(255, 255, 255, 1);
    font-size: 0.9rem;
}

.ph-cur {
    color: #fff;
    font-weight: 600;
}

@keyframes phFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@media (max-width: 600px) {
    .ph-wrap {
        /* height:360px; */
    }

    .ph-crumb {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

#TheMainText {
    background: #E7EFE7;
}

#TheMainText a {
    color: #111;
    transition: color 0.2s;
    text-decoration: none;
    font-weight: 500;
}

#TheMainText a:hover {
    color: #008218;
}


.TheText {
    background: #E7EFE7;
    padding: 3rem;
    margin-top: -300px;
    position: relative;
    min-height: 500px;
}

.TheText .section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #008218;
    margin-bottom: 16px;
}

.TheText .section-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #008218;
    transition: width 0.4s ease 0.2s;
}

.TheText .section-title {
    color: #005A12;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ThePText h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    text-align: left;
    color: #00A41D;
}

.TheText p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
    color: #555;
}

.TheText ul li {
    font-size: 1.1rem;
    color: #111;
    list-style: none;
    margin-left: 30px;
    line-height: 1.3;
}

.TheText ul li:before {
    content: '::';
    margin: 0 5px 0 -25px;
}

.TheText ul.nostyle li:before {
    content: '';
    margin: 0 5px 0 -25px;
}


.TheText .highlight {
    background: rgba(0, 130, 24, 0.8);
    border-left: 4px solid #A6DD00;
    padding: 16px 20px;
    color: #FFF;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.5rem;
    font-style: italic;
}

.TheText .The-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    color: #333;
    font-size: 1.1rem;
}

.TheText .The-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.TheText .The-list li span.check {
    color: #008218;
    ;
}

.TheText .Thebox {
    background: #D5E3D5;
    border: 1px solid var(--border);
    padding: 36px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    margin-top: 30px;
}

.TheText .Thebox:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 100, 0, 0.1);
    border-color: var(--accent);
}

.TheText .Thebox .tb-icon {
    font-size: 3rem;
    color: #008218;
    margin-bottom: 16px;
}

.TheText .Thebox h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.TheText .Thebox p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
    color: #555;
    font-weight: 500;
}


/* ── Values grid ── */
.TheText .values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.TheText .value-card {
    background: #D5E3D5;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: default;
}

.TheText .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 100, 0, 0.12);
    border-color: var(--accent);
}

.TheText .value-icon {
    font-size: 3rem;
    color: #008218;
    margin-bottom: 12px;
}

.TheText .value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
}

/*****************
	NOTICES
***************/
.notice-card {
    background-color: #D5E3D5;
    border-left: 5px solid #008218;
    margin: 15px 0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.notice-card:hover {
    transform: translateX(5px);
}

span.Thedate {
    display: inline;
    color: #005A12;
    font-weight: 600;
}

span.Theheading {
    display: inline;
    font-weight: 800;
}

/*************************
	TENDERS & VACANCIES
****************************/
.tv-card {
    background-color: #D5E3D5;
    border-left: 5px solid #008218;
    margin: 30px 0 15px 0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.tv-card:hover {
    transform: translateX(5px);
}

span.Theheading {
    font-weight: 800;
}


/*************************
	NEWS
****************************/
/* ── BLOG ── */
.read-grid {
    display: block;
    margin-top: 48px;
}

.read-card {
    background: #D5E3D5;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
}

.read-card:hover {
    border-color: rgba(0, 100, 0, 0.25);
}

img.read-img {
    width: 100%;
}

.read-content {
    padding: 24px;
}

.read-content span {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #005A12;
}

.read-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}



/* ── Executive Management ── */
.exec-ceo {
    margin-bottom: 56px;
    display: flex;
    justify-content: center;
}

.exec-card--ceo {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 640px;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.exec-card--ceo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 100, 0, 0.1);
}

.exec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.exec-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.exec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 100, 0, 0.1);
}

.exec-img {
    overflow: hidden;
    background: var(--surface2);
}

.exec-card--ceo .exec-img {
    height: 100%;
    min-height: 480px;
}

.exec-grid .exec-img {
    height: 480px;
}

.exec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.4s;
}

.exec-card:hover .exec-img img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.exec-info {
    padding: 28px;
}

.exec-card--ceo .exec-info {
    padding: 32px 32px 32px 0;
}

.exec-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 8px;
}

.exec-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.exec-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .exec-card--ceo {
        grid-template-columns: 1fr;
    }

    .exec-card--ceo .exec-info {
        padding: 24px;
    }

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

@media (max-width: 600px) {
    .exec-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Councillors Grid ── */
.councillors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.ccard {
    overflow: hidden;
    background: #D5E3D5;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.2s;
}

.ccard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 100, 0, 0.13);
    border-color: rgba(0, 100, 0, 0.25);
}

/* ── Image ── */
.ccard-img {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: var(--surface2);
    flex-shrink: 0;
}

.ccard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: grayscale(10%);
}

.ccard:hover .ccard-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

/* badge */
.ccard-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #008218;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* green bottom line on hover */
.ccard-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ccard:hover .ccard-img::after {
    transform: scaleX(1);
}

/* ── Body ── */
.ccard-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

span.ccard-ward {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 6px;
    text-align: center;
}

.ccard-body h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #005A12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.3;
    text-align: center;
}

/* contact links */
.ccard-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: auto;
}

.ccard-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
    line-height: 1.4;
}

.ccard-contact a i {
    width: 28px;
    height: 28px;
    background: rgba(0, 100, 0, 0.07);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: background 0.2s;
}

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

.ccard-contact a:hover i {
    background: rgba(0, 100, 0, 0.14);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .councillors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .councillors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ccard-img {
        height: 300px;
    }
}

/* centre the 2-card ministry grid */
.councillors-grid--center {
    grid-template-columns: repeat(2, 360px);
    justify-content: center;
}

@media (max-width: 800px) {
    .councillors-grid--center {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .councillors-grid--center {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   PUBLICATIONS — ALL PAGES
══════════════════════════════════════ */

/* ── Shared page intro layout ── */
.pub-page-intro {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
}

.pub-page-intro-aside {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pub-aside-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pub-aside-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    border: 1px solid transparent;
}

.pub-aside-link i {
    width: 32px;
    height: 32px;
    background: rgba(0, 100, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: background 0.18s;
}

.pub-aside-link:hover {
    background: var(--surface2);
    color: var(--accent);
    transform: translateX(4px);
    border-color: var(--border);
}

.pub-aside-link:hover i {
    background: rgba(0, 100, 0, 0.14);
}

.pub-aside-link.active {
    background: rgba(0, 100, 0, 0.07);
    color: var(--accent);
    border-color: rgba(0, 100, 0, 0.18);
    font-weight: 600;
}

.pub-aside-link.active i {
    background: var(--accent);
    color: #fff;
}

/* ── Section divider ── */
.pub-section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pub-section-divider h2 {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.pub-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ══════════════════════════════════════
   PUBLICATIONS — DOCUMENT CARDS
══════════════════════════════════════ */

.pub-doc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── Card ── */
.pub-doc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.2s;
    will-change: transform;
}

.pub-doc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pub-doc-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(0, 100, 0, 0.13);
    border-color: rgba(0, 100, 0, 0.25);
}

.pub-doc-card:hover::after {
    transform: scaleX(1);
}

/* ── Thumbnail ── */
.pub-doc-thumb {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--bg2);
    flex-shrink: 0;
}

.pub-doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pub-doc-card:hover .pub-doc-thumb img {
    transform: scale(1.06);
}

.pub-doc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 60, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.28s;
}

.pub-doc-card:hover .pub-doc-overlay {
    opacity: 1;
}

.pub-doc-overlay i {
    font-size: 2.2rem;
    color: #fff;
}

.pub-doc-overlay span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Year ribbon ── */
.pub-doc-year {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
}

/* ── Body ── */
.pub-doc-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.pub-doc-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.pub-doc-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    flex: 1;
    margin: 2px 0 8px;
}

.pub-doc-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}

.pub-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 14px;
    border: 1px solid rgba(0, 100, 0, 0.2);
    border-radius: 7px;
    background: rgba(0, 100, 0, 0.04);
    transition: background 0.2s, border-color 0.2s, gap 0.2s, transform 0.15s;
    align-self: flex-start;
}

.pub-doc-card:hover .pub-doc-btn {
    background: rgba(0, 100, 0, 0.09);
    border-color: rgba(0, 100, 0, 0.35);
    gap: 10px;
    transform: translateX(2px);
}

/* ── No-image fallback ── */
.pub-doc-thumb--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg2), var(--surface2));
}

.pub-doc-thumb--icon i {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.3;
}

/* ══════════════════════════════════════
   PUBLICATIONS — PUBLIC NOTICES
══════════════════════════════════════ */

/* ── Filter bar ── */
.notices-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.notices-filter-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    font-family: inherit;
}

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

/* ── List ── */
.notices-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notice-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
    position: relative;
}

.notice-item:hover {
    border-color: rgba(0, 100, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 100, 0, 0.09);
    transform: translateX(4px);
}

/* coloured left panel */
.notice-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 12px;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    text-align: center;
    flex-shrink: 0;
}

.notice-item--new .notice-meta {
    background: rgba(0, 100, 0, 0.06);
    border-right-color: rgba(0, 100, 0, 0.15);
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 100px;
    line-height: 1;
}

.notice-badge--new {
    background: var(--accent);
    color: #fff;
}

.notice-badge--update {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.notice-badge--closed {
    background: var(--bg2);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.notice-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.3;
}

.notice-date strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}

.notice-date span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* right content */
.notice-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.notice-body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    margin: 0;
}

.notice-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

.notice-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.notice-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.notice-read-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 100, 0, 0.25);
}

.notice-read-btn--outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(0, 100, 0, 0.25);
}

.notice-read-btn--outline:hover {
    background: rgba(0, 100, 0, 0.05);
    box-shadow: none;
}

/* ── Empty state ── */
.notices-empty-state {
    text-align: center;
    padding: 72px 24px;
    border: 1px dashed rgba(0, 100, 0, 0.2);
    border-radius: var(--radius-lg);
    background: var(--bg2);
}

.notices-empty-state i {
    font-size: 2.8rem;
    color: var(--accent);
    opacity: 0.25;
    display: block;
    margin-bottom: 16px;
}

.notices-empty-state h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.notices-empty-state p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 360px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   PUBLICATIONS — VACANCIES
══════════════════════════════════════ */

/* ── Stats bar ── */
.vacancy-stats {
    display: flex;
    gap: 32px;
    padding: 20px 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.vacancy-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vacancy-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

.vacancy-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ── List ── */
.vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vacancy-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
}

/* green left accent on hover */
.vacancy-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 2px 2px 0;
}

.vacancy-item:hover::before {
    transform: scaleY(1);
}

.vacancy-item:hover {
    border-color: rgba(0, 100, 0, 0.28);
    box-shadow: 0 8px 32px rgba(0, 100, 0, 0.09);
    transform: translateX(4px);
}

.vacancy-item-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

/* ── Icon ── */
.vacancy-icon {
    width: 56px;
    height: 56px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.vacancy-item:hover .vacancy-icon {
    background: rgba(0, 100, 0, 0.09);
    border-color: rgba(0, 100, 0, 0.3);
    transform: scale(1.08) rotate(-4deg);
}

.vacancy-icon i {
    font-size: 1.35rem;
    color: var(--accent);
}

/* ── Info ── */
.vacancy-info {
    min-width: 0;
    flex: 1;
}

.vacancy-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    align-items: center;
}

.vacancy-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
}

.vacancy-meta-tag i {
    font-size: 0.7rem;
    color: var(--accent);
}

.vacancy-meta-tag--deadline {
    background: rgba(0, 100, 0, 0.06);
    border-color: rgba(0, 100, 0, 0.2);
    color: var(--text);
    font-weight: 600;
}

.vacancy-meta-tag--deadline i {
    color: var(--accent);
}

/* ── Note ── */
.vacancy-note {
    margin-top: 36px;
    background: rgba(0, 100, 0, 0.04);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.vacancy-note i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vacancy-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.vacancy-note a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════
   PUBLICATIONS — TENDERS / FORMS EMPTY
══════════════════════════════════════ */

.pub-empty-state {
    text-align: center;
    padding: 80px 24px 56px;
    border: 1.5px dashed rgba(0, 100, 0, 0.2);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--bg2) 0%, var(--surface) 100%);
    margin-bottom: 40px;
}

.pub-empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 100, 0, 0.07);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pub-empty-icon i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

.pub-empty-state h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.pub-empty-state p {
    color: var(--text-muted);
    font-size: 0.925rem;
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

/* ── Info cards ── */
.pub-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pub-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pub-info-card:hover {
    border-color: rgba(0, 100, 0, 0.28);
    box-shadow: 0 6px 24px rgba(0, 100, 0, 0.07);
    transform: translateY(-3px);
}

.pub-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 100, 0, 0.07);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.pub-info-card:hover .pub-info-icon {
    background: rgba(0, 100, 0, 0.13);
}

.pub-info-icon i {
    font-size: 1.15rem;
    color: var(--accent);
}

.pub-info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.pub-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.pub-info-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.pub-info-card a:hover {
    text-decoration: underline;
}

/* legacy aliases kept for backward compat */
.tenders-empty,
.forms-empty {
    /* handled by .pub-empty-state */
}

.tenders-info {
    /* handled by .pub-info-grid */
}

.tenders-info-card {
    /* handled by .pub-info-card */
}

.tenders-info-icon {
    /* handled by .pub-info-icon */
}

.tenders-empty-icon {
    /* handled by .pub-empty-icon */
}

/* ── Publications responsive ── */
@media (max-width: 1100px) {
    .pub-doc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pub-page-intro {
        grid-template-columns: 1fr 280px;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .pub-doc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pub-page-intro {
        grid-template-columns: 1fr;
    }

    .pub-page-intro-aside {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .pub-aside-title {
        grid-column: 1 / -1;
    }

    .notice-item {
        grid-template-columns: 80px 1fr;
    }

    .notice-meta {
        padding: 16px 8px;
    }

    .notice-date strong {
        font-size: 1.1rem;
    }

    .vacancy-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .vacancy-item-left {
        width: 100%;
    }

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

@media (max-width: 700px) {
    .pub-doc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .notice-item {
        grid-template-columns: 1fr;
    }

    .notice-meta {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 14px 20px;
        justify-content: flex-start;
    }

    .notice-date {
        flex-direction: row;
        gap: 4px;
    }

    .notice-date strong {
        font-size: 0.9rem;
    }

    .vacancy-stats {
        gap: 20px;
    }

    .pub-page-intro-aside {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .pub-doc-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-item-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pub-page-intro-aside {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   TENDERS — PROCESS STEPS
══════════════════════════════════════ */

.tender-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
}

.tender-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    position: relative;
}

/* vertical connector line between steps */
.tender-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 46px;
    bottom: -14px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: 0.25;
}

.tender-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.25);
}

.tender-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 6px;
}

.tender-step-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.tender-step-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   FORMS — HOW-TO STEPS
══════════════════════════════════════ */

.forms-how-to {
    display: flex;
    gap: 0;
    margin-top: 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.forms-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    gap: 12px;
    position: relative;
}

/* divider between steps */
.forms-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border);
}

.forms-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 100, 0, 0.08);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.forms-step:hover .forms-step-icon {
    background: rgba(0, 100, 0, 0.15);
    transform: scale(1.08);
}

.forms-step-icon i {
    font-size: 1.1rem;
    color: var(--accent);
}

.forms-step-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.forms-step-text strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.forms-step-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .forms-how-to {
        flex-direction: column;
    }

    .forms-step:not(:last-child)::after {
        right: auto;
        left: 20%;
        right: 20%;
        top: auto;
        bottom: 0;
        width: auto;
        height: 1px;
    }

    .tender-process-steps {
        gap: 4px;
    }
}

/* ══════════════════════════════════════
   TENDERS — ITEM LIST
══════════════════════════════════════ */

.tender-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.tender-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.tender-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.tender-item:hover::before {
    transform: scaleY(1);
}

.tender-item:hover {
    border-color: rgba(0, 100, 0, 0.28);
    box-shadow: 0 8px 32px rgba(0, 100, 0, 0.09);
    transform: translateX(4px);
}

.tender-item-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.tender-icon {
    width: 52px;
    height: 52px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.tender-item:hover .tender-icon {
    background: rgba(0, 100, 0, 0.09);
    border-color: rgba(0, 100, 0, 0.3);
    transform: scale(1.08) rotate(-4deg);
}

.tender-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.tender-info {
    min-width: 0;
    flex: 1;
}

.tender-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tender-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    align-items: center;
}

.tender-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
}

.tender-meta-tag i {
    font-size: 0.7rem;
    color: var(--accent);
}

.tender-meta-tag--closing {
    background: rgba(0, 100, 0, 0.06);
    border-color: rgba(0, 100, 0, 0.2);
    color: var(--text);
    font-weight: 600;
}

/* ══════════════════════════════════════
   FORMS — ITEM LIST
══════════════════════════════════════ */

.forms-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.form-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.form-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-item:hover::before {
    transform: scaleY(1);
}

.form-item:hover {
    border-color: rgba(0, 100, 0, 0.28);
    box-shadow: 0 8px 32px rgba(0, 100, 0, 0.09);
    transform: translateX(4px);
}

.form-item-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.form-icon {
    width: 48px;
    height: 48px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.form-item:hover .form-icon {
    background: rgba(0, 100, 0, 0.09);
    border-color: rgba(0, 100, 0, 0.3);
    transform: scale(1.08) rotate(-4deg);
}

.form-icon i {
    font-size: 1.15rem;
    color: var(--accent);
}

.form-info {
    min-width: 0;
    flex: 1;
}

.form-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.form-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
}

.form-meta-tag i {
    font-size: 0.68rem;
    color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 700px) {

    .tender-item,
    .form-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tender-item-left,
    .form-item-left {
        width: 100%;
    }

    .tender-info h3,
    .form-info h3 {
        white-space: normal;
    }
}

/* ── Closed state — deadline passed ── */
.btn-closed {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #555555;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: default;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.85;
}

.vacancy-item--closed,
.tender-item--closed {
    opacity: 0.7;
}

.vacancy-item--closed .vacancy-icon,
.tender-item--closed .tender-icon {
    opacity: 0.5;
}

.vacancy-item--closed .vacancy-meta-tag--deadline,
.tender-item--closed .tender-meta-tag--closing {
    background: rgba(85, 85, 85, 0.08);
    border-color: rgba(85, 85, 85, 0.2);
    color: #555555;
}

.vacancy-item--closed .vacancy-meta-tag--deadline i,
.tender-item--closed .tender-meta-tag--closing i {
    color: #555555;
}

/* ══════════════════════════════════════
   FLYOUT — Departments submenu
══════════════════════════════════════ */

/* About dropdown is a normal dropdown — no changes needed */
.dropdown--mega {
    min-width: 220px;
}

/* ── The "Departments" row is the flyout trigger ── */
.flyout-trigger {
    position: relative;
}

/* make the anchor fill the row and show the arrow */
.flyout-trigger>a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.flyout-arrow {
    font-size: 0.6rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.18s, color 0.18s;
}

.flyout-trigger:hover>a {
    background: var(--bg2) !important;
    color: var(--accent) !important;
}

.flyout-trigger:hover .flyout-arrow {
    transform: translateX(3px);
    color: var(--accent);
}

/* ── Flyout panel — floats to the right of the trigger row ── */
.flyout-panel {
    position: absolute;
    top: 0;
    left: 100%;
    /* flush with right edge of parent dropdown */
    background: #fff;
    border: 1px solid var(--border);
    min-width: 250px;
    box-shadow: 8px 8px 32px rgba(0, 100, 0, 0.12);
    padding: 6px 0;
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 300;
}

/* reveal on hover of the trigger row */
.flyout-trigger:hover .flyout-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* label at top of flyout */
.flyout-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    padding: 6px 16px 8px;
    margin: 0;
    border-bottom: 1px solid var(--border);
}

/* flyout links */
.flyout-panel a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 9px 16px !important;
    color: #595959 !important;
    font-size: 0.875rem;
    text-decoration: none;
    background: none !important;
    transition: background 0.15s, color 0.15s;
}

.flyout-panel a:hover {
    background: var(--bg2) !important;
    color: var(--accent) !important;
}

.flyout-panel a i {
    width: 18px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.65;
    flex-shrink: 0;
    transition: opacity 0.15s;
}

.flyout-panel a:hover i {
    opacity: 1;
}

/* ── Mobile: show flyout inline below trigger ── */
@media (max-width: 900px) {
    .flyout-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-top: 1px solid var(--border);
        padding: 4px 0 4px 16px;
    }

    .flyout-label {
        display: none;
    }

    .flyout-arrow {
        display: none;
    }
}

/* ══════════════════════════════════════
   GOVERNANCE BLOCKS
══════════════════════════════════════ */

.governance-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.governance-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #D5E3D5;
    border: 1px solid var(--border);
    padding: 28px 32px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.governance-block:hover {
    box-shadow: 0 8px 28px rgba(0, 100, 0, 0.08);
    transform: translateX(4px);
}

.governance-block-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 100, 0, 0.07);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.governance-block-icon i {
    font-size: 1.4rem;
    color: #008218;
}

.governance-block-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #005A12;
}

.governance-block-body p {
    font-size: 0.925rem;
    color: #000;
    line-height: 1.75;
}

.governance-block-body strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 600px) {
    .governance-block {
        flex-direction: column;
        gap: 16px;
        padding: 22px 20px;
    }
}

/* ── Governance image + blocks layout ── */
.governance-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
}

.governance-img-wrap {
    position: relative;
    noverflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 100, 0, 0.13);
    /* sticky so it stays in view while scrolling the blocks */
    position: sticky;
    top: 88px;
}

.governance-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.governance-img-wrap:hover img {
    transform: scale(1.03);
}

/* green badge overlay */
.governance-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.governance-img-badge i {
    font-size: 0.9rem;
}

/* blocks column */
.governance-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 900px) {
    .governance-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .governance-img-wrap {
        position: static;
    }

    .governance-img-wrap img {
        min-height: 260px;
    }
}

/* ══════════════════════════════════════
   VISION PAGE — image + content layout
══════════════════════════════════════ */

.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
    margin-top: 40px;
    margin-bottom: 56px;
}

/* ── Image panel ── */
.vision-img-wrap {
    position: sticky;
    top: 88px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 100, 0, 0.13);
}

.vision-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vision-img-wrap:hover img {
    transform: scale(1.03);
}

/* dark gradient overlay at bottom */
.vision-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 30, 0, 0.72) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.vision-img-quote {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.vision-img-quote i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-top: 2px;
}

.vision-img-quote p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    font-style: italic;
}

/* ── Right: vision/mission boxes stacked ── */
.vision-mission-content .vision-mission-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .vision-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vision-img-wrap {
        position: static;
    }

    .vision-img-wrap img {
        height: 260px;
    }
}

/* ══════════════════════════════════════
   LEGISLATIONS PAGE
══════════════════════════════════════ */

.leg-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
}

/* ── Image panel ── */
.leg-img-wrap {
    position: sticky;
    top: 88px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 100, 0, 0.13);
}

.leg-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.leg-img-wrap:hover img {
    transform: scale(1.03);
}

.leg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 40, 0, 0.65) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.leg-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ── Document list ── */
.leg-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.leg-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
}

.leg-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 2px 2px 0;
}

.leg-item:hover::before {
    transform: scaleY(1);
}

.leg-item:hover {
    border-color: rgba(0, 100, 0, 0.25);
    box-shadow: 0 8px 28px rgba(0, 100, 0, 0.09);
    transform: translateX(4px);
}

.leg-item-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 100, 0, 0.07);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, transform 0.22s;
}

.leg-item:hover .leg-item-icon {
    background: rgba(0, 100, 0, 0.13);
    transform: scale(1.08) rotate(-4deg);
}

.leg-item-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.leg-item-body {
    flex: 1;
    min-width: 0;
}

.leg-item-body h3 {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.leg-item-body p {
    font-size: 0.845rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.leg-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.15s;
}

.leg-item-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.leg-item-soon {
    display: inline-flex;
    align-items: center;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .leg-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .leg-img-wrap {
        position: static;
    }

    .leg-img-wrap img {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .leg-item {
        flex-wrap: wrap;
        gap: 14px;
    }
}

/* ══════════════════════════════════════
   DEPARTMENT PAGE — intro layout
══════════════════════════════════════ */

.dept-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

/* ── Image panel ── */
.dept-page-img-wrap {
    position: sticky;
    top: 88px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 100, 0, 0.13);
}

.dept-page-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.dept-page-img-wrap:hover img {
    transform: scale(1.03);
}

.dept-page-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 40, 0, 0.65) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.dept-page-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 130, 24, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.dept-page-img-badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dept-page-img-role {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.6);
}

.dept-page-img-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

/* ── Content side ── */
.dept-page-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
}

.dept-page-blocks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dept-page-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #D5E3D5;
    ;
    border: 1px solid var(--border);
    padding: 20px 22px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.dept-page-block:hover {
    border-color: rgba(0, 100, 0, 0.25);
    box-shadow: 0 6px 20px rgba(0, 100, 0, 0.07);
    transform: translateX(4px);
}

.dept-page-block-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 100, 0, 0.08);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.dept-page-block:hover .dept-page-block-icon {
    background: rgba(0, 100, 0, 0.14);
}

.dept-page-block-icon i {
    font-size: 1.4rem;
    color: #005A12;
}

.dept-page-block h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #008218;
}

.dept-page-block p {
    font-size: 0.925rem;
    color: #333;
    line-height: 1.75;
}

/* ── Dept cards as links ── */
.dept-card--link {
    text-decoration: none;
    cursor: pointer;
}

.dept-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 100, 0, 0.1);
    border-color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .dept-page-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dept-page-img-wrap {
        position: static;
    }
}


/* ══════════════════════════════════════
   CHAIRPERSON PAGE
══════════════════════════════════════ */

.chair-page {}

.chair-page img {
    width: 300px;
    margin-bottom: 20px;
}

.chair-page span.TheRole {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #005A12;
}

.chair-page span.TheName {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}



/* ══════════════════════════════════════
   REPORT CARDS
══════════════════════════════════════ */

.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.report-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    background: #D5E3D5;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.2s;
}

a.report-card {
    color: #005A12;
    text-align: center;
    text-transform: uppercase;
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 100, 0, 0.13);
    border-color: var(--accent);
}

/* Title — sits above the cover */
.report-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

/* Cover image fills the middle */
.report-cover {
    width: 100%;
    overflow: hidden;
    background: var(--bg2);
    flex: 1;
}

.report-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card:hover .report-cover img {
    transform: scale(1.04);
}

/* Button — sits at the bottom */
.report-footer {
    padding: 12px 16px;
    border-top: 1px solid #008218;
    flex-shrink: 0;
}


.report-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.15s;
}

.report-card:hover .report-btn {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .report-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 420px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   QUICK LINKS — background image section
══════════════════════════════════════ */

.quicklinks-bg {
    position: relative;
    background-image: url('https://www.piggspeak.org.sz/demo26/homeslider/images/bg31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.quicklinks-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    pointer-events: none;
}

/* cards on dark background */
.quicklinks-bg .qlink-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.quicklinks-bg .qlink-card i {
    color: #a8ffb0;
}

.quicklinks-bg .qlink-card span {
    color: rgba(255, 255, 255, 0.9);
}

.quicklinks-bg .qlink-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.quicklinks-bg .qlink-card.highlight {
    background: var(--accent);
    border-color: var(--accent);
}

.quicklinks-bg .qlink-card.highlight i,
.quicklinks-bg .qlink-card.highlight span {
    color: #fff;
}

.quicklinks-bg .qlink-card.highlight:hover {
    background: #004d00;
    border-color: #004d00;
}

/* fallback: no fixed attachment on mobile (causes jank) */
@media (max-width: 768px) {
    .quicklinks-bg {
        background-attachment: scroll;
    }
}

/* ── Councillor card — ward label + contact ── */
.ccard-ward {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 6px;
}

.ccard-body h3 {
    margin-bottom: 10px;
}

.ccard-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.ccard-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.ccard-contact a i {
    font-size: 0.7rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

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

/* centre the 2-card ministry grid */
.councillors-grid--center {
    grid-template-columns: repeat(2, 280px);
    justify-content: center;
}

@media (max-width: 700px) {
    .councillors-grid--center {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .councillors-grid--center {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   GALLERY — ALBUMS INDEX
══════════════════════════════════════ */

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.album-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.2s;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 100, 0, 0.13);
    border-color: rgba(0, 100, 0, 0.25);
}

.album-cover {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease;
}

.album-card:hover .album-cover {
    transform: scale(1.04);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 130, 24, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.25s;
    color: #fff;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 2rem;
}

.album-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
}

.album-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.album-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.album-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    transition: gap 0.2s;
}

.album-card:hover .album-view-btn {
    gap: 10px;
}

/* ══════════════════════════════════════
   GALLERY — ALBUM PHOTOS PAGE
══════════════════════════════════════ */

.album-back {
    display: block;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #A6DD00;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s, gap 0.2s;
}

.album-back:hover {
    color: var(--accent);
    gap: 12px;
}

.album-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.album-photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    background: var(--bg2);
}

.album-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.album-photo-item:hover img {
    transform: scale(1.07);
}

.album-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.22s;
    color: #fff;
    font-size: 1.4rem;
}

.album-photo-item:hover .album-photo-overlay {
    opacity: 1;
}

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

.lb-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) translateX(-3px);
}

.lb-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) translateX(3px);
}

.lb-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    max-width: 600px;
}

.lb-counter {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .albums-grid {
        grid-template-columns: 1fr;
    }

    .album-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .lb-prev {
        left: 8px;
    }

    .lb-next {
        right: 8px;
    }
}

/* ── Centre exec grid when fewer than 3 cards ── */
.exec-grid--center {
    grid-template-columns: repeat(2, 280px);
    justify-content: center;
}

@media (max-width: 600px) {
    .exec-grid--center {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   RATES PAGE
══════════════════════════════════════ */

.rates-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

/* ── Content blocks ── */
.rates-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rates-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #D5E3D5;
    border: 1px solid var(--border);
    padding: 24px 26px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rates-block:hover {
    border-color: rgba(0, 100, 0, 0.22);
    box-shadow: 0 6px 24px rgba(0, 100, 0, 0.07);
}

.rates-block-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 100, 0, 0.07);
    border: 1px solid rgba(0, 100, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.rates-block:hover .rates-block-icon {
    background: rgba(0, 100, 0, 0.13);
}

.rates-block-icon i {
    font-size: 1.1rem;
    color: #005A12;
}

.rates-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #005A12;
}

.rates-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.rates-block p:last-child {
    margin-bottom: 0;
}

/* bullet list */
.rates-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 12px 0;
}

.rates-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.rates-list li i {
    font-size: 1rem;
    color: #008218;
    width: 16px;
    text-align: center;
}

/* checklist */
.rates-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.rates-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
    line-height: 1.55;
}

.rates-checklist li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* warning */
.rates-warning {
    background: #fff8e1;
    border: 1px solid #f0c040;
    border-left: 4px solid #f0a000;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #7a5c00;
    font-size: 0.875rem;
    line-height: 1.65;
}

.rates-warning i {
    color: #f0a000;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.rates-warning strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.rates-warning p {
    margin: 0;
    color: #7a5c00;
}

/* ── Sidebar ── */
.rates-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 88px;
}

.rates-banking-card,
.rates-contact-card {
    background: #D5E3D5;
    border: 1px solid var(--border);
    overflow: hidden;
}

.rates-banking-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #005A12;
    color: #fff;
}

.rates-banking-header i {
    font-size: 1.2rem;
}

.rates-banking-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.rates-banking-body {
    padding: 8px 0;
}

.rates-bank-entry {
    padding: 14px 20px;
    border-bottom: 1px solid #000;
}

.rates-bank-entry:last-child {
    border-bottom: none;
}

.rates-bank-name {
    display: block;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.rates-bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    margin-bottom: 3px;
}

.rates-bank-detail strong {
    color: var(--text);
    font-weight: 600;
}

.rates-contact-card p,
.rates-contact-card ul {
    padding: 16px 20px 0;
}

.rates-contact-card strong {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px;
    display: block;
}

.rates-contact-card .btn-primary,
.rates-contact-card .btn-outline {
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
}

.rates-contact-card .btn-outline {
    margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .rates-content-grid {
        grid-template-columns: 1fr;
    }

    .rates-sidebar {
        position: static;
    }
}

/* ── Full image variant (executive page) ── */
.exec-img--full {
    height: auto !important;
    min-height: 0 !important;
}

.exec-img--full img {
    height: auto !important;
    object-fit: contain !important;
}

/* ── Full image variant (department pages — people photos) ── */
.dept-page-img--full {
    height: auto !important;
}

.dept-page-img--full img {
    height: auto !important;
    object-fit: contain !important;
    border-radius: 20px 20px 0 0;
}

/* ══════════════════════════════════════
   EXECUTIVE PAGE — profile card layout
══════════════════════════════════════ */

/* CEO — centred single card */
.exec-featured {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.exec-featured .exec-profile-card {
    max-width: 320px;
    width: 100%;
}

/* Team grid — 2 columns, centred */
.exec-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 28px;
    justify-content: center;
    padding-top: 48px;
}

/* ── Profile card ── */
.exec-profile-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.2s;
}

.exec-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 100, 0, 0.12);
    border-color: rgba(0, 100, 0, 0.25);
}

.exec-profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background: #005A12;
    margin: 28px auto 0;
    border: 4px solid var(--border);
    transition: border-color 0.2s;
}

.exec-profile-card:hover .exec-profile-img {
    border-color: #FFF;
}

.exec-profile-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.exec-profile-card:hover .exec-profile-img img {
    transform: scale(1.03);
}

.exec-profile-info {
    padding: 18px 20px 20px;
    text-align: center;
}

.exec-profile-role {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #333;
}

.exec-profile-name {
    font-size: 1.1rem;
    color: #008218;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .exec-team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .exec-featured .exec-profile-card {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .exec-team-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   FEEDBACK FORM
══════════════════════════════════════ */

/* ── Header ── */
.fb-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.fb-header-meta {
    background: #D5E3D5;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.fb-meta-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fb-meta-label i {
    color: var(--accent);
    font-size: 0.8rem;
}

.fb-meta-value {
    font-weight: 600;
    color: var(--text);
}

.fb-ref {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--accent);
}

.fb-office-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fb-office-note i {
    color: var(--accent);
}

/* ── Form sections ── */
.fb-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fb-section {
    background: #D5E3D5;
    border: 1px solid var(--border);
    overflow: hidden;
}

.fb-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: #00975F;
    border-bottom: 1px solid var(--border);
}

.fb-section-num {
    width: 32px;
    height: 32px;
    background: #005A12;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.fb-section-header h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0;
    color: #FFF;
}

.fb-section-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Two-col row ── */
.fb-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Checkbox / radio grid ── */
.fb-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
    margin-top: 8px;
}

.fb-checkbox-grid--col {
    grid-template-columns: 1fr;
}

.fb-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 7px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    font-size: 1rem;
}

.fb-check-item:hover {
    background: var(--bg2);
    border-color: var(--border);
    color: var(--text);
}

.fb-check-item input[type="checkbox"],
.fb-check-item input[type="radio"] {
    accent-color: var(--accent);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.fb-check-item--declaration {
    color: var(--text);
    font-weight: 500;
    padding: 12px 16px;
    background: var(--bg2);
    border: 1px solid var(--border);
}

/* ── Rating ── */
.fb-rating {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fb-rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.fb-rating-item input {
    display: none;
}

.fb-rating-item span {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.fb-rating-item:hover span,
.fb-rating-item input:checked+span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.fb-rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ── Privacy notice ── */
.fb-privacy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(0, 100, 0, 0.04);
    border: 1px solid rgba(0, 100, 0, 0.15);
    padding: 14px 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.fb-privacy i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-privacy strong {
    color: var(--text);
}

/* ── Submit row ── */
.fb-submit {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── How to submit ── */
.fb-submit-options {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 20px 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
}

.fb-submit-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.fb-submit-option i {
    font-size: 1.1rem;
    color: var(--accent);
}

.fb-submit-option a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.fb-submit-option a:hover {
    text-decoration: underline;
}

.fb-ack {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: auto;
}

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

.fb-optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .fb-header {
        grid-template-columns: 1fr;
    }

    .fb-header-meta {
        min-width: 0;
    }

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

    .fb-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-submit-options {
        gap: 16px;
    }

    .fb-ack {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .fb-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .fb-section-body {
        padding: 16px;
    }

    .fb-rating-item span {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}


/* ══════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════ */

.proj-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 40px;
    transition: box-shadow 0.25s ease, border-color 0.25s;
}

.proj-card:hover {
    border-color: rgba(0, 100, 0, 0.25);
    box-shadow: 0 12px 40px rgba(0, 100, 0, 0.10);
}

/* Image column */
.proj-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #003d00, #006400);
    min-height: 280px;
}

.proj-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.proj-card:hover .proj-img {
    transform: scale(1.04);
}

.proj-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 50, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s;
}

.proj-img-overlay i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.proj-card:hover .proj-img-overlay {
    opacity: 1;
}

/* Placeholder when image is missing */
.proj-img-placeholder {
    background: linear-gradient(135deg, #003d00, #006400);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proj-img-placeholder .proj-img {
    display: none;
}

.proj-img-placeholder .proj-img-overlay {
    opacity: 1;
    background: transparent;
}

/* Body column */
.proj-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proj-number {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 2px;
    align-self: flex-start;
}

.proj-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0;
}

.proj-summary {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.proj-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Stats sub-section */
.proj-stats-wrap {
    margin-top: 16px;
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 20px 24px;
}

.proj-stats-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proj-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.proj-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 18px;
    flex: 1;
    min-width: 200px;
}

.proj-stat-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 100, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proj-stat-icon i {
    color: var(--accent);
    font-size: 1rem;
}

.proj-stat-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.proj-stat-info strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: #222;
}

.proj-stat-info span {
    font-size: 0.815rem;
    color: var(--text-muted);
}

/* Tables inside projects */
.proj-table-wrap {
    overflow-x: auto;
}

.proj-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.proj-table thead tr {
    background: rgba(0, 100, 0, 0.1);
}

.proj-table thead th {
    text-align: left;
    padding: 10px 14px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid rgba(0, 100, 0, 0.2);
    white-space: nowrap;
}

.proj-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.proj-table tbody tr:nth-child(even) {
    background: rgba(0, 100, 0, 0.03);
}

.proj-table tbody tr:hover {
    background: rgba(0, 100, 0, 0.06);
}

.proj-table tbody td {
    padding: 9px 14px;
    color: var(--text-muted);
    vertical-align: top;
}

.proj-table tbody td strong {
    color: #222;
}

/* Responsive */
@media (max-width: 900px) {
    .proj-card {
        grid-template-columns: 1fr;
    }

    .proj-img-wrap {
        min-height: 220px;
    }

    .proj-body {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .proj-body {
        padding: 20px 16px;
    }

    .proj-stats-wrap {
        padding: 16px;
    }

    .proj-stats-grid {
        flex-direction: column;
    }
}