/* ===========================
   CSS Variables & Settings
   =========================== */
:root {
    /* Color System: Green, White, Yellow (Premium Institutional) */
    --cbm-green: #0C6B40;
    --cbm-green-dark: #07472A;
    --cbm-green-light: #E8F3EE;

    --cbm-yellow: #F0B90B;
    --cbm-yellow-light: #FDFAEA;

    --cbm-white: #FFFFFF;
    --cbm-light: #F8F9FA;
    --cbm-gray-light: #E9ECEF;
    --cbm-gray: #6C757D;
    --cbm-gray-dark: #495057;
    --cbm-dark: #121416;

    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(12, 107, 64, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);

    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --nav-height: 80px;
}

/* ===========================
   Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--cbm-dark);
    background-color: var(--cbm-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography Utilities */
.text-green {
    color: var(--cbm-green);
}

.text-yellow {
    color: var(--cbm-yellow);
}

.text-white {
    color: var(--cbm-white);
}

.text-dark {
    color: var(--cbm-dark);
}

.text-gray {
    color: var(--cbm-gray);
}

.text-gray-dark {
    color: var(--cbm-gray-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--cbm-gray);
    margin-bottom: 48px;
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--cbm-light);
}

.bg-dark {
    background-color: var(--cbm-dark);
}

.bg-green {
    background-color: var(--cbm-green);
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-1 {
    margin-bottom: 8px;
}

.m-b-2 {
    margin-bottom: 24px;
}

.m-t-1 {
    margin-top: 16px;
}

.w-100 {
    width: 100%;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.border-top {
    border-top: 1px solid var(--cbm-gray-light);
}

/* Grid System */
.grid {
    display: grid;
    gap: 32px;
}

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

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

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--cbm-green);
    color: var(--cbm-white);
    box-shadow: 0 4px 14px rgba(12, 107, 64, 0.3);
}

.btn-primary:hover {
    background-color: var(--cbm-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 107, 64, 0.4);
}

.btn-secondary {
    background-color: var(--cbm-white);
    color: var(--cbm-dark);
    border: 1px solid var(--cbm-gray-light);
}

.btn-secondary:hover {
    border-color: var(--cbm-dark);
    background-color: var(--cbm-light);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--cbm-green);
    transition: var(--transition);
}

.link-arrow:hover {
    gap: 12px;
}

/* ===========================
   Navigation (Stripe/Apple Style)
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--cbm-dark);
    letter-spacing: -0.03em;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background-color: var(--cbm-green);
    color: var(--cbm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--cbm-gray-dark);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cbm-green);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--cbm-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 32px;
    transform: translateY(-100%);
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cbm-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--cbm-gray-light);
}

.mobile-cta {
    margin-top: auto;
}


/* ===========================
   Hero Section
   =========================== */
.hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--cbm-green-light);
    color: var(--cbm-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--cbm-gray);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--cbm-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 4s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--cbm-yellow-light);
    color: var(--cbm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-card .card-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--cbm-dark);
}

.floating-card .card-text span {
    font-size: 0.875rem;
    color: var(--cbm-gray);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

/* ===========================
   Interactive Map
   =========================== */
.map-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cbm-gray-light);
    overflow: hidden;
}

.map-board {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.map-pin {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: var(--cbm-green);
    border: 3px solid var(--cbm-white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(12, 107, 64, 0.4);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: 10;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: var(--cbm-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: ripple 2s infinite ease-out;
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 20;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.map-tooltip {
    position: absolute;
    background: var(--cbm-white);
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 30;
    pointer-events: none;
    text-align: left;
}

.map-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tt-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cbm-gray-light);
}

.tt-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tt-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.tt-info span {
    font-size: 0.75rem;
    color: var(--cbm-green);
    font-weight: 600;
}

.tt-body {
    font-size: 0.875rem;
    color: var(--cbm-gray-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}


/* ===========================
   About Section & Election
   =========================== */
.election-campaign-section {
    position: relative;
    background-image: url('images/banner15_compressed.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    padding: 120px 0;
}

.election-campaign-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.governor-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.gov-image-wrapper {
    text-align: center;
    width: 450px;
    transition: var(--transition);
}

.gov-image-wrapper:hover {
    transform: scale(1.05);
}

.gov-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--cbm-gray);
    margin-bottom: 24px;
}

.about-cards {
    display: grid;
    gap: 24px;
}

.card {
    background: var(--cbm-white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cbm-gray-light);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.bg-green-light {
    background-color: var(--cbm-green-light);
}

.bg-yellow-light {
    background-color: var(--cbm-yellow-light);
}

.about-card h3 {
    margin-bottom: 12px;
}

.about-card p {
    color: var(--cbm-gray);
    font-size: 0.95rem;
}


/* ===========================
   Initiatives
   =========================== */
.initiative-card {
    background: #1A1D20;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #2A2E33;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.initiative-card .card-image {
    height: 200px;
    overflow: hidden;
}

.initiative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

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

.initiative-card .card-content {
    padding: 24px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--cbm-yellow);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.initiative-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.initiative-card p {
    color: #A0A5AA;
    font-size: 0.95rem;
}


/* ===========================
   News / Blog
   =========================== */
.news-card {
    display: flex;
    border-radius: var(--border-radius);
    background: var(--cbm-white);
    border: 1px solid var(--cbm-gray-light);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
}

.news-img {
    width: 300px;
    object-fit: cover;
}

.news-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    font-size: 0.875rem;
    color: var(--cbm-green);
    font-weight: 600;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-content p {
    color: var(--cbm-gray);
    font-size: 0.95rem;
}


/* ===========================
   Team & Leaders Section
   =========================== */
.leader-featured {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--cbm-white);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    margin-bottom: 64px;
}

.leader-img-wrap {
    flex: 0 0 300px;
}

.leader-img-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.leader-info {
    flex: 1;
}

.leader-info h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--cbm-dark);
}

.leader-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--cbm-gray-dark);
    font-style: italic;
    border-left: 4px solid var(--cbm-green);
    padding-left: 16px;
    margin-bottom: 24px;
}

.leader-socials {
    display: flex;
    gap: 16px;
}

.leader-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cbm-light);
    color: var(--cbm-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.leader-socials a:hover {
    background: var(--cbm-green);
    color: var(--cbm-white);
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.team-member h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.team-member .role {
    font-size: 0.875rem;
    color: var(--cbm-green);
    font-weight: 600;
    margin-bottom: 4px;
}

.team-member .lga {
    font-size: 0.875rem;
    color: var(--cbm-gray);
}


/* ===========================
   Forms
   =========================== */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    background: var(--cbm-white);
    padding: 48px;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.form-info p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.benefit-list ion-icon {
    font-size: 1.5rem;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cbm-dark);
}

input,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cbm-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--cbm-light);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--cbm-green);
    background: var(--cbm-white);
    box-shadow: 0 0 0 3px rgba(12, 107, 64, 0.1);
}

/* ===========================
   Newsletter
   =========================== */
.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h2 {
    margin-bottom: 16px;
}

.newsletter-box p {
    color: var(--cbm-gray);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--cbm-dark);
    color: var(--cbm-white);
    padding: 80px 0 32px;
}

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

.footer-brand p {
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--cbm-white);
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--cbm-yellow);
}

.footer-links h4,
.footer-address h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-links a {
    display: block;
    color: #A0A5AA;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cbm-white);
}

.footer-address p {
    color: #A0A5AA;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0A5AA;
    font-size: 0.875rem;
}


/* ===========================
   Animations
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.delay-1 {
    transition-delay: 0.2s;
}


/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .news-card {
        flex-direction: column;
    }

    .news-img {
        width: 100%;
        height: 200px;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

@media (max-width: 768px) {

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

    .hamburger {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero p {
        margin: 0 auto 32px;
    }

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

    .floating-card {
        left: 20px;
        bottom: 20px;
        padding: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .leader-featured {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        gap: 24px;
    }

    .leader-img-wrap {
        flex: auto;
        width: 100%;
    }

    .leader-info p {
        border-left: none;
        padding-left: 0;
    }

    .leader-socials {
        justify-content: center;
    }
}

/* =======================================
   Campaign Timeline
   ======================================= */
.campaign-hero {
    padding: 160px 0 80px;
    background: #000;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.campaign-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

.campaign-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.campaign-hero .badge {
    background: var(--cbm-yellow);
    color: #000;
    font-weight: 700;
    margin-bottom: 24px;
}

.campaign-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.timeline-section {
    padding: 80px 0;
    background: var(--cbm-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--cbm-green-light);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 48px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cbm-green);
    border: 4px solid var(--cbm-light);
    box-shadow: 0 0 0 4px var(--cbm-green-light);
}

.timeline-date {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cbm-green);
    margin-bottom: 16px;
    display: inline-block;
}

.timeline-events {
    background: white;
    padding: 8px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-events:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timeline-event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.timeline-event:last-child {
    border-bottom: none;
}

.event-lga {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.event-time {
    color: var(--cbm-green);
    font-size: 0.95rem;
    background: var(--cbm-green-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-item::before {
        left: -7px;
    }

    .timeline-events {
        padding: 8px 16px;
    }

    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =======================================
   Campaign Modal Styles
   ======================================= */
.campaign-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.campaign-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: var(--cbm-white);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 80vh;
    }
}

.campaign-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-surface);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--cbm-yellow);
}

.modal-header {
    padding: 32px 32px 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-surface);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.modal-header p {
    color: var(--cbm-gray-dark);
    font-size: 1rem;
}

.modal-body {
    padding: 0 32px 32px;
    overflow-y: auto;
}

.modal-body .timeline {
    padding: 24px 0 0 0;
}