/* ============================================
   PROFESSIONAL CAMPAIGN THEME - VERSION 7.0
   Vibrant & Elegant Color Palette - Blue Accent
   ============================================ */

:root {
    /* Primary - Vibrant Green (Growth, Progress, Nature) */
    --primary: #0d7a4a;
    --primary-dark: #0a5c38;
    --primary-light: #1a9e5e;
    --primary-soft: #e6f5ed;
    
    /* Accent - Vibrant Blue (Trust, Authority, Professionalism) */
    --accent: #1a5a9b;
    --accent-dark: #0f3d6b;
    --accent-light: #2a7ac4;
    --accent-soft: #e8f0f8;
    --accent-extra-light: #d4e4f5;
    
    /* Secondary - Royal Blue (Trust, Authority, Stability) */
    --secondary: #1a3a6b;
    --secondary-light: #2a5a9b;
    --secondary-soft: #e8edf5;
    
    /* Highlight - Warm Orange (Energy, Action, Passion) */
    --highlight: #e85d2c;
    --highlight-light: #f07a4a;
    --highlight-soft: #fdeee8;
    
    /* Neutrals */
    --text-dark: #1a1a2e;
    --text-muted: #4a4a5a;
    --text-light: #7a7a8a;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border: #e8eaed;
    
    /* Shadows */
    --shadow: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.12);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(10, 46, 34, 0.88) 0%, rgba(26, 90, 155, 0.75) 100%);
    --gradient-primary: linear-gradient(135deg, #0d7a4a 0%, #1a9e5e 100%);
    --gradient-accent: linear-gradient(135deg, #1a5a9b 0%, #2a7ac4 100%);
    --gradient-dark: linear-gradient(135deg, #0a2e22 0%, #1a3a6b 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(10, 46, 34, 0.88) 0%, rgba(26, 58, 107, 0.70) 100%);
    
    --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
}

/* ============================================
   BASE RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.6em;
}

h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: 2.2rem; font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 500; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 122, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 122, 74, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 90, 155, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 90, 155, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-blue {
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 90, 155, 0.3);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 90, 155, 0.4);
}

.btn-green {
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(13, 122, 74, 0.3);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 122, 74, 0.4);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-eyebrow.light {
    color: var(--accent-light);
}

.section-header-center h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header-center p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-padding {
    padding: 5rem 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 600;
}

.logo h1 a {
    color: var(--primary);
    text-decoration: none;
}

.logo p {
    font-size: 0.7rem;
    color: var(--accent);
    margin: 0;
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent);
}





/* ============================================
   HERO SECTION - EXTRA LARGE & BOLD
   ============================================ */

.hero-video-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 0;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 46, 34, 0.85) 0%, rgba(26, 58, 107, 0.70) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1000px;
    padding: 2rem 0 4rem;
    width: 100%;
}

/* Kicker - Engineer title - EXTRA BRIGHT & VISIBLE */
.hero-kicker {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4a9eff;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(74, 158, 255, 0.4), 0 0 40px rgba(74, 158, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* Title - RESET NIGERIA - EXTRA LARGE */
.hero-title {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    letter-spacing: 3px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-title .reset-text {
    color: #4a9eff;
    display: inline-block;
    text-shadow: 0 0 40px rgba(74, 158, 255, 0.3);
}

.hero-title .nigeria-text {
    color: #ffffff;
    display: inline-block;
    margin-left: 0.25rem;
}

/* Subtitle - EXTRA LARGE */
.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Description - EXTRA LARGE & READABLE */
.hero-description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin-bottom: 2.5rem;
    opacity: 1;
    font-weight: 400;
}

/* Buttons - EXTRA LARGE */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-actions .btn {
    padding: 1.4rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    min-width: 220px;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, #f5a623 0%, #f7c948 100%);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(245, 166, 35, 0.5);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #0a2e22;
    transform: translateY(-4px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: bounce 2s infinite;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.hero-scroll-indicator svg {
    display: block;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ============================================
   HERO - TABLET
   ============================================ */
@media (max-width: 992px) {
    .hero-kicker {
        font-size: 1.3rem;
        padding: 0.25rem 1rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        max-width: 90%;
    }
    
    .hero-actions .btn {
        padding: 1.1rem 2.8rem;
        font-size: 1.15rem;
        min-width: 200px;
    }
    
    .hero-scroll-indicator {
        bottom: 2rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ============================================
   HERO - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .hero-video-wrapper {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .hero-video-content {
        padding: 1rem 0 5rem;
        text-align: center;
    }
    
    .hero-kicker {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0.2rem 0.8rem;
        display: inline-block;
    }
    
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.1;
    }
    
    .hero-title .reset-text {
        display: block;
    }
    
    .hero-title .nigeria-text {
        display: block;
        margin-left: 0;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0;
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 0;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 350px;
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
        text-align: center;
        justify-content: center;
        min-width: unset;
    }
    
    .hero-scroll-indicator {
        bottom: 1.2rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
        gap: 0.5rem;
        background: rgba(0, 0, 0, 0.3);
    }
}

/* ============================================
   HERO - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .hero-video-wrapper {
        min-height: 85vh;
    }
    
    .hero-kicker {
        font-size: 0.8rem;
        padding: 0.15rem 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-actions .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        max-width: 300px;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
}





/* ============================================
   WHATSAPP RIBBON - PREMIUM ATTENTION GRABBING
   ============================================ */

.ribbon-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ribbon-link.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappGlow 2.5s ease-in-out infinite;
    position: relative;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.ribbon-link.whatsapp-link::before {
    content: 'ðŸ‘¥';
    font-size: 1.2rem;
}

.ribbon-link.whatsapp-link::after {
    content: 'â†’';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ribbon-link.whatsapp-link:hover::after {
    transform: translateX(5px);
}

.ribbon-link.whatsapp-link:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #1da855 0%, #0e6b5e 100%);
}

/* Glow Animation */
@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.2);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ribbon-link.whatsapp-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ribbon-link.whatsapp-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .ribbon-link.whatsapp-link::before {
        font-size: 1rem;
    }
}










/* ============================================
   MEET SEYI SECTION - COMPLETE
   Title: Bold with Background
   Image Rotator + Brief Writeup + Read More Button
   ============================================ */

.meet-seyi-section {
    background: #f5f7fa;
    padding: 5rem 0;
}

/* ============================================
   MEET SEYI HEADING - BOLD WITH BACKGROUND
   ============================================ */

.meet-seyi-heading {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #0d7a4a 0%, #1a9e5e 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 122, 74, 0.25);
}

/* Decorative background circles */
.meet-seyi-heading::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.meet-seyi-heading::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Eyebrow - "Meet Seyi" */
.meet-seyi-heading .section-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Main Title */
.meet-seyi-heading h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Gold Underline */
.meet-seyi-heading .heading-underline {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #f7c948);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Description text */
.meet-seyi-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0.75rem auto 0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ============================================
   MEET SEYI CONTENT GRID
   ============================================ */

.meet-seyi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}






/* ============================================
   IMAGE ROTATOR
   ============================================ */

.meet-seyi-images {
    position: relative;
}

.image-rotator {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    background: #e8eaed;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.rotator-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.rotator-slide.active {
    opacity: 1;
    z-index: 2;
}

.rotator-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dot indicators */
.rotator-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.rotator-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rotator-dots .dot.active {
    background: #1a5a9b;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* ============================================
   MEET SEYI CONTENT
   ============================================ */

.meet-seyi-content {
    display: flex;
    flex-direction: column;
}

.meet-seyi-content .content-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a5a9b;
    margin-bottom: 0.5rem;
}

.meet-seyi-content h3 {
    color: #1a1a2e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.meet-seyi-content p {
    color: #4a4a5a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.meet-seyi-content .read-more-btn-link {
    display: inline-block;
    background: linear-gradient(135deg, #1a5a9b 0%, #2a7ac4 100%);
    color: #ffffff;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(26, 90, 155, 0.3);
}

.meet-seyi-content .read-more-btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 90, 155, 0.4);
}

/* ============================================
   MEET SEYI - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .meet-seyi-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meet-seyi-heading h2 {
        font-size: 2.8rem;
    }
    
    .meet-seyi-images {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .meet-seyi-content {
        text-align: center;
    }
    
    .meet-seyi-content .read-more-btn-link {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .meet-seyi-section {
        padding: 3rem 0;
    }
    
    .meet-seyi-heading {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .meet-seyi-heading h2 {
        font-size: 2.2rem;
    }
    
    .meet-seyi-heading .section-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .meet-seyi-heading p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .meet-seyi-content h3 {
        font-size: 1.6rem;
    }
    
    .meet-seyi-content p {
        font-size: 0.95rem;
    }
    
    .meet-seyi-images {
        max-width: 280px;
    }
    
    .rotator-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .meet-seyi-heading {
        padding: 1.25rem 0.75rem;
    }
    
    .meet-seyi-heading h2 {
        font-size: 1.8rem;
    }
    
    .meet-seyi-heading p {
        font-size: 0.9rem;
    }
    
    .meet-seyi-content h3 {
        font-size: 1.4rem;
    }
    
    .meet-seyi-content p {
        font-size: 0.9rem;
    }
    
    .meet-seyi-images {
        max-width: 220px;
    }
    
    .meet-seyi-content .read-more-btn-link {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}






/* ============================================
   WHATSAPP CTA SECTION - AFTER MEET SEYI
   ============================================ */

.whatsapp-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a3e2d 0%, #1a5c42 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.whatsapp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 50%;
}

.whatsapp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(37, 211, 102, 0.03);
    border-radius: 50%;
}

.whatsapp-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Content */
.whatsapp-cta-text {
    color: white;
}

.cta-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #25D366;
    margin-bottom: 0.5rem;
}

.whatsapp-cta-text h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.whatsapp-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
}

/* WhatsApp Button */
.whatsapp-cta-button {
    text-align: center;
}

.btn-whatsapp-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    animation: whatsappGlow 2.5s ease-in-out infinite;
    gap: 0.25rem;
}

.btn-whatsapp-large:hover {
    transform: scale(1.05) translateY(-3px);
    background: #1da855;
    box-shadow: 0 10px 45px rgba(37, 211, 102, 0.5);
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

/* Glow Animation */
@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.15);
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .whatsapp-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .whatsapp-cta-text p {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .whatsapp-cta-section {
        padding: 3rem 0;
    }
    
    .whatsapp-cta-text h2 {
        font-size: 1.6rem;
    }
    
    .whatsapp-cta-text p {
        font-size: 0.95rem;
    }
    
    .btn-whatsapp-large {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-cta-section {
        padding: 2rem 0;
    }
    
    .whatsapp-cta-text h2 {
        font-size: 1.3rem;
    }
    
    .btn-whatsapp-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
}









/* ============================================
   THE MOVEMENT SECTION - FULL WIDTH FLAG
   ============================================ */

.movement-section {
    padding: 0;
    background: #f5f7fa;
}

/* ============================================
   MOVEMENT HEADING
   ============================================ */

.movement-heading {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a3a6b 0%, #2a5a9b 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.movement-heading::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.movement-heading::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.movement-heading .section-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.movement-heading h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.movement-heading .heading-underline {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #f7c948);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.movement-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0.75rem auto 0;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}



/* ============================================
   FULL WIDTH FLAG - WITH MARGINS
   ============================================ */

.movement-flag-full {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.movement-flag-full img {
    width: calc(100% - 48px);
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .movement-flag-full img {
        width: calc(100% - 32px);
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .movement-flag-full img {
        width: calc(100% - 20px);
        border-radius: 10px;
    }
}



/* ============================================
   MOVEMENT CONTENT (Below Flag)
   ============================================ */

.movement-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.movement-content-wrapper .content-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5a623;
    margin-bottom: 0.5rem;
}

.movement-content-wrapper h3 {
    color: #1a1a2e;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.movement-content-wrapper p {
    color: #4a4a5a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    max-width: 800px;
}

/* ============================================
   ALLIANCE HIGHLIGHTS
   ============================================ */

.alliance-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.alliance-item {
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
}

.alliance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #1a5a9b;
}

.alliance-item .item-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.alliance-item .item-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.alliance-item .item-desc {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
}

.movement-content-wrapper .read-more-btn-link {
    display: inline-block;
    background: linear-gradient(135deg, #f5a623 0%, #f7c948 100%);
    color: #1a1a2e;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.movement-content-wrapper .read-more-btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

/* ============================================
   MOVEMENT SECTION - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .movement-heading h2 {
        font-size: 2.8rem;
    }
    
    .movement-content-wrapper {
        padding: 2rem 1.5rem 3rem;
    }
    
    .movement-content-wrapper h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .movement-heading {
        padding: 2rem 1rem;
    }
    
    .movement-heading h2 {
        font-size: 2.2rem;
    }
    
    .movement-heading .section-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .movement-heading p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .movement-content-wrapper {
        padding: 1.5rem 1rem 2.5rem;
    }
    
    .movement-content-wrapper h3 {
        font-size: 1.6rem;
    }
    
    .movement-content-wrapper p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .alliance-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .alliance-item {
        padding: 1rem 0.75rem;
    }
    
    .alliance-item .item-icon {
        font-size: 1.6rem;
    }
    
    .alliance-item .item-label {
        font-size: 0.7rem;
    }
    
    .alliance-item .item-desc {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .movement-heading {
        padding: 1.5rem 0.75rem;
    }
    
    .movement-heading h2 {
        font-size: 1.8rem;
    }
    
    .movement-heading p {
        font-size: 0.9rem;
    }
    
    .movement-content-wrapper {
        padding: 1.25rem 0.75rem 2rem;
    }
    
    .movement-content-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .movement-content-wrapper p {
        font-size: 0.9rem;
    }
    
    .alliance-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .alliance-item {
        padding: 0.75rem 0.5rem;
    }
    
    .alliance-item .item-icon {
        font-size: 1.4rem;
    }
    
    .movement-content-wrapper .read-more-btn-link {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}








/* ============================================
   AGENDA SECTION - COMPLETE
   Title: The Reset Agenda (Big, Bold, with Background)
   Cards: 4 colored cards with white text
   ============================================ */

.agenda-section {
    background: #f5f7fa;
    padding: 5rem 0;
}

/* ============================================
   AGENDA HEADING - BIG, BOLD, WITH BACKGROUND
   ============================================ */

.agenda-heading {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #1a5a9b 0%, #2a7ac4 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 90, 155, 0.25);
}

/* Decorative background circles */
.agenda-heading::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.agenda-heading::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Eyebrow - "The Reset Agenda" */
.agenda-heading .section-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Main Title - "A mission-driven plan for Nigeria" */
.agenda-heading h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Gold Underline */
.agenda-heading .heading-underline {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #f7c948);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Description text */
.agenda-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0.75rem auto 0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ============================================
   AGENDA CARDS GRID
   ============================================ */

.card-grid {
    display: grid;
    gap: 2rem;
}

.mission-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   AGENDA CARDS - COLORED BACKGROUNDS
   ============================================ */

.mission-card {
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: none;
}

/* Card 1 - Blue */
.mission-card:nth-child(1) {
    background: linear-gradient(135deg, #1a5a9b 0%, #2a7ac4 100%);
}

/* Card 2 - Green */
.mission-card:nth-child(2) {
    background: linear-gradient(135deg, #0d7a4a 0%, #1a9e5e 100%);
}

/* Card 3 - Dark Blue */
.mission-card:nth-child(3) {
    background: linear-gradient(135deg, #1a3a6b 0%, #2a5a9b 100%);
}

/* Card 4 - Warm Orange/Red */
.mission-card:nth-child(4) {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

/* Hover effect */
.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Light overlay on hover */
.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mission-card:hover::after {
    opacity: 1;
}

/* Card Icon */
.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

/* Card Title - White */
.mission-card h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Card Description - Light White */
.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Card Link - White with underline */
.mission-card a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.mission-card a:hover {
    border-bottom-color: #ffffff;
    transform: translateX(4px);
}

/* ============================================
   AGENDA SECTION - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .agenda-heading h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .agenda-section {
        padding: 3rem 0;
    }
    
    .agenda-heading {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .agenda-heading h2 {
        font-size: 2.2rem;
    }
    
    .agenda-heading .section-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .agenda-heading p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    .mission-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .agenda-heading {
        padding: 1.25rem 0.75rem;
    }
    
    .agenda-heading h2 {
        font-size: 1.8rem;
    }
    
    .agenda-heading p {
        font-size: 0.9rem;
    }
    
    .mission-card {
        padding: 1.25rem;
    }
}









/* ============================================
   JOIN CARDS - WITH BACKGROUND COLORS
   ============================================ */

.join-section {
    background: var(--bg-light, #f5f7fa);
    padding: 5rem 0;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Join Cards - Different background colors */
.join-card {
    border-radius: 16px;
    padding: 1.75rem;
    transition: var(--transition, all 0.3s ease);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: none;
}

/* Card 1 - Gold/Orange */
.join-card:nth-child(1) {
    background: linear-gradient(135deg, #d4891a 0%, #f5a623 100%);
}

/* Card 2 - Green */
.join-card:nth-child(2) {
    background: linear-gradient(135deg, #0d7a4a 0%, #1a9e5e 100%);
}

/* Card 3 - Blue */
.join-card:nth-child(3) {
    background: linear-gradient(135deg, #1a5a9b 0%, #2a7ac4 100%);
}

/* Card 4 - Dark Blue/Purple */
.join-card:nth-child(4) {
    background: linear-gradient(135deg, #1a3a6b 0%, #2a5a9b 100%);
}

.join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Card Icon */
.join-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Card Kicker - Light color */
.join-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* Card Title - White */
.join-card h3 {
    color: #ffffff;
    margin: 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Card Description - Light */
.join-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Card List - Light */
.join-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.join-card li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.5rem;
}

.join-card li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Join Card Buttons - Dark with white text */
.join-card .btn {
    color: #1a1a2e;
    background: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.join-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Different button colors for each card */
.join-card:nth-child(1) .btn {
    background: #ffffff;
    color: #d4891a;
}

.join-card:nth-child(2) .btn {
    background: #ffffff;
    color: #0d7a4a;
}

.join-card:nth-child(3) .btn {
    background: #ffffff;
    color: #1a5a9b;
}

.join-card:nth-child(4) .btn {
    background: #ffffff;
    color: #1a3a6b;
}

.join-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   JOIN CARDS - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .join-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-card {
        padding: 1.5rem;
    }
}








/* ============================================
   DONATION BANNER
   ============================================ */
.donation-banner {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: white;
}

.donation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.donation-banner h2 {
    color: white;
}

.donation-banner p {
    color: rgba(255,255,255,0.85);
    max-width: 500px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-fields {
    display: flex;
    gap: 1rem;
}

.newsletter-fields input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-size: 1rem;
}

.newsletter-fields input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 90, 155, 0.1);
}

.newsletter-consent {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #aaaaaa;
    margin: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #aaaaaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: #777777;
    font-size: 0.75rem;
    margin: 0;
}

/* ============================================
   PARTY FLAG
   ============================================ */
.party-flag-section {
    padding: 2rem 0;
    text-align: center;
    background: transparent;
}

.flag-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.party-flag-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   READ MORE BUTTON
   ============================================ */
.section-collapsible {
    margin-bottom: 2rem;
}

.section-excerpt {
    margin-bottom: 1rem;
}

.section-full {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.read-more-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--accent);
    color: white;
}

.read-more-btn.active {
    background: var(--accent);
    color: white;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .join-grid { grid-template-columns: repeat(2, 1fr); }
    .meet-seyi-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .donation-grid { grid-template-columns: 1fr; text-align: center; }
    .donation-grid p { margin: 0 auto; }
    .newsletter-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-video-wrapper { min-height: 80vh; padding: 80px 0 40px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-kicker { font-size: 0.85rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
    
    .ribbon-grid { flex-direction: column; align-items: center; gap: 0.8rem; }
    
    .mission-grid { grid-template-columns: 1fr; }
    .join-grid { grid-template-columns: 1fr; }
    
    .donation-grid { grid-template-columns: 1fr; text-align: center; }
    .donation-grid p { margin: 0 auto; }
    
    .newsletter-grid { grid-template-columns: 1fr; }
    .newsletter-fields { flex-direction: column; }
    .newsletter-fields button { width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .meet-seyi-images { max-width: 300px; margin: 0 auto; }
    .meet-seyi-content { text-align: center; }
    
    .section-padding { padding: 3rem 0; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-kicker { font-size: 0.75rem; }
    .hero-description { font-size: 0.85rem; }
    
    .meet-seyi-images { max-width: 240px; }
    
    .rotator-dots .dot { width: 10px; height: 10px; }
    
    input, select, textarea, button { font-size: 16px !important; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.5rem; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1.5rem; }
.pt-3 { padding-top: 2.5rem; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1.5rem; }
.pb-3 { padding-bottom: 2.5rem; }






/* ============================================
   IMAGE ROTATOR - MOBILE FIX
   ============================================ */

.image-rotator {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    background: #f0f2f5;
}

.rotator-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.rotator-slide.active {
    opacity: 1;
    z-index: 2;
}

.rotator-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dot indicators */
.rotator-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.rotator-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rotator-dots .dot.active {
    background: var(--accent, #1a5a9b);
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
    .image-rotator {
        aspect-ratio: 3/4;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .rotator-dots .dot {
        width: 10px;
        height: 10px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .image-rotator {
        max-width: 260px;
    }
}




/* ============================================
   IMAGE ROTATOR - MOBILE VISIBILITY FIX
   ============================================ */

.meet-seyi-images {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.image-rotator {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    background: #f0f2f5;
}

.rotator-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.rotator-slide.active {
    opacity: 1;
    z-index: 2;
}

.rotator-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dot indicators */
.rotator-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: center;
    padding: 0;
}

.rotator-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
    flex-shrink: 0;
}

.rotator-dots .dot.active {
    background: #1a5a9b;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
    .image-rotator {
        aspect-ratio: 3/4;
        max-width: 320px;
        margin: 0 auto;
        height: auto;
    }
    
    .rotator-slide img {
        min-height: 200px;
    }
    
    .rotator-dots .dot {
        width: 10px;
        height: 10px;
        gap: 8px;
    }
    
    .meet-seyi-images {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .image-rotator {
        max-width: 260px;
    }
    
    .meet-seyi-images {
        max-width: 260px;
    }
    
    .rotator-slide img {
        min-height: 160px;
    }
}





/* ============================================
   IMAGE ROTATOR - CLEAN VERSION
   ============================================ */

.image-rotator {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    background: #f0f2f5;
}

.rotator-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.rotator-slide.active {
    opacity: 1;
    z-index: 2;
}

.rotator-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dot indicators */
.rotator-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.rotator-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rotator-dots .dot.active {
    background: #1a5a9b;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
    .image-rotator {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .rotator-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .meet-seyi-images {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .image-rotator {
        max-width: 260px;
    }
    
    .meet-seyi-images {
        max-width: 260px;
    }
}




/* ============================================
   MOBILE LAYOUT SHIFTING FIXES
   ============================================ */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

img,
video,
iframe,
figure {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Fix for sections that might overflow */
section {
    overflow-x: hidden;
    width: 100%;
}

/* Fix for grids on mobile */
.card-grid,
.agenda-grid,
.join-grid,
.mission-grid,
.meet-seyi-grid,
.movement-grid,
.ribbon-grid,
.stats-grid,
.support-grid,
.alliance-highlights {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Fix for flex layouts on mobile */
.hero-actions,
.cta-group,
.hero-stats,
.feature-actions,
.going-forward-actions {
    flex-wrap: wrap;
}

/* ============================================
   MOBILE SPECIFIC OVERRIDES
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        overflow: hidden;
    }
    
    /* Fix for hero video content */
    .hero-video-content {
        padding: 1rem 0 5rem;
        overflow: hidden;
        width: 100%;
    }
    
    .hero-title {
        word-break: break-word;
    }
    
    /* Fix for buttons on mobile */
    .btn,
    .btn-gold,
    .btn-outline-light {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
    
    /* Fix for cards on mobile */
    .mission-card,
    .join-card,
    .support-card,
    .agenda-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Fix for images on mobile */
    .image-rotator {
        max-width: 100%;
        overflow: hidden;
    }
    
    .movement-flag-full img {
        width: calc(100% - 16px);
        margin: 0 auto;
        display: block;
    }
    
    /* Ensure no horizontal scroll */
    .movement-section {
        overflow: hidden;
    }
    
    .meet-seyi-images {
        max-width: 280px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    /* Fix for rotator on mobile */
    .rotator-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Fix for heading backgrounds */
    .meet-seyi-heading,
    .agenda-heading,
    .movement-heading {
        overflow: hidden;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .meet-seyi-heading h2,
    .agenda-heading h2,
    .movement-heading h2 {
        font-size: 1.6rem !important;
    }
    
    .meet-seyi-content h3 {
        font-size: 1.2rem !important;
    }
    
    .meet-seyi-content p {
        font-size: 0.85rem !important;
    }
    
    .movement-content-wrapper h3 {
        font-size: 1.2rem !important;
    }
    
    .movement-content-wrapper p {
        font-size: 0.85rem !important;
    }
    
    .alliance-highlights {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .alliance-item {
        padding: 0.6rem !important;
    }
    
    .alliance-item .item-icon {
        font-size: 1.2rem !important;
    }
    
    .alliance-item .item-label {
        font-size: 0.6rem !important;
    }
    
    .movement-flag {
        width: calc(100% - 16px) !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .movement-flag-full img {
        width: calc(100% - 16px) !important;
    }
    
    .flag-caption {
        font-size: 0.6rem !important;
    }
}

/* ============================================
   FIX FOR IMAGE ROTATOR ON MOBILE
   ============================================ */

@media (max-width: 768px) {
    .rotator-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .rotator-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .rotator-dots .dot.active {
        transform: scale(1.3);
    }
}






/* ============================================
   HERO NAME BLOCK - WITH TAGLINE
   ============================================ */

.hero-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hero-kicker {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a9eff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(74, 158, 255, 0.4), 0 0 40px rgba(74, 158, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    margin-bottom: 0.25rem;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: #f5a623;
    letter-spacing: 2px;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 992px) {
    .hero-kicker {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title-block {
        align-items: center;
    }
    
    .hero-kicker {
        font-size: 1rem;
        padding: 0.25rem 0.8rem;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-kicker {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
}






/* ============================================
   NEWSLETTER TAGLINE - NWETE OZI OGA NIRU NIGERIA
   ============================================ */

.newsletter-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.newsletter-title-block h2 {
    margin-bottom: 0.1rem;
}

.newsletter-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #f5a623;
    letter-spacing: 1px;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(245, 166, 35, 0.15);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .newsletter-title-block {
        align-items: center;
        text-align: center;
    }
    
    .newsletter-title-block h2 {
        text-align: center;
    }
    
    .newsletter-tagline {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .newsletter-tagline {
        font-size: 0.8rem;
    }
}





/* ============================================
   DONATION TAGLINE - KWADO OGANIRU NIGERIA
   ============================================ */

.donation-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.donation-title-block h2 {
    color: #ffffff;
    margin-bottom: 0.1rem;
}

.donation-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #f5a623;
    letter-spacing: 1px;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .donation-title-block {
        align-items: center;
        text-align: center;
    }
    
    .donation-title-block h2 {
        text-align: center;
    }
    
    .donation-tagline {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .donation-tagline {
        font-size: 0.8rem;
    }
}




/* ============================================
   ACHIEVEMENT CARD TAG
   ============================================ */

.achievement-tag {
    display: inline-block;
    background: #f5a623;
    color: #1a1a2e;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.75rem;
}

/* Achievement grid - 3 columns */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}